diff --git a/draftlogs/6990_add.md b/draftlogs/6990_add.md new file mode 100644 index 00000000000..a5ad50b1e49 --- /dev/null +++ b/draftlogs/6990_add.md @@ -0,0 +1 @@ + - Add support for numeric text font `weight` [[#6990](https://github.com/plotly/plotly.js/pull/6990)] diff --git a/src/lib/coerce.js b/src/lib/coerce.js index 9d242e8385e..33b73b5143e 100644 --- a/src/lib/coerce.js +++ b/src/lib/coerce.js @@ -100,6 +100,8 @@ exports.valObjectMeta = { requiredOpts: [], otherOpts: ['dflt', 'min', 'max', 'arrayOk'], coerceFunction: function(v, propOut, dflt, opts) { + if(isTypedArraySpec(v)) v = decodeTypedArraySpec(v); + if(!isNumeric(v) || (opts.min !== undefined && v < opts.min) || (opts.max !== undefined && v > opts.max)) { @@ -114,8 +116,15 @@ exports.valObjectMeta = { 'are coerced to the `dflt`.' ].join(' '), requiredOpts: [], - otherOpts: ['dflt', 'min', 'max', 'arrayOk'], + otherOpts: ['dflt', 'min', 'max', 'arrayOk', 'extras'], coerceFunction: function(v, propOut, dflt, opts) { + if((opts.extras || []).indexOf(v) !== -1) { + propOut.set(v); + return; + } + + if(isTypedArraySpec(v)) v = decodeTypedArraySpec(v); + if(v % 1 || !isNumeric(v) || (opts.min !== undefined && v < opts.min) || (opts.max !== undefined && v > opts.max)) { @@ -156,6 +165,8 @@ exports.valObjectMeta = { requiredOpts: [], otherOpts: ['dflt', 'arrayOk'], coerceFunction: function(v, propOut, dflt) { + if(isTypedArraySpec(v)) v = decodeTypedArraySpec(v); + if(tinycolor(v).isValid()) propOut.set(v); else propOut.set(dflt); } @@ -198,6 +209,8 @@ exports.valObjectMeta = { requiredOpts: [], otherOpts: ['dflt', 'arrayOk'], coerceFunction: function(v, propOut, dflt) { + if(isTypedArraySpec(v)) v = decodeTypedArraySpec(v); + if(v === 'auto') propOut.set('auto'); else if(!isNumeric(v)) propOut.set(dflt); else propOut.set(modHalf(+v, 360)); diff --git a/src/plots/font_attributes.js b/src/plots/font_attributes.js index 0a3ea20c6f2..b2426408942 100644 --- a/src/plots/font_attributes.js +++ b/src/plots/font_attributes.js @@ -20,6 +20,27 @@ module.exports = function(opts) { var editType = opts.editType; var colorEditType = opts.colorEditType; if(colorEditType === undefined) colorEditType = editType; + + var weight = { + editType: editType, + valType: 'integer', + min: 1, + max: 1000, + extras: ['normal', 'bold'], + dflt: 'normal', + description: [ + 'Sets the weight (or boldness) of the font.' + ].join(' ') + }; + + if(opts.noNumericWeightValues) { + weight.valType = 'enumerated'; + weight.values = weight.extras; + weight.extras = undefined; + weight.min = undefined; + weight.max = undefined; + } + var attrs = { family: { valType: 'string', @@ -49,15 +70,7 @@ module.exports = function(opts) { editType: colorEditType }, - weight: { - editType: editType, - valType: 'enumerated', - values: ['normal', 'bold'], - dflt: 'normal', - description: [ - 'Sets the weight (or boldness) of the font.' - ].join(' ') - }, + weight: weight, style: { editType: editType, diff --git a/src/snapshot/tosvg.js b/src/snapshot/tosvg.js index 2c3a288945c..1f39394b69e 100644 --- a/src/snapshot/tosvg.js +++ b/src/snapshot/tosvg.js @@ -107,7 +107,7 @@ module.exports = function toSVG(gd, format, scale) { // Drop normal font-weight, font-style and font-variant to reduce the size var fw = this.style.fontWeight; - if(fw && fw === 'normal') { + if(fw && (fw === 'normal' || fw === '400')) { // font-weight 400 is similar to normal txt.style('font-weight', undefined); } var fs = this.style.fontStyle; diff --git a/src/traces/scattergl/attributes.js b/src/traces/scattergl/attributes.js index bd011fbaa62..44ae70cf7e0 100644 --- a/src/traces/scattergl/attributes.js +++ b/src/traces/scattergl/attributes.js @@ -41,6 +41,7 @@ var attrs = module.exports = overrideAll({ editType: 'calc', colorEditType: 'style', arrayOk: true, + noNumericWeightValues: true, variantValues: ['normal', 'small-caps'], description: 'Sets the text font.' }), diff --git a/src/traces/scattergl/convert.js b/src/traces/scattergl/convert.js index ccdcf7eacd8..ed4cac9b55e 100644 --- a/src/traces/scattergl/convert.js +++ b/src/traces/scattergl/convert.js @@ -190,7 +190,7 @@ function convertTextStyle(gd, trace) { if( isArrayOrTypedArray(tfs) || Array.isArray(tff) || - Array.isArray(tfw) || + isArrayOrTypedArray(tfw) || Array.isArray(tfy) || Array.isArray(tfv) ) { @@ -207,7 +207,7 @@ function convertTextStyle(gd, trace) { ) * plotGlPixelRatio; fonti.family = Array.isArray(tff) ? tff[i] : tff; - fonti.weight = Array.isArray(tfw) ? tfw[i] : tfw; + fonti.weight = weightFallBack(isArrayOrTypedArray(tfw) ? tfw[i] : tfw); fonti.style = Array.isArray(tfy) ? tfy[i] : tfy; fonti.variant = Array.isArray(tfv) ? tfv[i] : tfv; } @@ -216,7 +216,7 @@ function convertTextStyle(gd, trace) { optsOut.font = { size: tfs * plotGlPixelRatio, family: tff, - weight: tfw, + weight: weightFallBack(tfw), style: tfy, variant: tfv }; @@ -225,6 +225,14 @@ function convertTextStyle(gd, trace) { return optsOut; } +// scattergl rendering pipeline has limited support of numeric weight values +// Here we map the numbers to be either bold or normal. +function weightFallBack(w) { + if(w <= 1000) { + return w > 500 ? 'bold' : 'normal'; + } + return w; +} function convertMarkerStyle(gd, trace) { var count = trace._length; diff --git a/src/traces/scattermapbox/constants.js b/src/traces/scattermapbox/constants.js new file mode 100644 index 00000000000..001af34023e --- /dev/null +++ b/src/traces/scattermapbox/constants.js @@ -0,0 +1,45 @@ +'use strict'; + +// Must use one of the following fonts as the family, else default to 'Open Sans Regular' +// See https://github.com/openmaptiles/fonts/blob/gh-pages/fontstacks.json +var supportedFonts = [ + 'Metropolis Black Italic', + 'Metropolis Black', + 'Metropolis Bold Italic', + 'Metropolis Bold', + 'Metropolis Extra Bold Italic', + 'Metropolis Extra Bold', + 'Metropolis Extra Light Italic', + 'Metropolis Extra Light', + 'Metropolis Light Italic', + 'Metropolis Light', + 'Metropolis Medium Italic', + 'Metropolis Medium', + 'Metropolis Regular Italic', + 'Metropolis Regular', + 'Metropolis Semi Bold Italic', + 'Metropolis Semi Bold', + 'Metropolis Thin Italic', + 'Metropolis Thin', + 'Open Sans Bold Italic', + 'Open Sans Bold', + 'Open Sans Extrabold Italic', + 'Open Sans Extrabold', + 'Open Sans Italic', + 'Open Sans Light Italic', + 'Open Sans Light', + 'Open Sans Regular', + 'Open Sans Semibold Italic', + 'Open Sans Semibold', + 'Klokantech Noto Sans Bold', + 'Klokantech Noto Sans CJK Bold', + 'Klokantech Noto Sans CJK Regular', + 'Klokantech Noto Sans Italic', + 'Klokantech Noto Sans Regular' +]; + +module.exports = { + isSupportedFont: function(a) { + return supportedFonts.indexOf(a) !== -1; + } +}; diff --git a/src/traces/scattermapbox/convert.js b/src/traces/scattermapbox/convert.js index 806d190444b..dcf174c314e 100644 --- a/src/traces/scattermapbox/convert.js +++ b/src/traces/scattermapbox/convert.js @@ -10,6 +10,7 @@ var Colorscale = require('../../components/colorscale'); var Drawing = require('../../components/drawing'); var makeBubbleSizeFn = require('../scatter/make_bubble_size_func'); var subTypes = require('../scatter/subtypes'); +var isSupportedFont = require('./constants').isSupportedFont; var convertTextOpts = require('../../plots/mapbox/convert_text_opts'); var appendArrayPointValue = require('../../components/fx/helpers').appendArrayPointValue; @@ -369,11 +370,58 @@ function arrayifyAttribute(values, step) { function getTextFont(trace) { var font = trace.textfont; - var str = ''; - if(font.weight === 'bold') str += ' Bold'; - if(font.style === 'italic') str += ' Italic'; - var textFont = font.family; - if(str) textFont = textFont.replace(' Regular', str); - textFont = textFont.split(', '); + var family = font.family; + var style = font.style; + var weight = font.weight; + + var parts = family.split(' '); + var isItalic = parts[parts.length - 1] === 'Italic'; + if(isItalic) parts.pop(); + isItalic = isItalic || style === 'italic'; + + var str = parts.join(' '); + if(weight === 'bold' && parts.indexOf('Bold') === -1) { + str += ' Bold'; + } else if(weight <= 1000) { // numeric font-weight + // See supportedFonts + + if(parts[0] === 'Metropolis') { + str = 'Metropolis'; + if(weight > 850) str += ' Black'; + else if(weight > 750) str += ' Extra Bold'; + else if(weight > 650) str += ' Bold'; + else if(weight > 550) str += ' Semi Bold'; + else if(weight > 450) str += ' Medium'; + else if(weight > 350) str += ' Regular'; + else if(weight > 250) str += ' Light'; + else if(weight > 150) str += ' Extra Light'; + else str += ' Thin'; + } else if(parts.slice(0, 2).join(' ') === 'Open Sans') { + str = 'Open Sans'; + if(weight > 750) str += ' Extrabold'; + else if(weight > 650) str += ' Bold'; + else if(weight > 550) str += ' Semibold'; + else if(weight > 350) str += ' Regular'; + else str += ' Light'; + } else if(parts.slice(0, 3).join(' ') === 'Klokantech Noto Sans') { + str = 'Klokantech Noto Sans'; + if(parts[3] === 'CJK') str += ' CJK'; + str += (weight > 500) ? ' Bold' : ' Regular'; + } + } + + if(isItalic) str += ' Italic'; + + if(str === 'Open Sans Regular Italic') str = 'Open Sans Italic'; + else if(str === 'Open Sans Regular Bold') str = 'Open Sans Bold'; + else if(str === 'Open Sans Regular Bold Italic') str = 'Open Sans Bold Italic'; + else if(str === 'Klokantech Noto Sans Regular Italic') str = 'Klokantech Noto Sans Italic'; + + // Ensure the result is a supported font + if(!isSupportedFont(str)) { + str = family; + } + + var textFont = str.split(', '); return textFont; } diff --git a/src/traces/scattermapbox/defaults.js b/src/traces/scattermapbox/defaults.js index a85816fa46b..4816dc65e91 100644 --- a/src/traces/scattermapbox/defaults.js +++ b/src/traces/scattermapbox/defaults.js @@ -8,44 +8,7 @@ var handleLineDefaults = require('../scatter/line_defaults'); var handleTextDefaults = require('../scatter/text_defaults'); var handleFillColorDefaults = require('../scatter/fillcolor_defaults'); var attributes = require('./attributes'); - -// Must use one of the following fonts as the family, else default to 'Open Sans Regular' -// See https://github.com/openmaptiles/fonts/blob/gh-pages/fontstacks.json -var supportedFonts = [ - 'Metropolis Black Italic', - 'Metropolis Black', - 'Metropolis Bold Italic', - 'Metropolis Bold', - 'Metropolis Extra Bold Italic', - 'Metropolis Extra Bold', - 'Metropolis Extra Light Italic', - 'Metropolis Extra Light', - 'Metropolis Light Italic', - 'Metropolis Light', - 'Metropolis Medium Italic', - 'Metropolis Medium', - 'Metropolis Regular Italic', - 'Metropolis Regular', - 'Metropolis Semi Bold Italic', - 'Metropolis Semi Bold', - 'Metropolis Thin Italic', - 'Metropolis Thin', - 'Open Sans Bold Italic', - 'Open Sans Bold', - 'Open Sans Extra Bold Italic', - 'Open Sans Extra Bold', - 'Open Sans Italic', - 'Open Sans Light Italic', - 'Open Sans Light', - 'Open Sans Regular', - 'Open Sans Semibold Italic', - 'Open Sans Semibold', - 'Klokantech Noto Sans Bold', - 'Klokantech Noto Sans CJK Bold', - 'Klokantech Noto Sans CJK Regular', - 'Klokantech Noto Sans Italic', - 'Klokantech Noto Sans Regular' -]; +var isSupportedFont = require('./constants').isSupportedFont; module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout) { function coerce(attr, dflt) { @@ -104,12 +67,14 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout var clusterEnabled = coerce('cluster.enabled', clusterEnabledDflt); if(clusterEnabled || subTypes.hasText(traceOut)) { + var layoutFontFamily = layout.font.family; + handleTextDefaults(traceIn, traceOut, layout, coerce, { noSelect: true, noFontVariant: true, font: { - family: supportedFonts.indexOf(layout.font.family) !== -1 ? layout.font.family : 'Open Sans Regular', + family: isSupportedFont(layoutFontFamily) ? layoutFontFamily : 'Open Sans Regular', weight: layout.font.weight, style: layout.font.style, size: layout.font.size, diff --git a/stackgl_modules/index.js b/stackgl_modules/index.js index d6332ee3508..5d4e082da6e 100644 --- a/stackgl_modules/index.js +++ b/stackgl_modules/index.js @@ -11905,6 +11905,17 @@ var identity = new Float32Array([ 0, 0, 1, 0, 0, 0, 0, 1]) +var ab = ArrayBuffer +var dv = DataView + +function isTypedArray(a) { + return ab.isView(a) && !(a instanceof dv) +} + +function isArrayOrTypedArray(a) { + return Array.isArray(a) || isTypedArray(a) +} + function copyVec3(a, b) { a[0] = b[0] a[1] = b[1] @@ -11992,8 +12003,8 @@ proto.update = function(options) { var opt = options[name] var prev = this[name] var next - if(nest ? (Array.isArray(opt) && Array.isArray(opt[0])) : - Array.isArray(opt) ) { + if(nest ? (isArrayOrTypedArray(opt) && isArrayOrTypedArray(opt[0])) : + isArrayOrTypedArray(opt) ) { this[name] = next = [ cons(opt[0]), cons(opt[1]), cons(opt[2]) ] } else { this[name] = next = [ cons(opt), cons(opt), cons(opt) ] @@ -12011,7 +12022,7 @@ proto.update = function(options) { var BOOLEAN = parseOption.bind(this, false, Boolean) var STRING = parseOption.bind(this, false, String) var COLOR = parseOption.bind(this, true, function(v) { - if(Array.isArray(v)) { + if(isArrayOrTypedArray(v)) { if(v.length === 3) { return [ +v[0], +v[1], +v[2], 1.0 ] } else if(v.length === 4) { @@ -21678,6 +21689,17 @@ var IDENTITY = [1,0,0,0, 0,0,1,0, 0,0,0,1] +var ab = ArrayBuffer +var dv = DataView + +function isTypedArray(a) { + return ab.isView(a) && !(a instanceof dv) +} + +function isArrayOrTypedArray(a) { + return Array.isArray(a) || isTypedArray(a) +} + module.exports = createPointCloud function transformMat4(x, m) { @@ -22065,7 +22087,7 @@ function get_glyphData(glyphs, index, font, pixelRatio) { var str // use the data if presented in an array - if(Array.isArray(glyphs)) { + if(isArrayOrTypedArray(glyphs)) { if(index < glyphs.length) { str = glyphs[index] } else { @@ -22086,19 +22108,19 @@ function get_glyphData(glyphs, index, font, pixelRatio) { if(!font) font = {} var family = font.family - if(Array.isArray(family)) family = family[index] + if(isArrayOrTypedArray(family)) family = family[index] if(!family) family = "normal" var weight = font.weight - if(Array.isArray(weight)) weight = weight[index] + if(isArrayOrTypedArray(weight)) weight = weight[index] if(!weight) weight = "normal" var style = font.style - if(Array.isArray(style)) style = style[index] + if(isArrayOrTypedArray(style)) style = style[index] if(!style) style = "normal" var variant = font.variant - if(Array.isArray(variant)) variant = variant[index] + if(isArrayOrTypedArray(variant)) variant = variant[index] if(!variant) variant = "normal" var glyph = getGlyph(str, { @@ -22133,7 +22155,7 @@ proto.update = function(options) { this.lineWidth = options.lineWidth } if('project' in options) { - if(Array.isArray(options.project)) { + if(isArrayOrTypedArray(options.project)) { this.axesProject = options.project } else { var v = !!options.project @@ -22141,7 +22163,7 @@ proto.update = function(options) { } } if('projectScale' in options) { - if(Array.isArray(options.projectScale)) { + if(isArrayOrTypedArray(options.projectScale)) { this.projectScale = options.projectScale.slice() } else { var s = +options.projectScale @@ -22151,7 +22173,7 @@ proto.update = function(options) { this.projectHasAlpha = false // default to no transparent draw if('projectOpacity' in options) { - if(Array.isArray(options.projectOpacity)) { + if(isArrayOrTypedArray(options.projectOpacity)) { this.projectOpacity = options.projectOpacity.slice() } else { var s = +options.projectOpacity @@ -22262,8 +22284,8 @@ proto.update = function(options) { var color = [0,0,0,1] var lineColor = [0,0,0,1] - var isColorArray = Array.isArray(colors) && Array.isArray(colors[0]) - var isLineColorArray = Array.isArray(lineColors) && Array.isArray(lineColors[0]) + var isColorArray = isArrayOrTypedArray(colors) && isArrayOrTypedArray(colors[0]) + var isLineColorArray = isArrayOrTypedArray(lineColors) && isArrayOrTypedArray(lineColors[0]) fill_loop: for(var i=0; i Normal", + "100 --> Normal", + "200 --> Normal", + "300 --> Normal", + "400 --> Normal", + "500 --> Normal", + "600 --> Bold", + "700 --> Bold", + "800 --> Bold", + "900 --> Bold", + "950 --> Bold", + "1000 --> Bold" + ], + "textfont": { + "family": "Inter", + "size": 16, + "weight": [ + 1, + 100, + 200, + 300, + 400, + 500, + 600, + 700, + 800, + 900, + 950, + 1000 + ] + }, + "x": [0, 0, 0, 0, 0, 0,0, 0, 0, 0, 0, 0], + "y": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] + } + ], + "layout": { + "showlegend": false, + "margin": { + "l": 0, + "r": 0, + "t": 0, + "b": 0 + }, + "xaxis": { + "range": [-1, 1], + "showticklabels": false, + "showgrid": false, + "zeroline": false + }, + "yaxis": { + "range": [11.5, -0.5], + "showticklabels": false, + "showgrid": false, + "zeroline": false + }, + "width": 400, + "height": 600, + "hovermode": "closest" + } +} diff --git a/test/image/mocks/zz-gl3d_font-weight-scatter.json b/test/image/mocks/zz-gl3d_font-weight-scatter.json new file mode 100644 index 00000000000..691513ca9e2 --- /dev/null +++ b/test/image/mocks/zz-gl3d_font-weight-scatter.json @@ -0,0 +1,123 @@ +{ + "data": [ + { + "type": "scatter3d", + "hovertemplate": "Difficult -0.123456789 | %{text}", + "texttemplate": "Difficult -0.123456789 | %{text}", + "mode": "text", + "text": [ + "1 Minimum", + "100 Thin (Hairline)", + "200 Extra Light (Ultra Light)", + "300 Light", + "400 Normal (Regular)", + "500 Medium", + "600 Semi Bold (Demi Bold)", + "700 Bold", + "800 Extra Bold (Ultra Bold)", + "900 Black (Heavy)", + "950 Extra Black (Ultra Black)", + "1000 Maximum" + ], + "textfont": { + "family": "Inter", + "size": 16, + "weight": [ + 1, + 100, + 200, + 300, + 400, + 500, + 600, + 700, + 800, + 900, + 950, + 1000 + ] + }, + "z": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "x": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "y": [-5.5, -4.5, -3.5, -2.5, -1.5, -0.5, 0.5, 1.5, 2.5, 3.5, 4.5, 5.5] + } + ], + "layout": { + "showlegend": false, + "margin": { + "l": 0, + "r": 0, + "t": 0, + "b": 0 + }, + "scene": { + "xaxis": { + "title": { + "text": "X", + "font": { + "size": 20, + "color": "red", + "weight": 800 + } + }, + "showticklabels": false, + "showgrid": false, + "zeroline": false + }, + "yaxis": { + "title": { + "text": "Y", + "font": { + "size": 16, + "color": "blue", + "weight": 400 + } + }, + "showticklabels": false, + "showgrid": false, + "zeroline": false + }, + "zaxis": { + "title": { + "text": "Z", + "font": { + "size": 12, + "color": "green", + "weight": 200 + } + }, + "showticklabels": false, + "showgrid": false, + "zeroline": false + }, + "aspectratio": { + "x": 1.5, + "y": 1.5, + "z": 1.5 + }, + "camera": { + "projection": { + "type": "orthographic" + }, + "eye": { + "x": 0, + "y": 0, + "z": 10 + }, + "center": { + "x": 0, + "y": 0, + "z": 0 + }, + "up": { + "x": 0, + "y": 1, + "z": 0 + } + } + }, + "width": 400, + "height": 400, + "hovermode": "closest" + } +} diff --git a/test/plot-schema.json b/test/plot-schema.json index b96220e0211..dd15d4c3419 100644 --- a/test/plot-schema.json +++ b/test/plot-schema.json @@ -524,7 +524,8 @@ "dflt", "min", "max", - "arrayOk" + "arrayOk", + "extras" ], "requiredOpts": [] }, @@ -647,11 +648,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "layoutstyle", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } } }, @@ -872,11 +875,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc+arraydraw", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "height": { @@ -946,11 +951,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "arraydraw", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object" @@ -1275,11 +1282,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -1530,11 +1539,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -1742,11 +1753,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -2049,11 +2062,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "geo": { @@ -2855,11 +2870,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "grouptitlefont": { @@ -2910,11 +2927,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "namelength": { @@ -3161,11 +3180,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "legend", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "groupclick": { @@ -3226,11 +3247,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "legend", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "indentation": { @@ -3340,11 +3363,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "legend", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -3770,11 +3795,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "textposition": { @@ -4117,11 +4144,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "padding": { @@ -4265,11 +4294,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -4678,11 +4709,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -4978,11 +5011,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "ticks", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } } }, @@ -5425,11 +5460,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -5608,11 +5645,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "ticks", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -5830,11 +5869,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "height": { @@ -5904,11 +5945,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object" @@ -6338,11 +6381,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } } }, @@ -6787,11 +6832,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -6963,11 +7010,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -7068,11 +7117,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } } }, @@ -7517,11 +7568,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -7693,11 +7746,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -7798,11 +7853,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } } }, @@ -8247,11 +8304,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -8423,11 +8482,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -8684,11 +8745,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc+arraydraw", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "padding": { @@ -8832,11 +8895,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc+arraydraw", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -9105,11 +9170,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "arraydraw", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "offset": { @@ -9196,11 +9263,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "arraydraw", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "len": { @@ -9706,11 +9775,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -9955,11 +10026,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -10098,11 +10171,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } } }, @@ -10347,11 +10422,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -10530,11 +10607,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -10604,11 +10683,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } } }, @@ -10853,11 +10934,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -11036,11 +11119,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -11116,11 +11201,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } } }, @@ -11365,11 +11452,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -11548,11 +11637,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -11703,11 +11794,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "layoutstyle", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "pad": { @@ -12080,11 +12173,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "arraydraw", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "name": { @@ -12258,11 +12353,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "ticks", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } } }, @@ -13021,11 +13118,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -13388,11 +13487,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "ticks", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -13620,11 +13721,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "ticks", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -13742,11 +13845,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "ticks", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } } }, @@ -14595,11 +14700,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "ticks", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -14827,11 +14934,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "ticks", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -15307,11 +15416,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -15459,11 +15570,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -15533,11 +15646,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -15667,11 +15782,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -15922,11 +16039,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -16134,11 +16253,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -16584,11 +16705,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -16747,11 +16870,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -17267,11 +17392,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -17390,11 +17517,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -17524,11 +17653,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -17779,11 +17910,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -17991,11 +18124,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -18766,11 +18901,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -18906,11 +19043,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -20227,11 +20366,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -20370,11 +20511,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -20729,11 +20872,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleoffset": { @@ -21145,11 +21290,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -21295,11 +21442,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "offset": { @@ -21399,11 +21548,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleoffset": { @@ -21815,11 +21966,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -21965,11 +22118,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "offset": { @@ -22094,11 +22249,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "ids": { @@ -22168,11 +22325,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -22386,11 +22545,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -22641,11 +22802,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -22853,11 +23016,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -23121,11 +23286,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -23244,11 +23411,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -23601,11 +23770,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -23856,11 +24027,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -24068,11 +24241,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -24330,11 +24505,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -24453,11 +24630,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -24845,11 +25024,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -25100,11 +25281,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -25312,11 +25495,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -25568,11 +25753,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -25691,11 +25878,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -26108,11 +26297,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -26363,11 +26554,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -26575,11 +26768,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -26753,11 +26948,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "labelformat": { @@ -27013,11 +27210,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -27140,11 +27339,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -27327,11 +27528,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "textsrc": { @@ -27785,11 +27988,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -28040,11 +28245,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -28252,11 +28459,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -28424,11 +28633,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "labelformat": { @@ -28622,11 +28833,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -28947,11 +29160,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -29202,11 +29417,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -29414,11 +29631,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -29666,11 +29885,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -29799,11 +30020,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -30255,11 +30478,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -30406,11 +30631,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -30480,11 +30707,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -30614,11 +30843,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -30869,11 +31100,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -31081,11 +31314,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -31427,11 +31662,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -31561,11 +31798,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -32055,11 +32294,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -32195,11 +32436,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -32285,11 +32528,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -32587,11 +32832,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -32727,11 +32974,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -32905,11 +33154,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -33160,11 +33411,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -33372,11 +33625,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -33647,11 +33902,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -33774,11 +34031,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -33917,11 +34176,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "textsrc": { @@ -34331,11 +34592,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -34586,11 +34849,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -34798,11 +35063,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -35068,11 +35335,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -35161,11 +35430,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -35891,11 +36162,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -36011,11 +36284,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "legend": { @@ -36080,11 +36355,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -36214,11 +36491,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -36469,11 +36748,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -36681,11 +36962,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -37101,11 +37384,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "selected": { @@ -37228,11 +37513,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "textposition": { @@ -37606,11 +37893,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -37861,11 +38150,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -38073,11 +38364,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -38351,11 +38644,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -38462,11 +38757,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -38628,11 +38925,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "texttemplate": { @@ -38998,11 +39297,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -39253,11 +39554,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -39465,11 +39768,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -39638,11 +39943,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "labelformat": { @@ -39901,11 +40208,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -40012,11 +40321,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -40223,11 +40534,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "texttemplate": { @@ -40717,11 +41030,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -40858,11 +41173,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -40947,11 +41264,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -41081,11 +41400,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -41336,11 +41657,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -41548,11 +41871,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -41902,11 +42227,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -42029,11 +42356,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -42173,11 +42502,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -42512,11 +42843,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -42627,11 +42960,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -42931,11 +43266,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "increasing": { @@ -43237,11 +43574,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -43612,11 +43951,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -43716,11 +44057,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "prefix": { @@ -43822,11 +44165,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -44047,11 +44392,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -44302,11 +44649,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -44514,11 +44863,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -44796,11 +45147,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -44929,11 +45282,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -45485,11 +45840,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -45740,11 +46097,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -45952,11 +46311,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -46255,11 +46616,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -46428,11 +46791,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -46996,11 +47361,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -47148,11 +47515,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -47670,11 +48039,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "legendgrouptitle": { @@ -47727,11 +48098,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -47855,11 +48228,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -48110,11 +48485,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -48322,11 +48699,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -48549,11 +48928,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "transforms": { @@ -48843,11 +49224,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "labelside": { @@ -48916,11 +49299,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -49050,11 +49435,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -49305,11 +49692,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -49517,11 +49906,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -49768,11 +50159,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "stream": { @@ -49842,11 +50235,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "transforms": { @@ -49978,11 +50373,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleposition": { @@ -50248,11 +50645,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -50388,11 +50787,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -50490,11 +50891,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -50756,11 +51159,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -50909,11 +51314,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -51051,11 +51458,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -51318,11 +51727,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -51427,11 +51838,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -51890,11 +52303,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -51983,11 +52398,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -52238,11 +52655,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -52551,11 +52970,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -52752,11 +53173,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "type": "sankey", @@ -53343,11 +53766,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -53476,11 +53901,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -53708,11 +54135,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -53963,11 +54392,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -54175,11 +54606,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -55207,11 +55640,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -55978,11 +56413,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -56101,11 +56538,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -56235,11 +56674,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -56490,11 +56931,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -56702,11 +57145,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -56948,11 +57393,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -57203,11 +57650,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -57415,11 +57864,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -57932,11 +58383,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -58352,11 +58805,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -58484,11 +58939,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -58701,11 +59158,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -58956,11 +59415,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -59168,11 +59629,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -60165,11 +60628,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -60512,11 +60977,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -60645,11 +61112,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -60864,11 +61333,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -61119,11 +61590,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -61331,11 +61804,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -62321,11 +62796,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -62844,11 +63321,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -62967,11 +63446,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -63156,11 +63637,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -63411,11 +63894,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -63623,11 +64108,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -65095,11 +65582,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -65228,11 +65717,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -65406,11 +65897,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -65661,11 +66154,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -65873,11 +66368,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -66194,11 +66691,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "textposition": { @@ -66503,11 +67002,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -66635,11 +67136,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -66852,11 +67355,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -67107,11 +67612,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -67319,11 +67826,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -68337,11 +68846,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -68689,11 +69200,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -68812,11 +69325,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -68988,11 +69503,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -69243,11 +69760,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -69455,11 +69974,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -70761,11 +71282,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -70903,11 +71426,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -71120,11 +71645,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -71375,11 +71902,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -71587,11 +72116,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -72599,11 +73130,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -72946,11 +73479,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -73078,11 +73613,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -73295,11 +73832,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -73550,11 +74089,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -73762,11 +74303,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -74772,11 +75315,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -75132,11 +75677,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -75255,11 +75802,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -75401,11 +75950,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -75656,11 +76207,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -75868,11 +76421,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -76936,11 +77491,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -77191,11 +77748,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -77403,11 +77962,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -77660,11 +78221,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -77777,11 +78340,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -78385,11 +78950,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -78526,11 +79093,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -78627,11 +79196,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -78761,11 +79332,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -79016,11 +79589,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -79228,11 +79803,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -79582,11 +80159,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -79729,11 +80308,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -79955,11 +80536,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -80210,11 +80793,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -80422,11 +81007,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -80963,11 +81550,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -81086,11 +81675,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -81549,11 +82140,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -81852,11 +82445,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -82088,11 +82683,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -82181,11 +82778,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -82518,11 +83117,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -82659,11 +83260,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -82737,11 +83340,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -82871,11 +83476,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -83126,11 +83733,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -83338,11 +83947,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "colorbars", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -83737,11 +84348,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -83864,11 +84477,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -84008,11 +84623,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "plot", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -84388,11 +85005,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -84532,11 +85151,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -85681,11 +86302,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "titleside": { @@ -85936,11 +86559,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "tickformat": { @@ -86148,11 +86773,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -86430,11 +87057,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -86563,11 +87192,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -87295,11 +87926,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "none", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -87478,11 +88111,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -87552,11 +88187,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "style", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" } }, "role": "object", @@ -87720,11 +88357,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.", @@ -87854,11 +88493,13 @@ "description": "Sets the weight (or boldness) of the font.", "dflt": "normal", "editType": "calc", - "valType": "enumerated", - "values": [ + "extras": [ "normal", "bold" - ] + ], + "max": 1000, + "min": 1, + "valType": "integer" }, "weightsrc": { "description": "Sets the source reference on Chart Studio Cloud for `weight`.",