diff --git a/src/components/annotations/draw.js b/src/components/annotations/draw.js index 894a810c805..77c4e6ce861 100644 --- a/src/components/annotations/draw.js +++ b/src/components/annotations/draw.js @@ -198,7 +198,10 @@ function drawRaw(gd, options, index, subplotId, xa, ya) { fontColor: hoverFont.color, fontWeight: hoverFont.weight, fontStyle: hoverFont.style, - fontVariant: hoverFont.variant + fontVariant: hoverFont.variant, + fontShadow: hoverFont.fontShadow, + fontLineposition: hoverFont.fontLineposition, + fontTextcase: hoverFont.fontTextcase, }, { container: fullLayout._hoverlayer.node(), outerContainer: fullLayout._paper.node(), diff --git a/src/components/colorbar/defaults.js b/src/components/colorbar/defaults.js index 3f6a28b627f..6e8113421b6 100644 --- a/src/components/colorbar/defaults.js +++ b/src/components/colorbar/defaults.js @@ -124,11 +124,9 @@ module.exports = function colorbarDefaults(containerIn, containerOut, layout) { coerce('title.text', layout._dfltTitle.colorbar); var tickFont = colorbarOut.showticklabels ? colorbarOut.tickfont : font; - var dfltTitleFont = Lib.extendFlat({}, tickFont, { - weight: font.weight, - style: font.style, - variant: font.variant, - color: font.color, + + var dfltTitleFont = Lib.extendFlat({}, font, { + family: tickFont.family, size: Lib.bigFont(tickFont.size) }); Lib.coerceFont(coerce, 'title.font', dfltTitleFont); diff --git a/src/components/drawing/index.js b/src/components/drawing/index.js index 2c4ad4f0ddd..5fa39480d6e 100644 --- a/src/components/drawing/index.js +++ b/src/components/drawing/index.js @@ -34,6 +34,9 @@ drawing.font = function(s, font) { var color = font.color; var size = font.size; var family = font.family; + var shadow = font.shadow; + var lineposition = font.lineposition; + var textcase = font.textcase; if(family) s.style('font-family', family); if(size + 1) s.style('font-size', size + 'px'); @@ -42,8 +45,38 @@ drawing.font = function(s, font) { if(weight) s.style('font-weight', weight); if(style) s.style('font-style', style); if(variant) s.style('font-variant', variant); + + if(textcase) s.style('text-transform', dropNone(textcase2transform(textcase))); + if(shadow) s.style('text-shadow', shadow === 'auto' ? svgTextUtils.makeTextShadow(Color.contrast(color)) : dropNone(shadow)); + if(lineposition) s.style('text-decoration-line', dropNone(lineposition2decorationLine(lineposition))); +}; + +function dropNone(a) { + return a === 'none' ? undefined : a; +} + +var textcase2transformOptions = { + normal: 'none', + lower: 'lowercase', + upper: 'uppercase', + 'word caps': 'capitalize' }; +function textcase2transform(textcase) { + return textcase2transformOptions[textcase]; +} + +function lineposition2decorationLine(lineposition) { + return ( + lineposition + .replace('under', 'underline') + .replace('over', 'overline') + .replace('through', 'line-through') + .split('+') + .join(' ') + ); +} + /* * Positioning helpers * Note: do not use `setPosition` with nodes modified by @@ -1136,6 +1169,9 @@ drawing.textPointStyle = function(s, trace, gd) { weight: d.tw || trace.textfont.weight, style: d.ty || trace.textfont.style, variant: d.tv || trace.textfont.variant, + textcase: d.tC || trace.textfont.textcase, + lineposition: d.tE || trace.textfont.lineposition, + shadow: d.tS || trace.textfont.shadow, size: fontSize, color: fontColor }) diff --git a/src/components/fx/hover.js b/src/components/fx/hover.js index 8b65cc1f8e3..6a772089a30 100644 --- a/src/components/fx/hover.js +++ b/src/components/fx/hover.js @@ -961,6 +961,9 @@ function createHoverText(hoverData, opts) { var fontWeight = opts.fontWeight || fullLayout.font.weight; var fontStyle = opts.fontStyle || fullLayout.font.style; var fontVariant = opts.fontVariant || fullLayout.font.variant; + var fontTextcase = opts.fontTextcase || fullLayout.font.textcase; + var fontLineposition = opts.fontLineposition || fullLayout.font.lineposition; + var fontShadow = opts.fontShadow || fullLayout.font.shadow; var c0 = hoverData[0]; var xa = c0.xa; @@ -1041,13 +1044,17 @@ function createHoverText(hoverData, opts) { var commonBgColor = commonLabelOpts.bgcolor || Color.defaultLine; var commonStroke = commonLabelOpts.bordercolor || Color.contrast(commonBgColor); var contrastColor = Color.contrast(commonBgColor); + var commonLabelOptsFont = commonLabelOpts.font; var commonLabelFont = { - weight: commonLabelOpts.font.weight || fontWeight, - style: commonLabelOpts.font.style || fontStyle, - variant: commonLabelOpts.font.variant || fontVariant, - family: commonLabelOpts.font.family || fontFamily, - size: commonLabelOpts.font.size || fontSize, - color: commonLabelOpts.font.color || contrastColor + weight: commonLabelOptsFont.weight || fontWeight, + style: commonLabelOptsFont.style || fontStyle, + variant: commonLabelOptsFont.variant || fontVariant, + textcase: commonLabelOptsFont.textcase || fontTextcase, + lineposition: commonLabelOptsFont.lineposition || fontLineposition, + shadow: commonLabelOptsFont.shadow || fontShadow, + family: commonLabelOptsFont.family || fontFamily, + size: commonLabelOptsFont.size || fontSize, + color: commonLabelOptsFont.color || contrastColor }; lpath.style({ @@ -1370,6 +1377,9 @@ function createHoverText(hoverData, opts) { weight: fontWeight, style: fontStyle, variant: fontVariant, + textcase: fontTextcase, + lineposition: fontLineposition, + shadow: fontShadow, family: fontFamily, size: fontSize }); @@ -1413,7 +1423,10 @@ function createHoverText(hoverData, opts) { color: d.fontColor || contrastColor, weight: d.fontWeight || fontWeight, style: d.fontStyle || fontStyle, - variant: d.fontVariant || fontVariant + variant: d.fontVariant || fontVariant, + textcase: d.fontTextcase || fontTextcase, + lineposition: d.fontLineposition || fontLineposition, + shadow: d.fontShadow || fontShadow, }) .text(text) .attr('data-notex', 1) @@ -1432,7 +1445,10 @@ function createHoverText(hoverData, opts) { color: nameColor, weight: d.fontWeight || fontWeight, style: d.fontStyle || fontStyle, - variant: d.fontVariant || fontVariant + variant: d.fontVariant || fontVariant, + textcase: d.fontTextcase || fontTextcase, + lineposition: d.fontLineposition || fontLineposition, + shadow: d.fontShadow || fontShadow, }).text(name) .attr('data-notex', 1) .call(svgTextUtils.positionText, 0, 0) diff --git a/src/components/legend/defaults.js b/src/components/legend/defaults.js index 2ae9349c397..aad87454867 100644 --- a/src/components/legend/defaults.js +++ b/src/components/legend/defaults.js @@ -33,9 +33,9 @@ function groupDefaults(legendId, layoutIn, layoutOut, fullData) { }; var globalFont = layoutOut.font || {}; - var grouptitlefont = Lib.coerceFont(coerce, 'grouptitlefont', Lib.extendFlat({}, globalFont, { + var grouptitlefont = Lib.coerceFont(coerce, 'grouptitlefont', globalFont, { overrideDflt: { size: Math.round(globalFont.size * 1.1) - })); + }}); var legendTraceCount = 0; var legendReallyHasATrace = false; diff --git a/src/components/legend/style.js b/src/components/legend/style.js index 9d47eeeb0c2..d821493a5a8 100644 --- a/src/components/legend/style.js +++ b/src/components/legend/style.js @@ -247,6 +247,9 @@ module.exports = function style(s, gd, legend) { dEdit.tw = boundVal('textfont.weight', pickFirst); dEdit.ty = boundVal('textfont.style', pickFirst); dEdit.tv = boundVal('textfont.variant', pickFirst); + dEdit.tC = boundVal('textfont.textcase', pickFirst); + dEdit.tE = boundVal('textfont.lineposition', pickFirst); + dEdit.tS = boundVal('textfont.shadow', pickFirst); } dMod = [Lib.minExtend(d0, dEdit)]; diff --git a/src/components/titles/index.js b/src/components/titles/index.js index 679b93c29d1..704dec9ee43 100644 --- a/src/components/titles/index.js +++ b/src/components/titles/index.js @@ -71,6 +71,9 @@ function draw(gd, titleClass, options) { var fontWeight = font.weight; var fontStyle = font.style; var fontVariant = font.variant; + var fontTextcase = font.textcase; + var fontLineposition = font.lineposition; + var fontShadow = font.shadow; // only make this title editable if we positively identify its property // as one that has editing enabled. @@ -144,14 +147,17 @@ function draw(gd, titleClass, options) { titleEl.attr('transform', transformVal); - titleEl.style({ - 'font-family': fontFamily, - 'font-size': d3.round(fontSize, 2) + 'px', - fill: Color.rgb(fontColor), - opacity: opacity * Color.opacity(fontColor), - 'font-weight': fontWeight, - 'font-style': fontStyle, - 'font-variant': fontVariant + titleEl.style('opacity', opacity * Color.opacity(fontColor)) + .call(Drawing.font, { + color: Color.rgb(fontColor), + size: d3.round(fontSize, 2), + family: fontFamily, + weight: fontWeight, + style: fontStyle, + variant: fontVariant, + textcase: fontTextcase, + shadow: fontShadow, + lineposition: fontLineposition, }) .attr(attributes) .call(svgTextUtils.convertToTspans, gd); diff --git a/src/lib/coerce.js b/src/lib/coerce.js index 33b73b5143e..7e879b59992 100644 --- a/src/lib/coerce.js +++ b/src/lib/coerce.js @@ -3,6 +3,8 @@ var isNumeric = require('fast-isnumeric'); var tinycolor = require('tinycolor2'); +var extendFlat = require('./extend').extendFlat; + var baseTraceAttrs = require('../plots/attributes'); var colorscales = require('../components/colorscale/scales'); var Color = require('../components/color'); @@ -470,18 +472,27 @@ exports.coerce2 = function(containerIn, containerOut, attributes, attribute, dfl */ exports.coerceFont = function(coerce, attr, dfltObj, opts) { if(!opts) opts = {}; + dfltObj = extendFlat({}, dfltObj); + dfltObj = extendFlat(dfltObj, opts.overrideDflt || {}); - var out = {}; - - dfltObj = dfltObj || {}; - - out.family = coerce(attr + '.family', dfltObj.family); - out.size = coerce(attr + '.size', dfltObj.size); - out.color = coerce(attr + '.color', dfltObj.color); + var out = { + family: coerce(attr + '.family', dfltObj.family), + size: coerce(attr + '.size', dfltObj.size), + color: coerce(attr + '.color', dfltObj.color), + weight: coerce(attr + '.weight', dfltObj.weight), + style: coerce(attr + '.style', dfltObj.style), + }; - out.weight = coerce(attr + '.weight', dfltObj.weight); - out.style = coerce(attr + '.style', dfltObj.style); if(!opts.noFontVariant) out.variant = coerce(attr + '.variant', dfltObj.variant); + if(!opts.noFontLineposition) out.lineposition = coerce(attr + '.lineposition', dfltObj.lineposition); + if(!opts.noFontTextcase) out.textcase = coerce(attr + '.textcase', dfltObj.textcase); + if(!opts.noFontShadow) { + var dfltShadow = dfltObj.shadow; + if(dfltShadow === 'none' && opts.autoShadowDflt) { + dfltShadow = 'auto'; + } + out.shadow = coerce(attr + '.shadow', dfltShadow); + } return out; }; diff --git a/src/plots/cartesian/axes.js b/src/plots/cartesian/axes.js index bd15a34de0a..c6d2c478ac8 100644 --- a/src/plots/cartesian/axes.js +++ b/src/plots/cartesian/axes.js @@ -1740,6 +1740,9 @@ function tickTextObj(ax, x, text) { fontWeight: tf.weight, fontStyle: tf.style, fontVariant: tf.variant, + fontTextcase: tf.textcase, + fontLineposition: tf.lineposition, + fontShadow: tf.shadow, fontColor: tf.color }; } @@ -3507,7 +3510,10 @@ axes.drawLabels = function(gd, ax, opts) { color: d.fontColor, weight: d.fontWeight, style: d.fontStyle, - variant: d.fontVariant + variant: d.fontVariant, + textcase: d.fontTextcase, + lineposition: d.fontLineposition, + shadow: d.fontShadow, }) .text(d.text) .call(svgTextUtils.convertToTspans, gd); diff --git a/src/plots/cartesian/axis_defaults.js b/src/plots/cartesian/axis_defaults.js index 8add81e94f2..0b03fecf376 100644 --- a/src/plots/cartesian/axis_defaults.js +++ b/src/plots/cartesian/axis_defaults.js @@ -111,14 +111,10 @@ module.exports = function handleAxisDefaults(containerIn, containerOut, coerce, if(!visible) return containerOut; coerce('title.text', dfltTitle); - Lib.coerceFont(coerce, 'title.font', { - family: font.family, - weight: font.weight, - style: font.style, - variant: font.variant, + Lib.coerceFont(coerce, 'title.font', font, { overrideDflt: { size: Lib.bigFont(font.size), color: dfltFontColor - }); + }}); // major ticks handleTickValueDefaults(containerIn, containerOut, coerce, axType); diff --git a/src/plots/cartesian/tick_label_defaults.js b/src/plots/cartesian/tick_label_defaults.js index 028f5fad7e8..887daf220b2 100644 --- a/src/plots/cartesian/tick_label_defaults.js +++ b/src/plots/cartesian/tick_label_defaults.js @@ -26,14 +26,9 @@ module.exports = function handleTickLabelDefaults(containerIn, containerOut, coe (contColor && contColor !== layoutAttributes.color.dflt) ? contColor : font.color; - Lib.coerceFont(coerce, 'tickfont', { - family: font.family, - weight: font.weight, - style: font.style, - variant: font.variant, - size: font.size, + Lib.coerceFont(coerce, 'tickfont', font, { overrideDflt: { color: dfltFontColor - }); + }}); if( !options.noTicklabelstep && diff --git a/src/plots/font_attributes.js b/src/plots/font_attributes.js index b2426408942..083af5d23d2 100644 --- a/src/plots/font_attributes.js +++ b/src/plots/font_attributes.js @@ -99,6 +99,42 @@ module.exports = function(opts) { ].join(' ') }, + textcase: opts.noFontTextcase ? undefined : { + editType: editType, + valType: 'enumerated', + values: ['normal', 'word caps', 'upper', 'lower'], + dflt: 'normal', + description: [ + 'Sets capitalization of text.', + 'It can be used to make text appear in all-uppercase or all-lowercase,', + 'or with each word capitalized.' + ].join(' ') + }, + + lineposition: opts.noFontLineposition ? undefined : { + editType: editType, + valType: 'flaglist', + flags: ['under', 'over', 'through'], + extras: ['none'], + dflt: 'none', + description: [ + 'Sets the kind of decoration line(s) with text,', + 'such as an *under*, *over* or *through*', + 'as well as combinations e.g. *under+over*, etc.' + ].join(' ') + }, + + shadow: opts.noFontShadow ? undefined : { + editType: editType, + valType: 'string', + dflt: opts.autoShadowDflt ? 'auto' : 'none', + description: [ + 'Sets the shape and color of the shadow behind text.', + '*auto* places minimal shadow and applies contrast text font color.', + 'See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.' + ].join(' ') + }, + editType: editType, // blank strings so compress_attributes can remove // TODO - that's uber hacky... better solution? @@ -112,7 +148,18 @@ module.exports = function(opts) { attrs.family.arrayOk = true; attrs.weight.arrayOk = true; attrs.style.arrayOk = true; - attrs.variant.arrayOk = true; + if(!opts.noFontVariant) { + attrs.variant.arrayOk = true; + } + if(!opts.noFontTextcase) { + attrs.textcase.arrayOk = true; + } + if(!opts.noFontLineposition) { + attrs.lineposition.arrayOk = true; + } + if(!opts.noFontShadow) { + attrs.shadow.arrayOk = true; + } attrs.size.arrayOk = true; attrs.color.arrayOk = true; } diff --git a/src/plots/mapbox/layout_attributes.js b/src/plots/mapbox/layout_attributes.js index 490003fe51b..4e829ffd077 100644 --- a/src/plots/mapbox/layout_attributes.js +++ b/src/plots/mapbox/layout_attributes.js @@ -12,6 +12,9 @@ var constants = require('./constants'); var fontAttr = fontAttrs({ noFontVariant: true, + noFontShadow: true, + noFontLineposition: true, + noFontTextcase: true, description: [ 'Sets the icon text font (color=mapbox.layer.paint.text-color, size=mapbox.layer.layout.text-size).', 'Has an effect only when `type` is set to *symbol*.' diff --git a/src/plots/mapbox/layout_defaults.js b/src/plots/mapbox/layout_defaults.js index f1a78b3ac54..8fe4891a4f4 100644 --- a/src/plots/mapbox/layout_defaults.js +++ b/src/plots/mapbox/layout_defaults.js @@ -104,7 +104,10 @@ function handleLayerDefaults(layerIn, layerOut) { coerce('symbol.text'); Lib.coerceFont(coerce, 'symbol.textfont', undefined, { - noFontVariant: true + noFontVariant: true, + noFontShadow: true, + noFontLineposition: true, + noFontTextcase: true, }); coerce('symbol.textposition'); coerce('symbol.placement'); diff --git a/src/plots/plots.js b/src/plots/plots.js index 188d13f51bd..e75d2066d83 100644 --- a/src/plots/plots.js +++ b/src/plots/plots.js @@ -1476,9 +1476,9 @@ plots.supplyLayoutGlobalDefaults = function(layoutIn, layoutOut, formatObj) { var font = Lib.coerceFont(coerce, 'font'); var fontSize = font.size; - Lib.coerceFont(coerce, 'title.font', Lib.extendFlat({}, font, { + Lib.coerceFont(coerce, 'title.font', font, { overrideDflt: { size: Math.round(fontSize * 1.4) - })); + }}); coerce('title.text', layoutOut._dfltTitle.plot); coerce('title.xref'); diff --git a/src/plots/polar/layout_defaults.js b/src/plots/polar/layout_defaults.js index f550ccad3b5..4585f355889 100644 --- a/src/plots/polar/layout_defaults.js +++ b/src/plots/polar/layout_defaults.js @@ -157,6 +157,9 @@ function handleDefaults(contIn, contOut, coerce, opts) { var dfltFontWeight; var dfltFontStyle; var dfltFontVariant; + var dfltFontTextcase; + var dfltFontLineposition; + var dfltFontShadow; var font = opts.font || {}; dfltColor = coerceAxis('color'); @@ -166,6 +169,9 @@ function handleDefaults(contIn, contOut, coerce, opts) { dfltFontWeight = font.weight; dfltFontStyle = font.style; dfltFontVariant = font.variant; + dfltFontTextcase = font.textcase; + dfltFontLineposition = font.lineposition; + dfltFontShadow = font.shadow; handleTickValueDefaults(axIn, axOut, coerceAxis, axOut.type); handleTickLabelDefaults(axIn, axOut, coerceAxis, axOut.type, { @@ -173,6 +179,9 @@ function handleDefaults(contIn, contOut, coerce, opts) { weight: dfltFontWeight, style: dfltFontStyle, variant: dfltFontVariant, + textcase: dfltFontTextcase, + lineposition: dfltFontLineposition, + shadow: dfltFontShadow, color: dfltFontColor, size: dfltFontSize, family: dfltFontFamily @@ -205,6 +214,9 @@ function handleDefaults(contIn, contOut, coerce, opts) { weight: dfltFontWeight, style: dfltFontStyle, variant: dfltFontVariant, + textcase: dfltFontTextcase, + lineposition: dfltFontLineposition, + shadow: dfltFontShadow, color: dfltFontColor, size: Lib.bigFont(dfltFontSize), family: dfltFontFamily diff --git a/src/plots/ternary/layout_defaults.js b/src/plots/ternary/layout_defaults.js index 07614199634..4a59fc0d43b 100644 --- a/src/plots/ternary/layout_defaults.js +++ b/src/plots/ternary/layout_defaults.js @@ -81,14 +81,10 @@ function handleAxisDefaults(containerIn, containerOut, options, ternaryLayoutOut var title = coerce('title.text', dfltTitle); containerOut._hovertitle = title === dfltTitle ? title : letterUpper; - Lib.coerceFont(coerce, 'title.font', { - weight: options.font.weight, - style: options.font.style, - variant: options.font.variant, - family: options.font.family, + Lib.coerceFont(coerce, 'title.font', options.font, { overrideDflt: { size: Lib.bigFont(options.font.size), color: dfltFontColor - }); + }}); // range is just set by 'min' - max is determined by the other axes mins coerce('min'); @@ -101,14 +97,9 @@ function handleAxisDefaults(containerIn, containerOut, options, ternaryLayoutOut var showTickLabels = coerce('showticklabels'); if(showTickLabels) { - Lib.coerceFont(coerce, 'tickfont', { - weight: options.font.weight, - style: options.font.style, - variant: options.font.variant, - family: options.font.family, - size: options.font.size, + Lib.coerceFont(coerce, 'tickfont', options.font, { overrideDflt: { color: dfltFontColor - }); + }}); coerce('tickangle'); coerce('tickformat'); } diff --git a/src/traces/bar/style.js b/src/traces/bar/style.js index 6f496cb6099..95f7b2e1796 100644 --- a/src/traces/bar/style.js +++ b/src/traces/bar/style.js @@ -126,7 +126,10 @@ function getInsideTextFont(trace, index, layoutFont, barColor) { size: defaultFont.size, weight: defaultFont.weight, style: defaultFont.style, - variant: defaultFont.variant + variant: defaultFont.variant, + textcase: defaultFont.textcase, + lineposition: defaultFont.lineposition, + shadow: defaultFont.shadow, }; } @@ -149,6 +152,9 @@ function getFontValue(attributeDefinition, attributeValue, index, defaultValue) var weightValue = helpers.getValue(attributeValue.weight, index); var styleValue = helpers.getValue(attributeValue.style, index); var variantValue = helpers.getValue(attributeValue.variant, index); + var textcaseValue = helpers.getValue(attributeValue.textcase, index); + var linepositionValue = helpers.getValue(attributeValue.lineposition, index); + var shadowValue = helpers.getValue(attributeValue.shadow, index); return { family: helpers.coerceString( @@ -162,7 +168,13 @@ function getFontValue(attributeDefinition, attributeValue, index, defaultValue) style: helpers.coerceString( attributeDefinition.style, styleValue, defaultValue.style), variant: helpers.coerceString( - attributeDefinition.variant, variantValue, defaultValue.variant) + attributeDefinition.variant, variantValue, defaultValue.variant), + textcase: helpers.coerceString( + attributeDefinition.variant, textcaseValue, defaultValue.textcase), + lineposition: helpers.coerceString( + attributeDefinition.variant, linepositionValue, defaultValue.lineposition), + shadow: helpers.coerceString( + attributeDefinition.variant, shadowValue, defaultValue.shadow), }; } diff --git a/src/traces/carpet/axis_defaults.js b/src/traces/carpet/axis_defaults.js index 3fd71b59001..1b45c87f6e5 100644 --- a/src/traces/carpet/axis_defaults.js +++ b/src/traces/carpet/axis_defaults.js @@ -109,14 +109,10 @@ module.exports = function handleAxisDefaults(containerIn, containerOut, options) var title = coerce('title.text'); if(title) { - Lib.coerceFont(coerce, 'title.font', { - weight: font.weight, - style: font.style, - variant: font.variant, - family: font.family, + Lib.coerceFont(coerce, 'title.font', font, { overrideDflt: { size: Lib.bigFont(font.size), color: dfltFontColor - }); + }}); coerce('title.offset'); } diff --git a/src/traces/contour/label_defaults.js b/src/traces/contour/label_defaults.js index 948ec08a422..5f5d2eae3e8 100644 --- a/src/traces/contour/label_defaults.js +++ b/src/traces/contour/label_defaults.js @@ -7,14 +7,9 @@ module.exports = function handleLabelDefaults(coerce, layout, lineColor, opts) { var showLabels = coerce('contours.showlabels'); if(showLabels) { var globalFont = layout.font; - Lib.coerceFont(coerce, 'contours.labelfont', { - weight: globalFont.weight, - style: globalFont.style, - variant: globalFont.variant, - family: globalFont.family, - size: globalFont.size, + Lib.coerceFont(coerce, 'contours.labelfont', globalFont, { overrideDflt: { color: lineColor - }); + }}); coerce('contours.labelformat'); } diff --git a/src/traces/contour/style.js b/src/traces/contour/style.js index 0d8143b91f4..4dd7033143b 100644 --- a/src/traces/contour/style.js +++ b/src/traces/contour/style.js @@ -44,6 +44,9 @@ module.exports = function style(gd) { weight: labelFont.weight, style: labelFont.style, variant: labelFont.variant, + textcase: labelFont.textcase, + lineposition: labelFont.lineposition, + shadow: labelFont.shadow, family: labelFont.family, size: labelFont.size, color: labelFont.color || (colorLines ? colorMap(d.level) : line.color) diff --git a/src/traces/heatmap/plot.js b/src/traces/heatmap/plot.js index 85051147d8b..2db0d0eb3b2 100644 --- a/src/traces/heatmap/plot.js +++ b/src/traces/heatmap/plot.js @@ -551,6 +551,9 @@ module.exports = function(gd, plotinfo, cdheatmaps, heatmapLayer) { weight: font.weight, style: font.style, variant: font.variant, + textcase: font.textcase, + lineposition: font.lineposition, + shadow: font.shadow, }) .text(d.t) .call(svgTextUtils.convertToTspans, gd); diff --git a/src/traces/parcats/attributes.js b/src/traces/parcats/attributes.js index f04f0c73921..4176494a924 100644 --- a/src/traces/parcats/attributes.js +++ b/src/traces/parcats/attributes.js @@ -105,6 +105,7 @@ module.exports = { }), tickfont: fontAttrs({ + autoShadowDflt: true, editType: 'calc', description: 'Sets the font for the `category` labels.' }), diff --git a/src/traces/parcats/defaults.js b/src/traces/parcats/defaults.js index a7be118651b..cd724d0a9ac 100644 --- a/src/traces/parcats/defaults.js +++ b/src/traces/parcats/defaults.js @@ -95,25 +95,18 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout coerce('sortpaths'); coerce('counts'); - var labelfontDflt = { - weight: layout.font.weight, - style: layout.font.style, - variant: layout.font.variant, - family: layout.font.family, - size: Math.round(layout.font.size), - color: layout.font.color - }; - - Lib.coerceFont(coerce, 'labelfont', labelfontDflt); - - var categoryfontDefault = { - weight: layout.font.weight, - style: layout.font.style, - variant: layout.font.variant, - family: layout.font.family, - size: Math.round(layout.font.size / 1.2), - color: layout.font.color - }; - - Lib.coerceFont(coerce, 'tickfont', categoryfontDefault); + var layoutFont = layout.font; + + Lib.coerceFont(coerce, 'labelfont', layoutFont, { + overrideDflt: { + size: Math.round(layoutFont.size) + } + }); + + Lib.coerceFont(coerce, 'tickfont', layoutFont, { + autoShadowDflt: true, + overrideDflt: { + size: Math.round(layoutFont.size / 1.2) + } + }); }; diff --git a/src/traces/parcats/parcats.js b/src/traces/parcats/parcats.js index 965cd93e3d6..39f75d3b674 100644 --- a/src/traces/parcats/parcats.js +++ b/src/traces/parcats/parcats.js @@ -225,8 +225,6 @@ function performPlot(parcatsModels, graphDiv, layout, svg) { .attr('class', 'catlabel') .attr('pointer-events', 'none'); - var paperColor = graphDiv._fullLayout.paper_bgcolor; - // Update category label categorySelection.select('text.catlabel') .attr('text-anchor', @@ -240,8 +238,6 @@ function performPlot(parcatsModels, graphDiv, layout, svg) { } }) .attr('alignment-baseline', 'middle') - - .style('text-shadow', svgTextUtils.makeTextShadow(paperColor)) .style('fill', 'rgb(0, 0, 0)') .attr('x', function(d) { diff --git a/src/traces/parcoords/attributes.js b/src/traces/parcoords/attributes.js index e858085dc8c..b03f95ee617 100644 --- a/src/traces/parcoords/attributes.js +++ b/src/traces/parcoords/attributes.js @@ -42,6 +42,7 @@ module.exports = { description: 'Sets the font for the `dimension` labels.' }), tickfont: fontAttrs({ + autoShadowDflt: true, editType: 'plot', description: 'Sets the font for the `dimension` tick values.' }), diff --git a/src/traces/parcoords/defaults.js b/src/traces/parcoords/defaults.js index d84eeba30dd..8005f76c9f2 100644 --- a/src/traces/parcoords/defaults.js +++ b/src/traces/parcoords/defaults.js @@ -95,17 +95,12 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout // make default font size 10px (default is 12), // scale linearly with global font size - var fontDflt = { - weight: layout.font.weight, - style: layout.font.style, - variant: layout.font.variant, - family: layout.font.family, - size: Math.round(layout.font.size / 1.2), - color: layout.font.color - }; + var fontDflt = Lib.extendFlat({}, layout.font, { + size: Math.round(layout.font.size / 1.2) + }); Lib.coerceFont(coerce, 'labelfont', fontDflt); - Lib.coerceFont(coerce, 'tickfont', fontDflt); + Lib.coerceFont(coerce, 'tickfont', fontDflt, { autoShadowDflt: true }); Lib.coerceFont(coerce, 'rangefont', fontDflt); coerce('labelangle'); diff --git a/src/traces/parcoords/parcoords.js b/src/traces/parcoords/parcoords.js index 6a2c72d5a67..53a92fd32f9 100644 --- a/src/traces/parcoords/parcoords.js +++ b/src/traces/parcoords/parcoords.js @@ -661,7 +661,6 @@ module.exports = function parcoords(gd, cdModule, layout, callbacks) { .attr('stroke-width', '1px'); axis.selectAll('text') - .style('text-shadow', svgTextUtils.makeTextShadow(paperColor)) .style('cursor', 'default'); var axisHeading = axisOverlays.selectAll('.' + c.cn.axisHeading) diff --git a/src/traces/pie/plot.js b/src/traces/pie/plot.js index 7080ed8d035..450b8c4a09f 100644 --- a/src/traces/pie/plot.js +++ b/src/traces/pie/plot.js @@ -515,13 +515,31 @@ function determineOutsideTextFont(trace, pt, layoutFont) { helpers.castOption(trace.textfont.variant, pt.pts) || layoutFont.variant; + var textcase = + helpers.castOption(trace.outsidetextfont.textcase, pt.pts) || + helpers.castOption(trace.textfont.textcase, pt.pts) || + layoutFont.textcase; + + var lineposition = + helpers.castOption(trace.outsidetextfont.lineposition, pt.pts) || + helpers.castOption(trace.textfont.lineposition, pt.pts) || + layoutFont.lineposition; + + var shadow = + helpers.castOption(trace.outsidetextfont.shadow, pt.pts) || + helpers.castOption(trace.textfont.shadow, pt.pts) || + layoutFont.shadow; + return { color: color, family: family, size: size, weight: weight, style: style, - variant: variant + variant: variant, + textcase: textcase, + lineposition: lineposition, + shadow: shadow, }; } @@ -560,13 +578,31 @@ function determineInsideTextFont(trace, pt, layoutFont) { helpers.castOption(trace.textfont.variant, pt.pts) || layoutFont.variant; + var textcase = + helpers.castOption(trace.insidetextfont.textcase, pt.pts) || + helpers.castOption(trace.textfont.textcase, pt.pts) || + layoutFont.textcase; + + var lineposition = + helpers.castOption(trace.insidetextfont.lineposition, pt.pts) || + helpers.castOption(trace.textfont.lineposition, pt.pts) || + layoutFont.lineposition; + + var shadow = + helpers.castOption(trace.insidetextfont.shadow, pt.pts) || + helpers.castOption(trace.textfont.shadow, pt.pts) || + layoutFont.shadow; + return { color: customColor || Color.contrast(pt.color), family: family, size: size, weight: weight, style: style, - variant: variant + variant: variant, + textcase: textcase, + lineposition: lineposition, + shadow: shadow, }; } diff --git a/src/traces/sankey/attributes.js b/src/traces/sankey/attributes.js index 3334a8a87d3..a681e2bf384 100644 --- a/src/traces/sankey/attributes.js +++ b/src/traces/sankey/attributes.js @@ -64,6 +64,7 @@ var attrs = module.exports = overrideAll({ }, textfont: fontAttrs({ + autoShadowDflt: true, description: 'Sets the font for node labels' }), diff --git a/src/traces/sankey/defaults.js b/src/traces/sankey/defaults.js index a403dbf762d..d9ca15fea65 100644 --- a/src/traces/sankey/defaults.js +++ b/src/traces/sankey/defaults.js @@ -106,7 +106,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout } coerce('arrangement', dfltArrangement); - Lib.coerceFont(coerce, 'textfont', Lib.extendFlat({}, layout.font)); + Lib.coerceFont(coerce, 'textfont', layout.font, { autoShadowDflt: true }); // disable 1D transforms - arrays here are 1D but their lengths/meanings // don't match, between nodes and links diff --git a/src/traces/sankey/plot.js b/src/traces/sankey/plot.js index 5c9a2b8e532..2ac7ec7206e 100644 --- a/src/traces/sankey/plot.js +++ b/src/traces/sankey/plot.js @@ -229,6 +229,9 @@ module.exports = function plot(gd, calcData) { fontWeight: castHoverOption(obj, 'font.weight'), fontStyle: castHoverOption(obj, 'font.style'), fontVariant: castHoverOption(obj, 'font.variant'), + fontTextcase: castHoverOption(obj, 'font.textcase'), + fontLineposition: castHoverOption(obj, 'font.lineposition'), + fontShadow: castHoverOption(obj, 'font.shadow'), nameLength: castHoverOption(obj, 'namelength'), textAlign: castHoverOption(obj, 'align'), idealAlign: d3.event.x < hoverCenter[0] ? 'right' : 'left', @@ -326,6 +329,9 @@ module.exports = function plot(gd, calcData) { fontWeight: castHoverOption(obj, 'font.weight'), fontStyle: castHoverOption(obj, 'font.style'), fontVariant: castHoverOption(obj, 'font.variant'), + fontTextcase: castHoverOption(obj, 'font.textcase'), + fontLineposition: castHoverOption(obj, 'font.lineposition'), + fontShadow: castHoverOption(obj, 'font.shadow'), nameLength: castHoverOption(obj, 'namelength'), textAlign: castHoverOption(obj, 'align'), idealAlign: 'left', diff --git a/src/traces/sankey/render.js b/src/traces/sankey/render.js index 2b0651f0e2f..adb0b100f26 100644 --- a/src/traces/sankey/render.js +++ b/src/traces/sankey/render.js @@ -1000,7 +1000,6 @@ module.exports = function(gd, svg, calcData, layout, callbacks) { Drawing.font(e, d.textFont); svgTextUtils.convertToTspans(e, gd); }) - .style('text-shadow', svgTextUtils.makeTextShadow(gd._fullLayout.paper_bgcolor)) .attr('text-anchor', function(d) { return (d.horizontal && d.left) ? 'end' : 'start'; }) diff --git a/src/traces/scatter/arrays_to_calcdata.js b/src/traces/scatter/arrays_to_calcdata.js index f352f4eacac..efa5332498c 100644 --- a/src/traces/scatter/arrays_to_calcdata.js +++ b/src/traces/scatter/arrays_to_calcdata.js @@ -20,6 +20,9 @@ module.exports = function arraysToCalcdata(cd, trace) { Lib.mergeArray(trace.textfont.weight, cd, 'tw'); Lib.mergeArray(trace.textfont.style, cd, 'ty'); Lib.mergeArray(trace.textfont.variant, cd, 'tv'); + Lib.mergeArray(trace.textfont.textcase, cd, 'tC'); + Lib.mergeArray(trace.textfont.lineposition, cd, 'tE'); + Lib.mergeArray(trace.textfont.shadow, cd, 'tS'); } var marker = trace.marker; diff --git a/src/traces/scatter3d/attributes.js b/src/traces/scatter3d/attributes.js index 5313c6c372b..ccb56b8d348 100644 --- a/src/traces/scatter3d/attributes.js +++ b/src/traces/scatter3d/attributes.js @@ -157,6 +157,9 @@ var attrs = module.exports = overrideAll({ textposition: extendFlat({}, scatterAttrs.textposition, {dflt: 'top center'}), textfont: fontAttrs({ + noFontShadow: true, + noFontLineposition: true, + noFontTextcase: true, editType: 'calc', colorEditType: 'style', arrayOk: true, diff --git a/src/traces/scatter3d/defaults.js b/src/traces/scatter3d/defaults.js index 06960264749..bcacbdabbc2 100644 --- a/src/traces/scatter3d/defaults.js +++ b/src/traces/scatter3d/defaults.js @@ -41,7 +41,12 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout if(subTypes.hasText(traceOut)) { coerce('texttemplate'); - handleTextDefaults(traceIn, traceOut, layout, coerce, {noSelect: true}); + handleTextDefaults(traceIn, traceOut, layout, coerce, { + noSelect: true, + noFontShadow: true, + noFontLineposition: true, + noFontTextcase: true, + }); } var lineColor = (traceOut.line || {}).color; diff --git a/src/traces/scattergl/attributes.js b/src/traces/scattergl/attributes.js index 44ae70cf7e0..39312dfbd40 100644 --- a/src/traces/scattergl/attributes.js +++ b/src/traces/scattergl/attributes.js @@ -38,6 +38,9 @@ var attrs = module.exports = overrideAll({ textposition: scatterAttrs.textposition, textfont: fontAttrs({ + noFontShadow: true, + noFontLineposition: true, + noFontTextcase: true, editType: 'calc', colorEditType: 'style', arrayOk: true, diff --git a/src/traces/scattergl/defaults.js b/src/traces/scattergl/defaults.js index b19c27bb117..bcb4e79edc0 100644 --- a/src/traces/scattergl/defaults.js +++ b/src/traces/scattergl/defaults.js @@ -52,7 +52,11 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout if(subTypes.hasText(traceOut)) { coerce('texttemplate'); - handleTextDefaults(traceIn, traceOut, layout, coerce); + handleTextDefaults(traceIn, traceOut, layout, coerce, { + noFontShadow: true, + noFontLineposition: true, + noFontTextcase: true, + }); } var lineColor = (traceOut.line || {}).color; diff --git a/src/traces/scattermapbox/defaults.js b/src/traces/scattermapbox/defaults.js index 4816dc65e91..2147f8ef0b6 100644 --- a/src/traces/scattermapbox/defaults.js +++ b/src/traces/scattermapbox/defaults.js @@ -73,6 +73,9 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout { noSelect: true, noFontVariant: true, + noFontShadow: true, + noFontLineposition: true, + noFontTextcase: true, font: { family: isSupportedFont(layoutFontFamily) ? layoutFontFamily : 'Open Sans Regular', weight: layout.font.weight, diff --git a/src/traces/scatterpolargl/defaults.js b/src/traces/scatterpolargl/defaults.js index d37497d2efa..b82262ebf40 100644 --- a/src/traces/scatterpolargl/defaults.js +++ b/src/traces/scatterpolargl/defaults.js @@ -40,7 +40,11 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout if(subTypes.hasText(traceOut)) { coerce('texttemplate'); - handleTextDefaults(traceIn, traceOut, layout, coerce); + handleTextDefaults(traceIn, traceOut, layout, coerce, { + noFontShadow: true, + noFontLineposition: true, + noFontTextcase: true, + }); } coerce('fill'); diff --git a/src/traces/sunburst/helpers.js b/src/traces/sunburst/helpers.js index 5389064dd23..25cd8f66765 100644 --- a/src/traces/sunburst/helpers.js +++ b/src/traces/sunburst/helpers.js @@ -74,7 +74,10 @@ function determineOutsideTextFont(trace, pt, layoutFont) { size: exports.getOutsideTextFontKey('size', trace, pt, layoutFont), weight: exports.getOutsideTextFontKey('weight', trace, pt, layoutFont), style: exports.getOutsideTextFontKey('style', trace, pt, layoutFont), - variant: exports.getOutsideTextFontKey('variant', trace, pt, layoutFont) + variant: exports.getOutsideTextFontKey('variant', trace, pt, layoutFont), + textcase: exports.getOutsideTextFontKey('textcase', trace, pt, layoutFont), + lineposition: exports.getOutsideTextFontKey('lineposition', trace, pt, layoutFont), + shadow: exports.getOutsideTextFontKey('shadow', trace, pt, layoutFont), }; } @@ -102,7 +105,10 @@ function determineInsideTextFont(trace, pt, layoutFont, opts) { size: exports.getInsideTextFontKey('size', trace, pt, layoutFont, opts), weight: exports.getInsideTextFontKey('weight', trace, pt, layoutFont, opts), style: exports.getInsideTextFontKey('style', trace, pt, layoutFont, opts), - variant: exports.getInsideTextFontKey('variant', trace, pt, layoutFont, opts) + variant: exports.getInsideTextFontKey('variant', trace, pt, layoutFont, opts), + textcase: exports.getInsideTextFontKey('textcase', trace, pt, layoutFont, opts), + lineposition: exports.getInsideTextFontKey('lineposition', trace, pt, layoutFont, opts), + shadow: exports.getInsideTextFontKey('shadow', trace, pt, layoutFont, opts), }; } diff --git a/src/traces/table/defaults.js b/src/traces/table/defaults.js index 06ff6cad3f5..45bfb8d74bb 100644 --- a/src/traces/table/defaults.js +++ b/src/traces/table/defaults.js @@ -35,7 +35,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout coerce('header.line.width'); coerce('header.line.color'); coerce('header.fill.color'); - Lib.coerceFont(coerce, 'header.font', Lib.extendFlat({}, layout.font)); + Lib.coerceFont(coerce, 'header.font', layout.font); defaultColumnOrder(traceOut, coerce); @@ -48,7 +48,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout coerce('cells.line.width'); coerce('cells.line.color'); coerce('cells.fill.color'); - Lib.coerceFont(coerce, 'cells.font', Lib.extendFlat({}, layout.font)); + Lib.coerceFont(coerce, 'cells.font', layout.font); // disable 1D transforms traceOut._length = null; diff --git a/src/traces/table/plot.js b/src/traces/table/plot.js index ceaf907e9eb..9d75c2c53bd 100644 --- a/src/traces/table/plot.js +++ b/src/traces/table/plot.js @@ -488,6 +488,9 @@ function supplyStylingValues(columnCell) { weight: gridPick(spec.weight, col, i), style: gridPick(spec.style, col, i), variant: gridPick(spec.variant, col, i), + textcase: gridPick(spec.textcase, col, i), + lineposition: gridPick(spec.lineposition, col, i), + shadow: gridPick(spec.shadow, col, i), }; d.rowNumber = d.key; d.align = gridPick(d.calcdata.cells.align, col, i); diff --git a/test/image/baselines/axes_custom-ticks_log-date.png b/test/image/baselines/axes_custom-ticks_log-date.png index 9121ca8ef46..8a2d896f3d8 100644 Binary files a/test/image/baselines/axes_custom-ticks_log-date.png and b/test/image/baselines/axes_custom-ticks_log-date.png differ diff --git a/test/image/baselines/axes_labels.png b/test/image/baselines/axes_labels.png index ec86c0b4c84..3560a104165 100644 Binary files a/test/image/baselines/axes_labels.png and b/test/image/baselines/axes_labels.png differ diff --git a/test/image/baselines/bar-colorscale-colorbar.png b/test/image/baselines/bar-colorscale-colorbar.png index f7df963ab0b..5fcac01a948 100644 Binary files a/test/image/baselines/bar-colorscale-colorbar.png and b/test/image/baselines/bar-colorscale-colorbar.png differ diff --git a/test/image/baselines/bar_annotation_max_range_eq_category.png b/test/image/baselines/bar_annotation_max_range_eq_category.png index acf3a86adb4..1344de0baab 100644 Binary files a/test/image/baselines/bar_annotation_max_range_eq_category.png and b/test/image/baselines/bar_annotation_max_range_eq_category.png differ diff --git a/test/image/baselines/bar_attrs_group_norm.png b/test/image/baselines/bar_attrs_group_norm.png index 6d9a69842a4..c6d9d8b6619 100644 Binary files a/test/image/baselines/bar_attrs_group_norm.png and b/test/image/baselines/bar_attrs_group_norm.png differ diff --git a/test/image/baselines/bar_gantt-chart.png b/test/image/baselines/bar_gantt-chart.png index fb7e3ab936f..fdc063c0b1c 100644 Binary files a/test/image/baselines/bar_gantt-chart.png and b/test/image/baselines/bar_gantt-chart.png differ diff --git a/test/image/baselines/benchmarks.png b/test/image/baselines/benchmarks.png index 44e2d9e869a..099fdee7e17 100644 Binary files a/test/image/baselines/benchmarks.png and b/test/image/baselines/benchmarks.png differ diff --git a/test/image/baselines/canada_geo_projections.png b/test/image/baselines/canada_geo_projections.png index 2840fc31594..4c73c096ce4 100644 Binary files a/test/image/baselines/canada_geo_projections.png and b/test/image/baselines/canada_geo_projections.png differ diff --git a/test/image/baselines/cliponaxis_false-dates-log.png b/test/image/baselines/cliponaxis_false-dates-log.png index bd6ab338358..caa198c39b3 100644 Binary files a/test/image/baselines/cliponaxis_false-dates-log.png and b/test/image/baselines/cliponaxis_false-dates-log.png differ diff --git a/test/image/baselines/container-legend.png b/test/image/baselines/container-legend.png index 2d73c25edc8..d5a802e32ea 100644 Binary files a/test/image/baselines/container-legend.png and b/test/image/baselines/container-legend.png differ diff --git a/test/image/baselines/contour_constraints_equal_boundary_minmax.png b/test/image/baselines/contour_constraints_equal_boundary_minmax.png index f78d9d74131..af572ed980f 100644 Binary files a/test/image/baselines/contour_constraints_equal_boundary_minmax.png and b/test/image/baselines/contour_constraints_equal_boundary_minmax.png differ diff --git a/test/image/baselines/font-variant-bar.png b/test/image/baselines/font-variant-bar.png index d179884ac9c..017fb89e8c8 100644 Binary files a/test/image/baselines/font-variant-bar.png and b/test/image/baselines/font-variant-bar.png differ diff --git a/test/image/baselines/funnel_axis_textangle_outside.png b/test/image/baselines/funnel_axis_textangle_outside.png index 1d4c0362d47..07b78b52b79 100644 Binary files a/test/image/baselines/funnel_axis_textangle_outside.png and b/test/image/baselines/funnel_axis_textangle_outside.png differ diff --git a/test/image/baselines/funnel_horizontal_group_basic.png b/test/image/baselines/funnel_horizontal_group_basic.png index d0ac640d616..4e1376720bc 100644 Binary files a/test/image/baselines/funnel_horizontal_group_basic.png and b/test/image/baselines/funnel_horizontal_group_basic.png differ diff --git a/test/image/baselines/geo_africa-insets.png b/test/image/baselines/geo_africa-insets.png index a2cbb898f9c..ccccecfdc1f 100644 Binary files a/test/image/baselines/geo_africa-insets.png and b/test/image/baselines/geo_africa-insets.png differ diff --git a/test/image/baselines/geo_canadian-cities.png b/test/image/baselines/geo_canadian-cities.png index aeedf21e9fb..f83012e6946 100644 Binary files a/test/image/baselines/geo_canadian-cities.png and b/test/image/baselines/geo_canadian-cities.png differ diff --git a/test/image/baselines/geo_country-names-text-chart.png b/test/image/baselines/geo_country-names-text-chart.png index 42a0737ec7f..51c99316b62 100644 Binary files a/test/image/baselines/geo_country-names-text-chart.png and b/test/image/baselines/geo_country-names-text-chart.png differ diff --git a/test/image/baselines/geo_text_chart_arrays.png b/test/image/baselines/geo_text_chart_arrays.png index 0f4a3b5e05a..56d065433c3 100644 Binary files a/test/image/baselines/geo_text_chart_arrays.png and b/test/image/baselines/geo_text_chart_arrays.png differ diff --git a/test/image/baselines/gl2d_parcoords_constraints.png b/test/image/baselines/gl2d_parcoords_constraints.png index 896d1fa9121..bfb79bf9c49 100644 Binary files a/test/image/baselines/gl2d_parcoords_constraints.png and b/test/image/baselines/gl2d_parcoords_constraints.png differ diff --git a/test/image/baselines/gl2d_parcoords_dark_background.png b/test/image/baselines/gl2d_parcoords_dark_background.png index d3db0b5c09d..c913d1f39af 100644 Binary files a/test/image/baselines/gl2d_parcoords_dark_background.png and b/test/image/baselines/gl2d_parcoords_dark_background.png differ diff --git a/test/image/baselines/heatmap-text-color-on-missing-data.png b/test/image/baselines/heatmap-text-color-on-missing-data.png index a0a5487c15a..b9918ad050a 100644 Binary files a/test/image/baselines/heatmap-text-color-on-missing-data.png and b/test/image/baselines/heatmap-text-color-on-missing-data.png differ diff --git a/test/image/baselines/heatmap_brick_padding.png b/test/image/baselines/heatmap_brick_padding.png index 41f917be325..d74f4afb0ad 100644 Binary files a/test/image/baselines/heatmap_brick_padding.png and b/test/image/baselines/heatmap_brick_padding.png differ diff --git a/test/image/baselines/indicator_attrs.png b/test/image/baselines/indicator_attrs.png index 36bbc59d2ca..5cf8677c724 100644 Binary files a/test/image/baselines/indicator_attrs.png and b/test/image/baselines/indicator_attrs.png differ diff --git a/test/image/baselines/indicator_scatter.png b/test/image/baselines/indicator_scatter.png index bb61d144450..f43e7a8a24e 100644 Binary files a/test/image/baselines/indicator_scatter.png and b/test/image/baselines/indicator_scatter.png differ diff --git a/test/image/baselines/insiderange-x-multi-y.png b/test/image/baselines/insiderange-x-multi-y.png index 322dc421f59..3c457a23318 100644 Binary files a/test/image/baselines/insiderange-x-multi-y.png and b/test/image/baselines/insiderange-x-multi-y.png differ diff --git a/test/image/baselines/insiderange-y-multi-x.png b/test/image/baselines/insiderange-y-multi-x.png index 318fb446383..c4cb5b52eb2 100644 Binary files a/test/image/baselines/insiderange-y-multi-x.png and b/test/image/baselines/insiderange-y-multi-x.png differ diff --git a/test/image/baselines/parcats_dark.png b/test/image/baselines/parcats_dark.png index 2f2c6eea782..79359ee6950 100644 Binary files a/test/image/baselines/parcats_dark.png and b/test/image/baselines/parcats_dark.png differ diff --git a/test/image/baselines/pie_legend_line_color_array.png b/test/image/baselines/pie_legend_line_color_array.png index f509e6b4d8e..620684ff778 100644 Binary files a/test/image/baselines/pie_legend_line_color_array.png and b/test/image/baselines/pie_legend_line_color_array.png differ diff --git a/test/image/baselines/polar_bar-overlay.png b/test/image/baselines/polar_bar-overlay.png index 03e4a6ccb3e..a09e839ffce 100644 Binary files a/test/image/baselines/polar_bar-overlay.png and b/test/image/baselines/polar_bar-overlay.png differ diff --git a/test/image/baselines/sankey_energy_dark.png b/test/image/baselines/sankey_energy_dark.png index c8bf66ef61a..fd154477e96 100644 Binary files a/test/image/baselines/sankey_energy_dark.png and b/test/image/baselines/sankey_energy_dark.png differ diff --git a/test/image/baselines/sankey_messy.png b/test/image/baselines/sankey_messy.png index d7427964d76..e1d33a5f004 100644 Binary files a/test/image/baselines/sankey_messy.png and b/test/image/baselines/sankey_messy.png differ diff --git a/test/image/baselines/text_on_shapes_basic.png b/test/image/baselines/text_on_shapes_basic.png index 0623b30ec5c..ec1e63dd288 100644 Binary files a/test/image/baselines/text_on_shapes_basic.png and b/test/image/baselines/text_on_shapes_basic.png differ diff --git a/test/image/baselines/texttemplate.png b/test/image/baselines/texttemplate.png index 544ab2ca75b..357435f8223 100644 Binary files a/test/image/baselines/texttemplate.png and b/test/image/baselines/texttemplate.png differ diff --git a/test/image/baselines/texttemplate_scatter.png b/test/image/baselines/texttemplate_scatter.png index 494c5154015..eaaabb65bfa 100644 Binary files a/test/image/baselines/texttemplate_scatter.png and b/test/image/baselines/texttemplate_scatter.png differ diff --git a/test/image/baselines/ticklabelposition-5.png b/test/image/baselines/ticklabelposition-5.png index 2f3fd915324..bdd338c6cc6 100644 Binary files a/test/image/baselines/ticklabelposition-5.png and b/test/image/baselines/ticklabelposition-5.png differ diff --git a/test/image/baselines/trace_metatext.png b/test/image/baselines/trace_metatext.png index adb52b068ad..5e45856435a 100644 Binary files a/test/image/baselines/trace_metatext.png and b/test/image/baselines/trace_metatext.png differ diff --git a/test/image/baselines/treemap_multi-line_headers.png b/test/image/baselines/treemap_multi-line_headers.png index 58afe6c819f..f870ab7f6b3 100644 Binary files a/test/image/baselines/treemap_multi-line_headers.png and b/test/image/baselines/treemap_multi-line_headers.png differ diff --git a/test/image/baselines/zz-font-decorline-scatter.png b/test/image/baselines/zz-font-decorline-scatter.png new file mode 100644 index 00000000000..a90b231b04e Binary files /dev/null and b/test/image/baselines/zz-font-decorline-scatter.png differ diff --git a/test/image/baselines/zz-font-textcase-scatter.png b/test/image/baselines/zz-font-textcase-scatter.png new file mode 100644 index 00000000000..603ff92239e Binary files /dev/null and b/test/image/baselines/zz-font-textcase-scatter.png differ diff --git a/test/image/baselines/zz-font-textshadow-scatter.png b/test/image/baselines/zz-font-textshadow-scatter.png new file mode 100644 index 00000000000..9ec07cb80b5 Binary files /dev/null and b/test/image/baselines/zz-font-textshadow-scatter.png differ diff --git a/test/image/mocks/axes_custom-ticks_log-date.json b/test/image/mocks/axes_custom-ticks_log-date.json index 261015f32d1..a2be362f075 100644 --- a/test/image/mocks/axes_custom-ticks_log-date.json +++ b/test/image/mocks/axes_custom-ticks_log-date.json @@ -13,6 +13,11 @@ ] }], "layout": { + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "width": 500, "height": 300, "title": { diff --git a/test/image/mocks/axes_labels.json b/test/image/mocks/axes_labels.json index ce8a4367e98..9273de42019 100644 --- a/test/image/mocks/axes_labels.json +++ b/test/image/mocks/axes_labels.json @@ -52,6 +52,11 @@ } ], "layout": { + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "xaxis": { "autorangeoptions": { "clipmin": 0.5, diff --git a/test/image/mocks/bar-colorscale-colorbar.json b/test/image/mocks/bar-colorscale-colorbar.json index 7a6aa323af4..c0beaeb3a7a 100644 --- a/test/image/mocks/bar-colorscale-colorbar.json +++ b/test/image/mocks/bar-colorscale-colorbar.json @@ -54,6 +54,11 @@ } ], "layout": { + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "title": { "text": "bars + colorbar = <3" }, diff --git a/test/image/mocks/bar_annotation_max_range_eq_category.json b/test/image/mocks/bar_annotation_max_range_eq_category.json index df38efa2d90..78c6bff9c61 100644 --- a/test/image/mocks/bar_annotation_max_range_eq_category.json +++ b/test/image/mocks/bar_annotation_max_range_eq_category.json @@ -10,7 +10,10 @@ "font": { "weight": "bold", "style": "italic", - "variant": "small-caps" + "variant": "small-caps", + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" }, "xaxis": { "type": "category", diff --git a/test/image/mocks/bar_attrs_group_norm.json b/test/image/mocks/bar_attrs_group_norm.json index 9742ea4bf94..40053f4a3a4 100644 --- a/test/image/mocks/bar_attrs_group_norm.json +++ b/test/image/mocks/bar_attrs_group_norm.json @@ -15,6 +15,11 @@ } ], "layout":{ + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "height":400, "width":400, "barmode":"group", diff --git a/test/image/mocks/bar_gantt-chart.json b/test/image/mocks/bar_gantt-chart.json index 32ce571096a..e4552b8408f 100644 --- a/test/image/mocks/bar_gantt-chart.json +++ b/test/image/mocks/bar_gantt-chart.json @@ -68,6 +68,11 @@ } ], "layout": { + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "barcornerradius": "50%", "width": 1000, "height": 500, diff --git a/test/image/mocks/benchmarks.json b/test/image/mocks/benchmarks.json index cd39c85e0b6..0c6f6e818c7 100644 --- a/test/image/mocks/benchmarks.json +++ b/test/image/mocks/benchmarks.json @@ -308,6 +308,11 @@ } ], "layout": { + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "title": { "text": "Plotly Benchmarks" }, diff --git a/test/image/mocks/canada_geo_projections.json b/test/image/mocks/canada_geo_projections.json index ae22f1a868e..a8c86380cdb 100644 --- a/test/image/mocks/canada_geo_projections.json +++ b/test/image/mocks/canada_geo_projections.json @@ -3868,6 +3868,11 @@ } ], "layout": { + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "grid": { "rows": 8, "columns": 11 diff --git a/test/image/mocks/cliponaxis_false-dates-log.json b/test/image/mocks/cliponaxis_false-dates-log.json index 3d6ad2d2edc..e307754ae8b 100644 --- a/test/image/mocks/cliponaxis_false-dates-log.json +++ b/test/image/mocks/cliponaxis_false-dates-log.json @@ -24,6 +24,11 @@ "yaxis": "y2" }], "layout": { + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "dragmode": "pan", "width": 700, "height": 400, diff --git a/test/image/mocks/container-legend.json b/test/image/mocks/container-legend.json index 08bd25d8694..1a6dbfaab59 100644 --- a/test/image/mocks/container-legend.json +++ b/test/image/mocks/container-legend.json @@ -23,6 +23,11 @@ } ], "layout": { + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "margin": {"t": 0, "b": 0, "r": 0, "l": 0}, "title": { "text": "Multiple legends | Legends 1 & 2 with container ref", diff --git a/test/image/mocks/contour_constraints_equal_boundary_minmax.json b/test/image/mocks/contour_constraints_equal_boundary_minmax.json index a0073aceb54..fa7ebe024e4 100644 --- a/test/image/mocks/contour_constraints_equal_boundary_minmax.json +++ b/test/image/mocks/contour_constraints_equal_boundary_minmax.json @@ -158,6 +158,11 @@ } ], "layout": { + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "grid": {"rows": 4, "columns": 2, "pattern": "independent"}, "width": 600, "height": 800, diff --git a/test/image/mocks/font-variant-bar.json b/test/image/mocks/font-variant-bar.json index a3802d79c47..c1555335083 100644 --- a/test/image/mocks/font-variant-bar.json +++ b/test/image/mocks/font-variant-bar.json @@ -30,6 +30,10 @@ } ], "layout": { + "font": { + "lineposition": "under", + "shadow": "auto" + }, "showlegend": false, "margin": { "l": 0, diff --git a/test/image/mocks/funnel_axis_textangle_outside.json b/test/image/mocks/funnel_axis_textangle_outside.json index f9e517b69e7..57dfba11167 100644 --- a/test/image/mocks/funnel_axis_textangle_outside.json +++ b/test/image/mocks/funnel_axis_textangle_outside.json @@ -80,6 +80,11 @@ } ], "layout": { + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "width": 800, "height": 800, "dragmode": "pan", diff --git a/test/image/mocks/funnel_horizontal_group_basic.json b/test/image/mocks/funnel_horizontal_group_basic.json index 254f6d87e2f..49067a37748 100644 --- a/test/image/mocks/funnel_horizontal_group_basic.json +++ b/test/image/mocks/funnel_horizontal_group_basic.json @@ -51,6 +51,11 @@ } ], "layout": { + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "title": { "text": "plotly repos | April 10 2019" }, diff --git a/test/image/mocks/geo_africa-insets.json b/test/image/mocks/geo_africa-insets.json index 130d8bbf020..4ac1a3b1a15 100644 --- a/test/image/mocks/geo_africa-insets.json +++ b/test/image/mocks/geo_africa-insets.json @@ -220,6 +220,11 @@ } ], "layout": { + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "geo2": { "showland": true, "domain": { diff --git a/test/image/mocks/geo_canadian-cities.json b/test/image/mocks/geo_canadian-cities.json index 75db415dfdd..9d4955665e8 100644 --- a/test/image/mocks/geo_canadian-cities.json +++ b/test/image/mocks/geo_canadian-cities.json @@ -86,6 +86,9 @@ } }, "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto", "family": "Noto Serif, serif" }, "geo": { diff --git a/test/image/mocks/geo_country-names-text-chart.json b/test/image/mocks/geo_country-names-text-chart.json index 1c0563ad84d..2e6c7bb630d 100644 --- a/test/image/mocks/geo_country-names-text-chart.json +++ b/test/image/mocks/geo_country-names-text-chart.json @@ -785,6 +785,9 @@ } ], "layout": { + "font": { + "shadow": "auto" + }, "title": {"text": "The World's countries"}, "geo": { "domain": { diff --git a/test/image/mocks/geo_text_chart_arrays.json b/test/image/mocks/geo_text_chart_arrays.json index a12e4b2efd3..bb9673f766e 100644 --- a/test/image/mocks/geo_text_chart_arrays.json +++ b/test/image/mocks/geo_text_chart_arrays.json @@ -118,10 +118,14 @@ "title": { "text": "Canadian cities", "font": { + "color": "yellow", + "shadow": "2px 2px 4px red", "size": 28 } }, - "font": {}, + "font": { + "shadow": "auto" + }, "geo": { "scope": "north america", "lonaxis": { diff --git a/test/image/mocks/heatmap-text-color-on-missing-data.json b/test/image/mocks/heatmap-text-color-on-missing-data.json index 44ba15dcab0..4db974dcd27 100644 --- a/test/image/mocks/heatmap-text-color-on-missing-data.json +++ b/test/image/mocks/heatmap-text-color-on-missing-data.json @@ -51,6 +51,11 @@ } ], "layout": { + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "title": { "text": "Heatmap text color should contrast with
background on cells with missing data" }, diff --git a/test/image/mocks/heatmap_brick_padding.json b/test/image/mocks/heatmap_brick_padding.json index 2e88031e022..9d5100544df 100644 --- a/test/image/mocks/heatmap_brick_padding.json +++ b/test/image/mocks/heatmap_brick_padding.json @@ -17,6 +17,9 @@ } ], "layout": { + "font": { + "shadow": "auto" + }, "width": 400, "height": 400, "xaxis": {"zeroline": false, "showline": true, "mirror": true, "dtick": 1}, diff --git a/test/image/mocks/indicator_attrs.json b/test/image/mocks/indicator_attrs.json index ff92a0bdf42..e4365d3e9e7 100644 --- a/test/image/mocks/indicator_attrs.json +++ b/test/image/mocks/indicator_attrs.json @@ -152,7 +152,10 @@ "font": { "weight": "bold", "style": "italic", - "variant": "small-caps" + "variant": "small-caps", + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" }, "width": 800, "height": 500 diff --git a/test/image/mocks/indicator_scatter.json b/test/image/mocks/indicator_scatter.json index 256332f19b0..4d8c619d53a 100644 --- a/test/image/mocks/indicator_scatter.json +++ b/test/image/mocks/indicator_scatter.json @@ -28,6 +28,8 @@ "visible": false }, "font": { + "lineposition": "under", + "shadow": "auto", "color": "white", "family": "Raleway" }, diff --git a/test/image/mocks/insiderange-x-multi-y.json b/test/image/mocks/insiderange-x-multi-y.json index 1dbf83e49d7..3055b397876 100644 --- a/test/image/mocks/insiderange-x-multi-y.json +++ b/test/image/mocks/insiderange-x-multi-y.json @@ -41,6 +41,10 @@ "y": [1000, 10, 100, 1] }], "layout": { + "font": { + "lineposition": "under", + "shadow": "auto" + }, "template": { "layout": { "yaxis": { diff --git a/test/image/mocks/insiderange-y-multi-x.json b/test/image/mocks/insiderange-y-multi-x.json index c24475ed190..0e2d8ca3b60 100644 --- a/test/image/mocks/insiderange-y-multi-x.json +++ b/test/image/mocks/insiderange-y-multi-x.json @@ -41,6 +41,10 @@ "x": [1000, 10, 100, 1] }], "layout": { + "font": { + "lineposition": "under", + "shadow": "auto" + }, "template": { "layout": { "xaxis": { diff --git a/test/image/mocks/pie_legend_line_color_array.json b/test/image/mocks/pie_legend_line_color_array.json index cc9825626c8..afe54ceb9ff 100644 --- a/test/image/mocks/pie_legend_line_color_array.json +++ b/test/image/mocks/pie_legend_line_color_array.json @@ -38,6 +38,10 @@ } ], "layout": { + "font": { + "lineposition": "under", + "shadow": "auto" + }, "width": 400, "height": 400, "title": { "text": "pie-like legend with line.color array of length > 3" } diff --git a/test/image/mocks/polar_bar-overlay.json b/test/image/mocks/polar_bar-overlay.json index 16b504fd5b1..d8e8c733ddb 100644 --- a/test/image/mocks/polar_bar-overlay.json +++ b/test/image/mocks/polar_bar-overlay.json @@ -14,6 +14,9 @@ } }], "layout": { + "font": { + "shadow": "auto" + }, "polar": {"barmode": "overlay"}, "width": 500, "height": 500 diff --git a/test/image/mocks/sankey_messy.json b/test/image/mocks/sankey_messy.json index 087538aa7d0..0042a3478cc 100644 --- a/test/image/mocks/sankey_messy.json +++ b/test/image/mocks/sankey_messy.json @@ -36,6 +36,11 @@ } }], "layout": { + "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" + }, "title": {"text": "Sankey with messy data"}, "width": 600, "height": 800 diff --git a/test/image/mocks/text_on_shapes_basic.json b/test/image/mocks/text_on_shapes_basic.json index f6fb9b5106c..acfe9a70f51 100644 --- a/test/image/mocks/text_on_shapes_basic.json +++ b/test/image/mocks/text_on_shapes_basic.json @@ -6,6 +6,9 @@ }], "layout": { "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto", "weight": "bold", "style": "italic", "variant": "small-caps" diff --git a/test/image/mocks/texttemplate.json b/test/image/mocks/texttemplate.json index 9559c1c4484..9f16a461dc0 100644 --- a/test/image/mocks/texttemplate.json +++ b/test/image/mocks/texttemplate.json @@ -167,6 +167,9 @@ ], "layout": { "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto", "weight": 700, "style": "italic", "variant": "small-caps" diff --git a/test/image/mocks/texttemplate_scatter.json b/test/image/mocks/texttemplate_scatter.json index a7f00888580..441ae87e00c 100644 --- a/test/image/mocks/texttemplate_scatter.json +++ b/test/image/mocks/texttemplate_scatter.json @@ -83,6 +83,9 @@ ], "layout": { "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto", "weight": "700", "style": "italic", "variant": "small-caps" diff --git a/test/image/mocks/ticklabelposition-5.json b/test/image/mocks/ticklabelposition-5.json index bc9ac23d003..c90707c05b8 100644 --- a/test/image/mocks/ticklabelposition-5.json +++ b/test/image/mocks/ticklabelposition-5.json @@ -178,6 +178,9 @@ "gridcolor": "white" }, "font": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto", "size": 16 }, "plot_bgcolor": "lightblue", diff --git a/test/image/mocks/trace_metatext.json b/test/image/mocks/trace_metatext.json index 37caa78abd8..de0bea5e73a 100644 --- a/test/image/mocks/trace_metatext.json +++ b/test/image/mocks/trace_metatext.json @@ -36,7 +36,10 @@ "font": { "weight": "bold", "style": "italic", - "variant": "small-caps" + "variant": "small-caps", + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto" }, "meta": { "global": "GrApH", diff --git a/test/image/mocks/treemap_multi-line_headers.json b/test/image/mocks/treemap_multi-line_headers.json index 7119fff7852..b90b66aa859 100644 --- a/test/image/mocks/treemap_multi-line_headers.json +++ b/test/image/mocks/treemap_multi-line_headers.json @@ -24,6 +24,9 @@ "textposition": "middle center", "texttemplate": "%{label}", "textfont": { + "textcase": "word caps", + "lineposition": "under", + "shadow": "auto", "size": 20 } } diff --git a/test/image/mocks/zz-font-decorline-scatter.json b/test/image/mocks/zz-font-decorline-scatter.json new file mode 100644 index 00000000000..758059605c8 --- /dev/null +++ b/test/image/mocks/zz-font-decorline-scatter.json @@ -0,0 +1,55 @@ +{ + "data": [ + { + "hovertemplate": "%{text}", + "texttemplate": "Rien ne se perd, rien ne se crée, tout se transforme
%{text}", + "mode": "text", + "text": [ + "normal", + "over", + "through", + "under", + "under+over", + "under+over+through" + ], + "textfont": { + "family": "Inter", + "size": 16, + "lineposition": [ + "normal", + "over", + "through", + "under", + "under+over", + "under+over+through" + ] + }, + "x": [0, 0, 0, 0, 0, 0], + "y": [0, 1, 2, 3, 4, 5] + } + ], + "layout": { + "showlegend": false, + "margin": { + "l": 0, + "r": 0, + "t": 0, + "b": 0 + }, + "xaxis": { + "range": [-1, 1], + "showticklabels": false, + "showgrid": false, + "zeroline": false + }, + "yaxis": { + "range": [5.5, -0.5], + "showticklabels": false, + "showgrid": false, + "zeroline": false + }, + "width": 400, + "height": 400, + "hovermode": "closest" + } +} diff --git a/test/image/mocks/zz-font-textcase-scatter.json b/test/image/mocks/zz-font-textcase-scatter.json new file mode 100644 index 00000000000..f837c64c365 --- /dev/null +++ b/test/image/mocks/zz-font-textcase-scatter.json @@ -0,0 +1,51 @@ +{ + "data": [ + { + "hovertemplate": "%{text}", + "texttemplate": "Rien ne se perd, rien ne se crée, tout se transforme!
%{text}", + "mode": "text", + "text": [ + "normal", + "word caps", + "upper", + "lower" + ], + "textfont": { + "family": "Inter", + "size": 16, + "textcase": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "x": [0, 0, 0, 0], + "y": [0, 1, 2, 3] + } + ], + "layout": { + "showlegend": false, + "margin": { + "l": 0, + "r": 0, + "t": 0, + "b": 0 + }, + "xaxis": { + "range": [-1, 1], + "showticklabels": false, + "showgrid": false, + "zeroline": false + }, + "yaxis": { + "range": [3.5, -0.5], + "showticklabels": false, + "showgrid": false, + "zeroline": false + }, + "width": 500, + "height": 250, + "hovermode": "closest" + } +} diff --git a/test/image/mocks/zz-font-textshadow-scatter.json b/test/image/mocks/zz-font-textshadow-scatter.json new file mode 100644 index 00000000000..e53835d687a --- /dev/null +++ b/test/image/mocks/zz-font-textshadow-scatter.json @@ -0,0 +1,60 @@ +{ + "data": [ + { + "hovertemplate": "%{text}", + "texttemplate": "Rien ne se perd, rien ne se crée, tout se transforme
%{text}", + "mode": "text", + "text": [ + "none", + "auto", + "1px 1px 2px pink", + "#FC0 1px 0 10px", + "5px 5px #558ABB", + "red 2px 5px", + "5px 10px", + "1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue" + ], + "textfont": { + "family": "Inter", + "size": 16, + "shadow": [ + "none", + "auto", + "1px 1px 2px pink", + "#FC0 1px 0 10px", + "5px 5px #558ABB", + "red 2px 5px", + "5px 10px", + "1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue" + ] + }, + "x": [0, 0, 0, 0, 0, 0, 0, 0], + "y": [0, 1, 2, 3, 4, 5, 6, 7] + } + ], + "layout": { + "plot_bgcolor": "lightyellow", + "showlegend": false, + "margin": { + "l": 0, + "r": 0, + "t": 0, + "b": 0 + }, + "xaxis": { + "range": [-1, 1], + "showticklabels": false, + "showgrid": false, + "zeroline": false + }, + "yaxis": { + "range": [7.5, -0.5], + "showticklabels": false, + "showgrid": false, + "zeroline": false + }, + "width": 400, + "height": 400, + "hovermode": "closest" + } +} diff --git a/test/jasmine/tests/annotations_test.js b/test/jasmine/tests/annotations_test.js index 7489992a78a..7abda62e48a 100644 --- a/test/jasmine/tests/annotations_test.js +++ b/test/jasmine/tests/annotations_test.js @@ -1447,7 +1447,10 @@ describe('annotation effects', function() { color: '#fff', weight: 'normal', style: 'normal', - variant: 'normal' + variant: 'normal', + textcase: 'normal', + lineposition: 'none', + shadow: 'none', } }); @@ -1476,7 +1479,10 @@ describe('annotation effects', function() { color: '#080', weight: 'normal', style: 'normal', - variant: 'normal' + variant: 'normal', + textcase: 'normal', + lineposition: 'none', + shadow: 'none', } }, 'annotations[1].hovertext': 'chicken' @@ -1492,7 +1498,10 @@ describe('annotation effects', function() { color: '#080', weight: 'normal', style: 'normal', - variant: 'normal' + variant: 'normal', + textcase: 'normal', + lineposition: 'none', + shadow: 'none', } }); diff --git a/test/jasmine/tests/axes_test.js b/test/jasmine/tests/axes_test.js index ce5af390004..2d6e1c9d970 100644 --- a/test/jasmine/tests/axes_test.js +++ b/test/jasmine/tests/axes_test.js @@ -2372,7 +2372,10 @@ describe('Test axes', function() { color: '#444', weight: 'normal', style: 'normal', - variant: 'normal' + variant: 'normal', + textcase: 'normal', + lineposition: 'none', + shadow: 'none', }); expect(yaxis.tickangle).toBe('auto'); }) @@ -2392,7 +2395,10 @@ describe('Test axes', function() { color: '#0FF', weight: 'normal', style: 'normal', - variant: 'normal' + variant: 'normal', + textcase: 'normal', + lineposition: 'none', + shadow: 'none', }, tickangle: -20 } @@ -2412,7 +2418,10 @@ describe('Test axes', function() { color: '#0FF', weight: 'normal', style: 'normal', - variant: 'normal' + variant: 'normal', + textcase: 'normal', + lineposition: 'none', + shadow: 'none', }); expect(yaxis.tickangle).toBe(-20); }) diff --git a/test/jasmine/tests/bar_test.js b/test/jasmine/tests/bar_test.js index 12e4d577209..2d6a20d9bb6 100644 --- a/test/jasmine/tests/bar_test.js +++ b/test/jasmine/tests/bar_test.js @@ -158,7 +158,10 @@ describe('Bar.supplyDefaults', function() { size: 13, weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', } }; var layoutFontMinusColor = { @@ -166,7 +169,10 @@ describe('Bar.supplyDefaults', function() { size: 13, weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', }; supplyDefaults(traceIn, traceOut, defaultColor, layout); diff --git a/test/jasmine/tests/funnel_test.js b/test/jasmine/tests/funnel_test.js index 14cab86b581..b28642fe560 100644 --- a/test/jasmine/tests/funnel_test.js +++ b/test/jasmine/tests/funnel_test.js @@ -159,7 +159,10 @@ describe('Funnel.supplyDefaults', function() { size: 13, weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', } }; var layoutFontMinusColor = { @@ -167,7 +170,10 @@ describe('Funnel.supplyDefaults', function() { size: 13, weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', }; supplyDefaults(traceIn, traceOut, defaultColor, layout); diff --git a/test/jasmine/tests/fx_test.js b/test/jasmine/tests/fx_test.js index ab52b552697..3f757713445 100644 --- a/test/jasmine/tests/fx_test.js +++ b/test/jasmine/tests/fx_test.js @@ -156,7 +156,10 @@ describe('Fx defaults', function() { color: 'pink', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', } } }); @@ -170,7 +173,10 @@ describe('Fx defaults', function() { color: 'pink', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', }, align: 'auto', namelength: 15 @@ -185,7 +191,10 @@ describe('Fx defaults', function() { color: 'red', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', }, align: 'auto', namelength: 15 @@ -200,7 +209,10 @@ describe('Fx defaults', function() { color: 'pink', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', } }); @@ -213,7 +225,10 @@ describe('Fx defaults', function() { color: 'pink', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', } }); }); diff --git a/test/jasmine/tests/lib_test.js b/test/jasmine/tests/lib_test.js index 5d888387fbb..0e69e7c6084 100644 --- a/test/jasmine/tests/lib_test.js +++ b/test/jasmine/tests/lib_test.js @@ -1038,7 +1038,10 @@ describe('Test lib.js:', function() { color: 'neon pink with sparkles', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', }; var attributes = { @@ -1048,7 +1051,10 @@ describe('Test lib.js:', function() { color: extendFlat({}, fontAttrs.color, {dflt: defaultFont.color}), weight: extendFlat({}, fontAttrs.weight, {dflt: defaultFont.weight}), style: extendFlat({}, fontAttrs.style, {dflt: defaultFont.style}), - variant: extendFlat({}, fontAttrs.variant, {dflt: defaultFont.variant}) + variant: extendFlat({}, fontAttrs.variant, {dflt: defaultFont.variant}), + textcase: extendFlat({}, fontAttrs.textcase, {dflt: defaultFont.textcase}), + lineposition: extendFlat({}, fontAttrs.lineposition, {dflt: defaultFont.lineposition}), + shadow: extendFlat({}, fontAttrs.shadow, {dflt: defaultFont.shadow}) }, fontNoDefault: fontAttrs }; @@ -1081,7 +1087,10 @@ describe('Test lib.js:', function() { color: 42, weight: 'BIG', style: 'Nice', - variant: false + variant: false, + textcase: true, + lineposition: false, + shadow: false, } }; expect(coerceFont(coerce, 'fontWithDefault')) @@ -1102,6 +1111,13 @@ describe('Test lib.js:', function() { var goodVariant = 'small-caps'; var badVariant = false; + var goodTextcase = 'word caps'; + var badTextcase = true; + var goodLineposition = 'under'; + var badLineposition = 'underline'; + var goodShadow = 'auto'; + var badShadow = false; + containerIn = { fontWithDefault: { family: goodFamily, @@ -1109,7 +1125,10 @@ describe('Test lib.js:', function() { color: badColor, weight: badWeight, style: badStyle, - variant: badVariant + variant: badVariant, + textcase: badTextcase, + lineposition: badLineposition, + shadow: badShadow } }; expect(coerceFont(coerce, 'fontWithDefault')) @@ -1119,7 +1138,10 @@ describe('Test lib.js:', function() { color: defaultFont.color, weight: defaultFont.weight, style: defaultFont.style, - variant: defaultFont.variant + variant: defaultFont.variant, + textcase: defaultFont.textcase, + lineposition: defaultFont.lineposition, + shadow: defaultFont.shadow }); containerIn = { @@ -1129,7 +1151,10 @@ describe('Test lib.js:', function() { color: badColor, weight: badWeight, style: badStyle, - variant: badVariant + variant: badVariant, + textcase: badTextcase, + lineposition: badLineposition, + shadow: badShadow } }; expect(coerceFont(coerce, 'fontWithDefault')) @@ -1139,7 +1164,10 @@ describe('Test lib.js:', function() { color: defaultFont.color, weight: defaultFont.weight, style: defaultFont.style, - variant: defaultFont.variant + variant: defaultFont.variant, + textcase: defaultFont.textcase, + lineposition: defaultFont.lineposition, + shadow: defaultFont.shadow }); containerIn = { @@ -1149,7 +1177,10 @@ describe('Test lib.js:', function() { color: goodColor, weight: badWeight, style: badStyle, - variant: badVariant + variant: badVariant, + textcase: badTextcase, + lineposition: badLineposition, + shadow: badShadow } }; expect(coerceFont(coerce, 'fontWithDefault')) @@ -1159,7 +1190,10 @@ describe('Test lib.js:', function() { color: goodColor, weight: defaultFont.weight, style: defaultFont.style, - variant: defaultFont.variant + variant: defaultFont.variant, + textcase: defaultFont.textcase, + lineposition: defaultFont.lineposition, + shadow: defaultFont.shadow }); containerIn = { @@ -1169,7 +1203,10 @@ describe('Test lib.js:', function() { color: badColor, weight: goodWeight, style: badStyle, - variant: badVariant + variant: badVariant, + textcase: badTextcase, + lineposition: badLineposition, + shadow: badShadow } }; expect(coerceFont(coerce, 'fontWithDefault')) @@ -1179,7 +1216,10 @@ describe('Test lib.js:', function() { color: defaultFont.color, weight: goodWeight, style: defaultFont.style, - variant: defaultFont.variant + variant: defaultFont.variant, + textcase: defaultFont.textcase, + lineposition: defaultFont.lineposition, + shadow: defaultFont.shadow }); containerIn = { @@ -1189,7 +1229,10 @@ describe('Test lib.js:', function() { color: badColor, weight: badWeight, style: goodStyle, - variant: badVariant + variant: badVariant, + textcase: badTextcase, + lineposition: badLineposition, + shadow: badShadow } }; expect(coerceFont(coerce, 'fontWithDefault')) @@ -1199,7 +1242,88 @@ describe('Test lib.js:', function() { color: defaultFont.color, weight: defaultFont.weight, style: goodStyle, - variant: defaultFont.variant + variant: defaultFont.variant, + textcase: defaultFont.textcase, + lineposition: defaultFont.lineposition, + shadow: defaultFont.shadow + }); + + containerIn = { + fontWithDefault: { + family: badFamily, + size: badSize, + color: badColor, + weight: badWeight, + style: badStyle, + variant: goodVariant, + textcase: badTextcase, + lineposition: badLineposition, + shadow: badShadow + } + }; + expect(coerceFont(coerce, 'fontWithDefault')) + .toEqual({ + family: defaultFont.family, + size: defaultFont.size, + color: defaultFont.color, + weight: defaultFont.weight, + style: defaultFont.style, + variant: goodVariant, + textcase: defaultFont.textcase, + lineposition: defaultFont.lineposition, + shadow: defaultFont.shadow + }); + + containerIn = { + fontWithDefault: { + family: badFamily, + size: badSize, + color: badColor, + weight: badWeight, + style: badStyle, + variant: badVariant, + textcase: goodTextcase, + lineposition: badLineposition, + shadow: badShadow + } + }; + expect(coerceFont(coerce, 'fontWithDefault')) + .toEqual({ + family: defaultFont.family, + size: defaultFont.size, + color: defaultFont.color, + weight: defaultFont.weight, + style: defaultFont.style, + variant: defaultFont.variant, + textcase: goodTextcase, + lineposition: defaultFont.lineposition, + shadow: defaultFont.shadow + }); + + containerIn = { + fontWithDefault: { + family: badFamily, + size: badSize, + color: badColor, + weight: badWeight, + style: badStyle, + variant: badVariant, + textcase: badTextcase, + lineposition: goodLineposition, + shadow: badShadow + } + }; + expect(coerceFont(coerce, 'fontWithDefault')) + .toEqual({ + family: defaultFont.family, + size: defaultFont.size, + color: defaultFont.color, + weight: defaultFont.weight, + style: defaultFont.style, + variant: defaultFont.variant, + textcase: defaultFont.textcase, + lineposition: goodLineposition, + shadow: defaultFont.shadow }); containerIn = { @@ -1209,7 +1333,10 @@ describe('Test lib.js:', function() { color: badColor, weight: badWeight, style: badStyle, - variant: goodVariant + variant: badVariant, + textcase: badTextcase, + lineposition: badLineposition, + shadow: goodShadow } }; expect(coerceFont(coerce, 'fontWithDefault')) @@ -1219,7 +1346,10 @@ describe('Test lib.js:', function() { color: defaultFont.color, weight: defaultFont.weight, style: defaultFont.style, - variant: goodVariant + variant: defaultFont.variant, + textcase: defaultFont.textcase, + lineposition: defaultFont.lineposition, + shadow: goodShadow }); }); }); diff --git a/test/jasmine/tests/parcoords_test.js b/test/jasmine/tests/parcoords_test.js index a04a4f72ac8..0c5b238eed8 100644 --- a/test/jasmine/tests/parcoords_test.js +++ b/test/jasmine/tests/parcoords_test.js @@ -95,7 +95,10 @@ describe('parcoords initialization tests', function() { color: 'blue', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: '1px 1px 2px green', }; supplyAllDefaults(gd); @@ -106,7 +109,10 @@ describe('parcoords initialization tests', function() { color: 'blue', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: '1px 1px 2px green', }; expect(gd._fullData[0].labelfont).toEqual(expected); diff --git a/test/jasmine/tests/sankey_test.js b/test/jasmine/tests/sankey_test.js index 31aedb745ae..29b777c87ae 100644 --- a/test/jasmine/tests/sankey_test.js +++ b/test/jasmine/tests/sankey_test.js @@ -158,14 +158,20 @@ describe('sankey tests', function() { family: 'Arial', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: '1px 1px 2px green', }}); expect(fullTrace.textfont) .toEqual({ family: 'Arial', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: '1px 1px 2px green', }, 'textfont is defined'); }); diff --git a/test/jasmine/tests/table_test.js b/test/jasmine/tests/table_test.js index b83f869097e..157d1a16ce4 100644 --- a/test/jasmine/tests/table_test.js +++ b/test/jasmine/tests/table_test.js @@ -56,7 +56,10 @@ describe('table initialization tests', function() { color: 'blue', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', }; supplyAllDefaults(gd); @@ -67,7 +70,10 @@ describe('table initialization tests', function() { color: 'blue', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', }; expect(gd._fullData[0].header.font).toEqual(expected); @@ -86,7 +92,10 @@ describe('table initialization tests', function() { color: '#444', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', } }; @@ -150,7 +159,10 @@ describe('table initialization tests', function() { color: '#444', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', } }); @@ -167,7 +179,10 @@ describe('table initialization tests', function() { color: '#444', weight: 'bold', style: 'italic', - variant: 'small-caps' + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', } }); }); diff --git a/test/jasmine/tests/waterfall_test.js b/test/jasmine/tests/waterfall_test.js index 02f37ce44c1..c86f414309d 100644 --- a/test/jasmine/tests/waterfall_test.js +++ b/test/jasmine/tests/waterfall_test.js @@ -166,17 +166,23 @@ describe('Waterfall.supplyDefaults', function() { family: 'arial', color: '#AAA', size: 13, - weight: 'normal', - style: 'normal', - variant: 'normal' + weight: 'bold', + style: 'italic', + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', } }; var layoutFontMinusColor = { family: 'arial', size: 13, - weight: 'normal', - style: 'normal', - variant: 'normal' + weight: 'bold', + style: 'italic', + variant: 'small-caps', + textcase: 'word caps', + lineposition: 'under', + shadow: 'auto', }; supplyDefaults(traceIn, traceOut, defaultColor, layout); diff --git a/test/plot-schema.json b/test/plot-schema.json index dd15d4c3419..fd2b1659e37 100644 --- a/test/plot-schema.json +++ b/test/plot-schema.json @@ -615,6 +615,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "layoutstyle", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "layoutstyle", + "valType": "string" + }, "size": { "editType": "layoutstyle", "min": 1, @@ -630,6 +650,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "layoutstyle", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -841,7 +873,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc+arraydraw", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc+arraydraw", + "valType": "string" + }, "size": { "editType": "calc+arraydraw", "min": 1, @@ -857,6 +909,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc+arraydraw", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -917,7 +981,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "arraydraw", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "arraydraw", + "valType": "string" + }, "size": { "editType": "arraydraw", "min": 1, @@ -933,6 +1017,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "arraydraw", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -1249,6 +1345,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -1264,6 +1380,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -1505,7 +1633,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -1521,6 +1669,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -1719,7 +1879,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -1735,6 +1915,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -2027,7 +2219,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "dflt": 12, "editType": "calc", @@ -2044,6 +2256,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -2835,7 +3059,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, "size": { "dflt": 13, "editType": "none", @@ -2852,6 +3096,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -2893,7 +3149,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, "size": { "editType": "none", "min": 1, @@ -2909,6 +3185,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -3146,7 +3434,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "legend", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "legend", + "valType": "string" + }, "size": { "editType": "legend", "min": 1, @@ -3162,6 +3470,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "legend", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -3213,7 +3533,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "legend", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "legend", + "valType": "string" + }, "size": { "editType": "legend", "min": 1, @@ -3229,6 +3569,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "legend", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -3329,7 +3681,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "legend", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "legend", + "valType": "string" + }, "size": { "editType": "legend", "min": 1, @@ -3345,6 +3717,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "legend", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -4110,7 +4494,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, "size": { "editType": "none", "min": 1, @@ -4126,6 +4530,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -4260,7 +4676,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, "size": { "editType": "none", "min": 1, @@ -4276,6 +4712,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -4675,7 +5123,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -4691,6 +5159,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -4978,6 +5458,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "ticks", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "ticks", + "valType": "string" + }, "size": { "editType": "ticks", "min": 1, @@ -4993,6 +5493,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "ticks", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -5426,7 +5938,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -5442,6 +5974,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -5611,7 +6155,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "ticks", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "ticks", + "valType": "string" + }, "size": { "editType": "ticks", "min": 1, @@ -5627,6 +6191,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "ticks", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -5835,7 +6411,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -5851,6 +6447,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -5911,7 +6519,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -5927,6 +6555,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -6348,6 +6988,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -6363,6 +7023,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -6798,7 +7470,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -6814,6 +7506,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -6976,7 +7680,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -6992,6 +7716,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -7084,6 +7820,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -7099,6 +7855,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -7534,7 +8302,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -7550,6 +8338,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -7712,7 +8512,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -7728,6 +8548,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -7820,6 +8652,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -7835,6 +8687,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -8270,7 +9134,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -8286,6 +9170,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -8448,7 +9344,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -8464,6 +9380,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -8711,7 +9639,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc+arraydraw", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc+arraydraw", + "valType": "string" + }, "size": { "editType": "calc+arraydraw", "min": 1, @@ -8727,6 +9675,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc+arraydraw", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -8861,7 +9821,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc+arraydraw", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc+arraydraw", + "valType": "string" + }, "size": { "editType": "calc+arraydraw", "min": 1, @@ -8877,6 +9857,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc+arraydraw", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -9136,7 +10128,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "arraydraw", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "arraydraw", + "valType": "string" + }, "size": { "editType": "arraydraw", "min": 1, @@ -9152,6 +10164,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "arraydraw", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -9229,7 +10253,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "arraydraw", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "arraydraw", + "valType": "string" + }, "size": { "editType": "arraydraw", "min": 1, @@ -9245,6 +10289,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "arraydraw", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -9741,7 +10797,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -9757,6 +10833,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -9992,7 +11080,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -10008,6 +11116,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -10138,6 +11258,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -10153,6 +11293,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -10388,7 +11540,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -10404,6 +11576,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -10573,7 +11757,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -10589,6 +11793,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -10650,6 +11866,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -10665,6 +11901,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -10900,7 +12148,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -10916,6 +12184,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -11085,7 +12365,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -11101,6 +12401,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -11168,6 +12480,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -11183,6 +12515,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -11418,7 +12762,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -11434,6 +12798,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -11603,7 +12979,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -11619,6 +13015,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -11760,7 +13168,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "layoutstyle", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "layoutstyle", + "valType": "string" + }, "size": { "editType": "layoutstyle", "min": 1, @@ -11776,6 +13204,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "layoutstyle", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -12139,7 +13579,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "arraydraw", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "arraydraw", + "valType": "string" + }, "size": { "editType": "arraydraw", "min": 1, @@ -12155,6 +13615,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "arraydraw", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -12320,6 +13792,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "ticks", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "ticks", + "valType": "string" + }, "size": { "editType": "ticks", "min": 1, @@ -12335,6 +13827,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "ticks", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -13084,7 +14588,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -13100,6 +14624,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -13453,7 +14989,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "ticks", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "ticks", + "valType": "string" + }, "size": { "editType": "ticks", "min": 1, @@ -13469,6 +15025,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "ticks", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -13687,7 +15255,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "ticks", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "ticks", + "valType": "string" + }, "size": { "editType": "ticks", "min": 1, @@ -13703,6 +15291,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "ticks", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -13812,6 +15412,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "ticks", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "ticks", + "valType": "string" + }, "size": { "editType": "ticks", "min": 1, @@ -13827,6 +15447,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "ticks", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -14666,7 +16298,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "ticks", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "ticks", + "valType": "string" + }, "size": { "editType": "ticks", "min": 1, @@ -14682,6 +16334,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "ticks", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -14900,7 +16564,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "ticks", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "ticks", + "valType": "string" + }, "size": { "editType": "ticks", "min": 1, @@ -14916,6 +16600,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "ticks", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -15363,7 +17059,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -15391,6 +17119,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -15517,7 +17263,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -15545,6 +17323,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -15612,7 +17408,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -15628,6 +17444,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -15749,6 +17577,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -15764,6 +17612,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -16005,7 +17865,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -16021,6 +17901,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -16219,7 +18111,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -16235,6 +18147,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -16652,7 +18576,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -16680,6 +18636,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -16817,7 +18791,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -16845,6 +18851,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -17339,7 +19363,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -17367,6 +19423,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -17483,7 +19557,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -17499,6 +19593,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -17620,6 +19726,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -17635,6 +19761,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -17876,7 +20014,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -17892,6 +20050,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -18090,7 +20260,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -18106,6 +20296,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -18848,7 +21050,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -18876,6 +21110,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -19009,7 +21261,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -19025,6 +21297,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -20313,7 +22597,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -20341,6 +22657,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -20477,7 +22811,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -20493,6 +22847,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -20839,6 +23205,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -20854,6 +23240,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -21256,7 +23654,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -21272,6 +23690,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -21408,7 +23838,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -21424,6 +23874,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -21515,6 +23977,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -21530,6 +24012,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -21932,7 +24426,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -21948,6 +24462,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -22084,7 +24610,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -22100,6 +24646,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -22214,7 +24772,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "dflt": 12, "editType": "calc", @@ -22231,6 +24809,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -22291,7 +24881,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -22307,6 +24917,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -22512,6 +25134,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -22527,6 +25169,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -22768,7 +25422,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -22784,6 +25458,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -22982,7 +25668,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -22998,6 +25704,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -23233,7 +25951,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -23261,6 +26011,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -23377,7 +26145,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -23393,6 +26181,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -23737,6 +26537,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -23752,6 +26572,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -23993,7 +26825,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -24009,6 +26861,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -24207,7 +27071,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -24223,6 +27107,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -24452,7 +27348,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -24480,6 +27408,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -24596,7 +27542,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -24612,6 +27578,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -24991,6 +27969,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -25006,6 +28004,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -25247,7 +28257,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -25263,6 +28293,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -25461,7 +28503,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -25477,6 +28539,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -25700,7 +28774,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -25728,6 +28834,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -25844,7 +28968,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -25860,6 +29004,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -26264,6 +29420,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -26279,6 +29455,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -26520,7 +29708,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -26536,6 +29744,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -26734,7 +29954,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -26750,6 +29990,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -26914,7 +30166,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -26930,6 +30202,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -27157,7 +30441,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -27185,6 +30501,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -27305,7 +30639,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -27321,6 +30675,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -27493,7 +30859,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "dflt": "auto", "editType": "plot", @@ -27510,6 +30896,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -27955,6 +31353,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -27970,6 +31388,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -28211,7 +31641,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -28227,6 +31677,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -28425,7 +31887,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -28441,6 +31923,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -28599,7 +32093,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -28615,6 +32129,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -28799,7 +32325,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -28815,6 +32361,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -29127,6 +32685,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -29142,6 +32720,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -29383,7 +32973,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -29399,6 +33009,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -29597,7 +33219,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -29613,6 +33255,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -29832,7 +33486,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -29860,6 +33546,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -29986,7 +33690,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -30002,6 +33726,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -30425,7 +34161,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -30453,6 +34221,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -30578,7 +34364,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -30606,6 +34424,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -30673,7 +34509,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -30689,6 +34545,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -30810,6 +34678,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -30825,6 +34713,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -31066,7 +34966,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -31082,6 +35002,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -31280,7 +35212,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -31296,6 +35248,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -31609,7 +35573,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -31637,6 +35633,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -31745,7 +35759,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -31773,6 +35819,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -32241,7 +36305,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -32269,6 +36365,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -32383,7 +36497,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -32411,6 +36557,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -32494,7 +36658,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -32510,6 +36694,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -32779,7 +36975,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -32807,6 +37035,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -32921,7 +37167,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -32949,6 +37227,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -33121,6 +37417,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -33136,6 +37452,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -33377,7 +37705,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -33393,6 +37741,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -33591,7 +37951,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -33607,6 +37987,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -33849,7 +38241,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -33877,6 +38301,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -33997,7 +38439,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -34013,6 +38475,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -34141,7 +38615,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "dflt": "auto", "editType": "plot", @@ -34158,6 +38652,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -34559,6 +39065,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -34574,6 +39100,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -34815,7 +39353,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -34831,6 +39389,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -35029,7 +39599,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -35045,6 +39635,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -35282,7 +39884,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -35310,6 +39944,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -35396,7 +40048,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -35412,6 +40084,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -36109,7 +40793,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -36137,6 +40853,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -36250,7 +40984,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -36266,6 +41020,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -36321,7 +41087,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -36337,6 +41123,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -36458,6 +41256,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -36473,6 +41291,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -36714,7 +41544,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -36730,6 +41580,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -36928,7 +41790,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -36944,6 +41826,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -37350,7 +42244,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -37366,6 +42280,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -37479,7 +42405,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -37495,6 +42441,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -37860,6 +42818,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -37875,6 +42853,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -38116,7 +43106,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -38132,6 +43142,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -38330,7 +43352,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -38346,6 +43388,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -38591,7 +43645,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -38619,6 +43705,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -38723,7 +43827,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -38739,6 +43863,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -38890,7 +44026,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "dflt": "auto", "editType": "plot", @@ -38907,6 +44063,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -39264,6 +44432,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -39279,6 +44467,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -39520,7 +44720,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -39536,6 +44756,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -39734,7 +44966,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -39750,6 +45002,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -39909,7 +45173,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -39925,6 +45209,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -40155,7 +45451,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -40183,6 +45511,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -40287,7 +45633,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -40303,6 +45669,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -40499,7 +45877,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "dflt": "auto", "editType": "plot", @@ -40516,6 +45914,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -40977,7 +46387,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -41005,6 +46447,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -41120,7 +46580,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -41148,6 +46640,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -41230,7 +46740,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -41246,6 +46776,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -41367,6 +46909,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -41382,6 +46944,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -41623,7 +47197,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -41639,6 +47233,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -41837,7 +47443,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -41853,6 +47479,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -42174,7 +47812,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -42202,6 +47872,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -42303,7 +47991,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -42331,6 +48051,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -42449,7 +48187,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -42477,6 +48247,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -42790,7 +48578,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -42818,6 +48638,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -42926,7 +48764,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -42942,6 +48800,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -43232,7 +49102,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -43248,6 +49138,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -43540,7 +49442,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -43556,6 +49478,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -43917,7 +49851,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -43933,6 +49887,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -44023,7 +49989,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -44039,6 +50025,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -44131,7 +50129,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -44147,6 +50165,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -44359,6 +50389,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -44374,6 +50424,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -44615,7 +50677,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -44631,6 +50713,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -44829,7 +50923,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -44845,6 +50959,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -45094,7 +51220,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -45122,6 +51280,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -45248,7 +51424,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -45264,6 +51460,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -45807,6 +52015,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -45822,6 +52050,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -46063,7 +52303,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -46079,6 +52339,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -46277,7 +52549,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -46293,6 +52585,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -46563,7 +52867,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -46591,6 +52927,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -46757,7 +53111,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -46773,6 +53147,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -47308,7 +53694,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -47336,6 +53754,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -47481,7 +53917,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -47497,6 +53953,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -48005,7 +54473,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -48021,6 +54509,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -48064,7 +54564,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -48080,6 +54600,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -48195,6 +54727,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -48210,6 +54762,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -48451,7 +55015,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -48467,6 +55051,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -48665,7 +55261,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -48681,6 +55297,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -48894,7 +55522,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "auto", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -48910,6 +55558,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -49190,7 +55850,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -49206,6 +55886,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -49265,7 +55957,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -49281,6 +55993,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -49402,6 +56126,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -49417,6 +56161,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -49658,7 +56414,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -49674,6 +56450,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -49872,7 +56660,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -49888,6 +56696,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -50125,7 +56945,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -50141,6 +56981,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -50201,7 +57053,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "auto", + "editType": "plot", + "valType": "string" + }, "size": { "editType": "plot", "min": 1, @@ -50217,6 +57089,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -50336,6 +57220,28 @@ "strict": true, "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -50353,6 +57259,19 @@ "italic" ] }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -50592,7 +57511,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -50620,6 +57571,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -50734,7 +57703,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -50762,6 +57763,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -50857,7 +57876,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -50873,6 +57912,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -51106,7 +58157,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -51134,6 +58217,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -51261,7 +58362,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -51289,6 +58422,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -51405,7 +58556,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -51433,6 +58616,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -51674,7 +58875,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -51702,6 +58935,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -51804,7 +59055,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -51820,6 +59091,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -52250,7 +59533,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -52278,6 +59593,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -52364,7 +59697,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -52380,6 +59733,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -52602,7 +59967,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -52630,6 +60027,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -52917,7 +60332,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -52945,6 +60392,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -53139,7 +60604,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "auto", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -53155,6 +60640,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -53713,7 +61210,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -53741,6 +61270,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -53867,7 +61414,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -53883,6 +61450,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -54102,6 +61681,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -54117,6 +61716,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -54358,7 +61969,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -54374,6 +62005,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -54572,7 +62215,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -54588,6 +62251,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -55587,7 +63262,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -55615,6 +63322,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -56360,7 +64085,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -56388,6 +64145,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -56504,7 +64279,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -56520,6 +64315,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -56641,6 +64448,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -56656,6 +64483,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -56897,7 +64736,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -56913,6 +64772,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -57111,7 +64982,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -57127,6 +65018,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -57360,6 +65263,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -57375,6 +65298,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -57616,7 +65551,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -57632,6 +65587,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -57830,7 +65797,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -57846,6 +65833,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -58752,7 +66751,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -58780,6 +66811,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -58905,7 +66954,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -58921,6 +66990,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -59125,6 +67206,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -59140,6 +67241,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -59381,7 +67494,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -59397,6 +67530,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -59595,7 +67740,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -59611,6 +67776,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -60575,7 +68752,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -60603,6 +68812,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -60924,7 +69151,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -60952,6 +69211,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -61078,7 +69355,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -61094,6 +69391,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -61300,6 +69609,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -61315,6 +69644,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -61556,7 +69897,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -61572,6 +69933,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -61770,7 +70143,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -61786,6 +70179,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -62743,7 +71148,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -62771,6 +71208,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -63268,7 +71723,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -63296,6 +71783,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -63412,7 +71917,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -63428,6 +71953,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -63604,6 +72141,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -63619,6 +72176,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -63860,7 +72429,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -63876,6 +72465,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -64074,7 +72675,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -64090,6 +72711,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -65529,7 +74162,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -65557,6 +74222,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -65683,7 +74366,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -65699,6 +74402,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -65864,6 +74579,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -65879,6 +74614,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -66120,7 +74867,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -66136,6 +74903,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -66334,7 +75113,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -66350,6 +75149,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -66949,7 +75760,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -66977,6 +75820,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -67102,7 +75963,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -67118,6 +75999,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -67322,6 +76215,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -67337,6 +76250,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -67578,7 +76503,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -67594,6 +76539,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -67792,7 +76749,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -67808,6 +76785,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -68793,7 +77782,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -68821,6 +77842,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -69147,7 +78186,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -69175,6 +78246,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -69291,7 +78380,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -69307,6 +78416,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -69470,6 +78591,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -69485,6 +78626,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -69726,7 +78879,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -69742,6 +78915,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -69940,7 +79125,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -69956,6 +79161,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -71229,7 +80446,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -71257,6 +80506,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -71392,7 +80659,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -71408,6 +80695,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -71612,6 +80911,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -71627,6 +80946,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -71868,7 +81199,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -71884,6 +81235,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -72082,7 +81445,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -72098,6 +81481,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -73077,7 +82472,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -73105,6 +82532,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -73426,7 +82871,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -73454,6 +82931,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -73579,7 +83074,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -73595,6 +83110,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -73799,6 +83326,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -73814,6 +83361,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -74055,7 +83614,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -74071,6 +83650,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -74269,7 +83860,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -74285,6 +83896,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -75262,7 +84885,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -75290,6 +84945,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -75624,7 +85297,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -75652,6 +85357,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -75768,7 +85491,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -75784,6 +85527,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -75917,6 +85672,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -75932,6 +85707,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -76173,7 +85960,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -76189,6 +85996,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -76387,7 +86206,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -76403,6 +86242,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -77458,6 +87309,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -77473,6 +87344,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -77714,7 +87597,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -77730,6 +87633,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -77928,7 +87843,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -77944,6 +87879,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -78168,7 +88115,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -78196,6 +88175,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -78306,7 +88303,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -78322,6 +88339,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -78897,7 +88926,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -78925,6 +88986,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -79040,7 +89119,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -79068,6 +89179,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -79162,7 +89291,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -79178,6 +89327,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -79299,6 +89460,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -79314,6 +89495,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -79555,7 +89748,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -79571,6 +89784,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -79769,7 +89994,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -79785,6 +90030,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -80106,7 +90363,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -80134,6 +90423,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -80255,7 +90562,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -80283,6 +90622,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -80503,6 +90860,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -80518,6 +90895,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -80759,7 +91148,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -80775,6 +91184,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -80973,7 +91394,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -80989,6 +91430,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -81497,7 +91950,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -81525,6 +92010,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -81641,7 +92144,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -81657,6 +92180,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -82087,7 +92622,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -82115,6 +92682,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -82392,7 +92977,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -82420,6 +93037,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -82630,7 +93265,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -82658,6 +93325,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -82744,7 +93429,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -82760,6 +93465,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -83064,7 +93781,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -83092,6 +93841,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -83207,7 +93974,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -83235,6 +94034,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -83306,7 +94123,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -83322,6 +94159,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -83443,6 +94292,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -83458,6 +94327,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -83699,7 +94580,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -83715,6 +94616,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -83913,7 +94826,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "colorbars", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "colorbars", + "valType": "string" + }, "size": { "editType": "colorbars", "min": 1, @@ -83929,6 +94862,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "colorbars", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -84295,7 +95240,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -84323,6 +95300,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -84424,7 +95419,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -84452,6 +95479,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -84570,7 +95615,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "plot", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "plot", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "plot", @@ -84598,6 +95675,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "plot", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -84952,7 +96047,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -84980,6 +96107,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -85117,7 +96262,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -85133,6 +96298,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -86269,6 +97446,26 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -86284,6 +97481,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -86525,7 +97734,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -86541,6 +97770,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -86739,7 +97980,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, "size": { "editType": "calc", "min": 1, @@ -86755,6 +98016,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -87004,7 +98277,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -87032,6 +98337,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -87158,7 +98481,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -87174,6 +98517,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -87873,7 +99228,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "none", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "none", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "none", @@ -87901,6 +99288,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "none", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -88058,7 +99463,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -88086,6 +99523,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -88153,7 +99608,27 @@ "strict": true, "valType": "string" }, + "lineposition": { + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "style", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, "role": "object", + "shadow": { + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "style", + "valType": "string" + }, "size": { "editType": "style", "min": 1, @@ -88169,6 +99644,18 @@ "italic" ] }, + "textcase": { + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "style", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, "variant": { "description": "Sets the variant of the font.", "dflt": "normal", @@ -88304,7 +99791,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -88332,6 +99851,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.", @@ -88440,7 +99977,39 @@ "editType": "none", "valType": "string" }, + "lineposition": { + "arrayOk": true, + "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.", + "dflt": "none", + "editType": "calc", + "extras": [ + "none" + ], + "flags": [ + "under", + "over", + "through" + ], + "valType": "flaglist" + }, + "linepositionsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `lineposition`.", + "editType": "none", + "valType": "string" + }, "role": "object", + "shadow": { + "arrayOk": true, + "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.", + "dflt": "none", + "editType": "calc", + "valType": "string" + }, + "shadowsrc": { + "description": "Sets the source reference on Chart Studio Cloud for `shadow`.", + "editType": "none", + "valType": "string" + }, "size": { "arrayOk": true, "editType": "calc", @@ -88468,6 +100037,24 @@ "editType": "none", "valType": "string" }, + "textcase": { + "arrayOk": true, + "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.", + "dflt": "normal", + "editType": "calc", + "valType": "enumerated", + "values": [ + "normal", + "word caps", + "upper", + "lower" + ] + }, + "textcasesrc": { + "description": "Sets the source reference on Chart Studio Cloud for `textcase`.", + "editType": "none", + "valType": "string" + }, "variant": { "arrayOk": true, "description": "Sets the variant of the font.",