diff --git a/draftlogs/7212_remove.md b/draftlogs/7212_remove.md
new file mode 100644
index 00000000000..54d8ff18561
--- /dev/null
+++ b/draftlogs/7212_remove.md
@@ -0,0 +1 @@
+- Drop support for passing a string to the `title` attribute, and drop support for deprecated attributes `titlefont`, `titleposition`, `titleside`, and `titleoffset` [[#7212](https://github.com/plotly/plotly.js/pull/7212)]
\ No newline at end of file
diff --git a/src/components/colorbar/attributes.js b/src/components/colorbar/attributes.js
index e048f29ad4b..3a562b516a0 100644
--- a/src/components/colorbar/attributes.js
+++ b/src/components/colorbar/attributes.js
@@ -212,19 +212,10 @@ module.exports = overrideAll({
title: {
text: {
valType: 'string',
- description: [
- 'Sets the title of the color bar.',
- 'Note that before the existence of `title.text`, the title\'s',
- 'contents used to be defined as the `title` attribute itself.',
- 'This behavior has been deprecated.'
- ].join(' ')
+ description: 'Sets the title of the color bar.'
},
font: fontAttrs({
- description: [
- 'Sets this color bar\'s title font.',
- 'Note that the title\'s font used to be set',
- 'by the now deprecated `titlefont` attribute.'
- ].join(' ')
+ description: 'Sets this color bar\'s title font.'
}),
side: {
valType: 'enumerated',
@@ -234,29 +225,7 @@ module.exports = overrideAll({
'with respect to the color bar.',
'Defaults to *top* when `orientation` if *v* and ',
'defaults to *right* when `orientation` if *h*.',
- 'Note that the title\'s location used to be set',
- 'by the now deprecated `titleside` attribute.'
].join(' ')
}
},
-
- _deprecated: {
- title: {
- valType: 'string',
- description: [
- 'Deprecated in favor of color bar\'s `title.text`.',
- 'Note that value of color bar\'s `title` is no longer a simple',
- '*string* but a set of sub-attributes.'
- ].join(' ')
- },
- titlefont: fontAttrs({
- description: 'Deprecated in favor of color bar\'s `title.font`.'
- }),
- titleside: {
- valType: 'enumerated',
- values: ['right', 'top', 'bottom'],
- dflt: 'top',
- description: 'Deprecated in favor of color bar\'s `title.side`.'
- }
- }
}, 'colorbars', 'from-root');
diff --git a/src/components/titles/index.js b/src/components/titles/index.js
index 29b562407ef..7cbe5c33c28 100644
--- a/src/components/titles/index.js
+++ b/src/components/titles/index.js
@@ -22,8 +22,8 @@ var SUBTITLE_PADDING_EM = 1.6;
* @param {DOM element} gd - the graphDiv
* @param {string} titleClass - the css class of this title
* @param {object} options - how and what to draw
- * propContainer - the layout object containing `title` and `titlefont`
- * attributes that apply to this title
+ * propContainer - the layout object containing the `title` attribute that
+ * applies to this title
* propName - the full name of the title property (for Plotly.relayout)
* [traceIndex] - include only if this property applies to one trace
* (such as a colorbar title) - then editing pipes to Plotly.restyle
diff --git a/src/plot_api/helpers.js b/src/plot_api/helpers.js
index 7091f6512d9..ff8ca40c986 100644
--- a/src/plot_api/helpers.js
+++ b/src/plot_api/helpers.js
@@ -90,28 +90,6 @@ exports.cleanLayout = function(layout) {
delete ax.autotick;
}
- cleanTitle(ax);
- } else if(polarAttrRegex && polarAttrRegex.test(key)) {
- // modifications for polar
-
- var polar = layout[key];
- cleanTitle(polar.radialaxis);
- } else if(ternaryAttrRegex && ternaryAttrRegex.test(key)) {
- // modifications for ternary
-
- var ternary = layout[key];
- cleanTitle(ternary.aaxis);
- cleanTitle(ternary.baxis);
- cleanTitle(ternary.caxis);
- } else if(sceneAttrRegex && sceneAttrRegex.test(key)) {
- // modifications for 3D scenes
-
- var scene = layout[key];
-
- // clean axis titles
- cleanTitle(scene.xaxis);
- cleanTitle(scene.yaxis);
- cleanTitle(scene.zaxis);
}
}
@@ -165,9 +143,6 @@ exports.cleanLayout = function(layout) {
}
}
- // clean plot title
- cleanTitle(layout);
-
/*
* Moved from rotate -> orbit for dragmode
*/
@@ -193,44 +168,6 @@ function cleanAxRef(container, attr) {
}
}
-/**
- * Cleans up old title attribute structure (flat) in favor of the new one (nested).
- *
- * @param {Object} titleContainer - an object potentially including deprecated title attributes
- */
-function cleanTitle(titleContainer) {
- if(titleContainer) {
- // title -> title.text
- // (although title used to be a string attribute,
- // numbers are accepted as well)
- if(typeof titleContainer.title === 'string' || typeof titleContainer.title === 'number') {
- titleContainer.title = {
- text: titleContainer.title
- };
- }
-
- rewireAttr('titlefont', 'font');
- rewireAttr('titleposition', 'position');
- rewireAttr('titleside', 'side');
- rewireAttr('titleoffset', 'offset');
- }
-
- function rewireAttr(oldAttrName, newAttrName) {
- var oldAttrSet = titleContainer[oldAttrName];
- var newAttrSet = titleContainer.title && titleContainer.title[newAttrName];
-
- if(oldAttrSet && !newAttrSet) {
- // Ensure title object exists
- if(!titleContainer.title) {
- titleContainer.title = {};
- }
-
- titleContainer.title[newAttrName] = titleContainer[oldAttrName];
- delete titleContainer[oldAttrName];
- }
- }
-}
-
/*
* cleanData: Make a few changes to the data for backward compatibility
* before it gets used for anything. Modifies the data traces users provide.
@@ -410,13 +347,6 @@ exports.cleanData = function(data) {
delete trace.autobiny;
delete trace.ybins;
}
-
- cleanTitle(trace);
- if(trace.colorbar) cleanTitle(trace.colorbar);
- if(trace.marker && trace.marker.colorbar) cleanTitle(trace.marker.colorbar);
- if(trace.line && trace.line.colorbar) cleanTitle(trace.line.colorbar);
- if(trace.aaxis) cleanTitle(trace.aaxis);
- if(trace.baxis) cleanTitle(trace.baxis);
}
};
diff --git a/src/plot_api/plot_api.js b/src/plot_api/plot_api.js
index cd9244e8fe4..ff5c0b62aa5 100644
--- a/src/plot_api/plot_api.js
+++ b/src/plot_api/plot_api.js
@@ -1397,8 +1397,6 @@ function _restyle(gd, aobj, traces) {
var eventData = Lib.extendDeepAll({}, aobj);
var i;
- cleanDeprecatedAttributeKeys(aobj);
-
// initialize flags
var flags = editTypes.traceFlags();
@@ -1700,49 +1698,6 @@ function _restyle(gd, aobj, traces) {
};
}
-/**
- * Converts deprecated attribute keys to
- * the current API to ensure backwards compatibility.
- *
- * This is needed for the update mechanism to determine which
- * subroutines to run based on the actual attribute
- * definitions (that don't include the deprecated ones).
- *
- * E.g. Maps {'xaxis.title': 'A chart'} to {'xaxis.title.text': 'A chart'}
- * and {titlefont: {...}} to {'title.font': {...}}.
- *
- * @param aobj
- */
-function cleanDeprecatedAttributeKeys(aobj) {
- var oldAxisTitleRegex = Lib.counterRegex('axis', '\.title', false, false);
- var colorbarRegex = /colorbar\.title$/;
- var keys = Object.keys(aobj);
- var i, key, value;
-
- for(i = 0; i < keys.length; i++) {
- key = keys[i];
- value = aobj[key];
-
- if((key === 'title' || oldAxisTitleRegex.test(key) || colorbarRegex.test(key)) &&
- (typeof value === 'string' || typeof value === 'number')) {
- replace(key, key.replace('title', 'title.text'));
- } else if(key.indexOf('titlefont') > -1 && key.indexOf('grouptitlefont') === -1) {
- replace(key, key.replace('titlefont', 'title.font'));
- } else if(key.indexOf('titleposition') > -1) {
- replace(key, key.replace('titleposition', 'title.position'));
- } else if(key.indexOf('titleside') > -1) {
- replace(key, key.replace('titleside', 'title.side'));
- } else if(key.indexOf('titleoffset') > -1) {
- replace(key, key.replace('titleoffset', 'title.offset'));
- }
- }
-
- function replace(oldAttrStr, newAttrStr) {
- aobj[newAttrStr] = aobj[oldAttrStr];
- delete aobj[oldAttrStr];
- }
-}
-
/**
* relayout: update layout attributes of an existing plot
*
@@ -1926,7 +1881,6 @@ function _relayout(gd, aobj) {
var arrayStr, i, j;
- cleanDeprecatedAttributeKeys(aobj);
keys = Object.keys(aobj);
// look for 'allaxes', split out into all axes
diff --git a/src/plots/cartesian/layout_attributes.js b/src/plots/cartesian/layout_attributes.js
index 4d0c64c34a2..e52643debd4 100644
--- a/src/plots/cartesian/layout_attributes.js
+++ b/src/plots/cartesian/layout_attributes.js
@@ -207,20 +207,11 @@ module.exports = {
text: {
valType: 'string',
editType: 'ticks',
- description: [
- 'Sets the title of this axis.',
- 'Note that before the existence of `title.text`, the title\'s',
- 'contents used to be defined as the `title` attribute itself.',
- 'This behavior has been deprecated.'
- ].join(' ')
+ description: 'Sets the title of this axis.'
},
font: fontAttrs({
editType: 'ticks',
- description: [
- 'Sets this axis\' title font.',
- 'Note that the title\'s font used to be customized',
- 'by the now deprecated `titlefont` attribute.'
- ].join(' ')
+ description: 'Sets this axis\' title font.'
}),
standoff: {
valType: 'number',
@@ -1250,20 +1241,5 @@ module.exports = {
'Set `tickmode` to *linear* for `autotick` *false*.'
].join(' ')
},
- title: {
- valType: 'string',
- editType: 'ticks',
- description: [
- 'Value of `title` is no longer a simple *string* but a set of sub-attributes.',
- 'To set the axis\' title, please use `title.text` now.'
- ].join(' ')
- },
- titlefont: fontAttrs({
- editType: 'ticks',
- description: [
- 'Former `titlefont` is now the sub-attribute `font` of `title`.',
- 'To customize title font properties, please use `title.font` now.'
- ].join(' ')
- })
}
};
diff --git a/src/plots/cartesian/tick_label_defaults.js b/src/plots/cartesian/tick_label_defaults.js
index 7391dd12323..e1d2bc93874 100644
--- a/src/plots/cartesian/tick_label_defaults.js
+++ b/src/plots/cartesian/tick_label_defaults.js
@@ -27,7 +27,7 @@ module.exports = function handleTickLabelDefaults(containerIn, containerOut, coe
var position = containerOut.ticklabelposition || '';
var dfltFontColor = position.indexOf('inside') !== -1 ?
contrast(options.bgColor) :
- // as with titlefont.color, inherit axis.color only if one was
+ // as with title.font.color, inherit axis.color only if one was
// explicitly provided
(contColor && contColor !== layoutAttributes.color.dflt) ?
contColor : font.color;
diff --git a/src/plots/gl3d/layout/axis_attributes.js b/src/plots/gl3d/layout/axis_attributes.js
index 06542c01801..b501c570575 100644
--- a/src/plots/gl3d/layout/axis_attributes.js
+++ b/src/plots/gl3d/layout/axis_attributes.js
@@ -121,8 +121,4 @@ module.exports = overrideAll({
zeroline: axesAttrs.zeroline,
zerolinecolor: axesAttrs.zerolinecolor,
zerolinewidth: axesAttrs.zerolinewidth,
- _deprecated: {
- title: axesAttrs._deprecated.title,
- titlefont: axesAttrs._deprecated.titlefont
- }
}, 'plot', 'from-root');
diff --git a/src/plots/layout_attributes.js b/src/plots/layout_attributes.js
index 0a6fc5543c3..60540e53b94 100644
--- a/src/plots/layout_attributes.js
+++ b/src/plots/layout_attributes.js
@@ -26,20 +26,11 @@ module.exports = {
text: {
valType: 'string',
editType: 'layoutstyle',
- description: [
- 'Sets the plot\'s title.',
- 'Note that before the existence of `title.text`, the title\'s',
- 'contents used to be defined as the `title` attribute itself.',
- 'This behavior has been deprecated.'
- ].join(' ')
+ description: 'Sets the plot\'s title.'
},
font: fontAttrs({
editType: 'layoutstyle',
- description: [
- 'Sets the title font.',
- 'Note that the title\'s font used to be customized',
- 'by the now deprecated `titlefont` attribute.'
- ].join(' ')
+ description: 'Sets the title font.'
}),
subtitle: {
text: {
@@ -460,21 +451,4 @@ module.exports = {
].join(' '),
editType: 'none'
}),
- _deprecated: {
- title: {
- valType: 'string',
- editType: 'layoutstyle',
- description: [
- 'Value of `title` is no longer a simple *string* but a set of sub-attributes.',
- 'To set the contents of the title, please use `title.text` now.'
- ].join(' ')
- },
- titlefont: fontAttrs({
- editType: 'layoutstyle',
- description: [
- 'Former `titlefont` is now the sub-attribute `font` of `title`.',
- 'To customize title font properties, please use `title.font` now.'
- ].join(' ')
- })
- }
};
diff --git a/src/plots/polar/layout_attributes.js b/src/plots/polar/layout_attributes.js
index cef166556dd..052749af701 100644
--- a/src/plots/polar/layout_attributes.js
+++ b/src/plots/polar/layout_attributes.js
@@ -146,11 +146,6 @@ var radialAxisAttrs = {
},
editType: 'calc',
-
- _deprecated: {
- title: axesAttrs._deprecated.title,
- titlefont: axesAttrs._deprecated.titlefont
- }
};
extendFlat(
diff --git a/src/plots/ternary/layout_attributes.js b/src/plots/ternary/layout_attributes.js
index aa75bb8c84e..abc6fe29f6f 100644
--- a/src/plots/ternary/layout_attributes.js
+++ b/src/plots/ternary/layout_attributes.js
@@ -62,10 +62,6 @@ var ternaryAxesAttrs = {
'all the minima set to zero.'
].join(' ')
},
- _deprecated: {
- title: axesAttrs._deprecated.title,
- titlefont: axesAttrs._deprecated.titlefont
- }
};
var attrs = module.exports = overrideAll({
diff --git a/src/traces/carpet/axis_attributes.js b/src/traces/carpet/axis_attributes.js
index 733ba93f53c..688f1a11a50 100644
--- a/src/traces/carpet/axis_attributes.js
+++ b/src/traces/carpet/axis_attributes.js
@@ -32,20 +32,11 @@ module.exports = {
valType: 'string',
dflt: '',
editType: 'calc',
- description: [
- 'Sets the title of this axis.',
- 'Note that before the existence of `title.text`, the title\'s',
- 'contents used to be defined as the `title` attribute itself.',
- 'This behavior has been deprecated.'
- ].join(' ')
+ description: 'Sets the title of this axis.'
},
font: fontAttrs({
editType: 'calc',
- description: [
- 'Sets this axis\' title font.',
- 'Note that the title\'s font used to be set',
- 'by the now deprecated `titlefont` attribute.'
- ].join(' ')
+ description: 'Sets this axis\' title font.',
}),
// TODO how is this different than `title.standoff`
offset: {
@@ -55,8 +46,6 @@ module.exports = {
description: [
'An additional amount by which to offset the title from the tick',
'labels, given in pixels.',
- 'Note that this used to be set',
- 'by the now deprecated `titleoffset` attribute.'
].join(' '),
},
editType: 'calc',
@@ -462,28 +451,5 @@ module.exports = {
editType: 'calc',
description: 'The stride between grid lines along the axis'
},
-
- _deprecated: {
- title: {
- valType: 'string',
- editType: 'calc',
- description: [
- 'Deprecated in favor of `title.text`.',
- 'Note that value of `title` is no longer a simple',
- '*string* but a set of sub-attributes.'
- ].join(' ')
- },
- titlefont: fontAttrs({
- editType: 'calc',
- description: 'Deprecated in favor of `title.font`.'
- }),
- titleoffset: {
- valType: 'number',
- dflt: 10,
- editType: 'calc',
- description: 'Deprecated in favor of `title.offset`.'
- }
- },
-
editType: 'calc'
};
diff --git a/src/traces/pie/attributes.js b/src/traces/pie/attributes.js
index b30d6ad519c..cd1c657346f 100644
--- a/src/traces/pie/attributes.js
+++ b/src/traces/pie/attributes.js
@@ -205,17 +205,10 @@ module.exports = {
description: [
'Sets the title of the chart.',
'If it is empty, no title is displayed.',
- 'Note that before the existence of `title.text`, the title\'s',
- 'contents used to be defined as the `title` attribute itself.',
- 'This behavior has been deprecated.'
].join(' ')
},
font: extendFlat({}, textFontAttrs, {
- description: [
- 'Sets the font used for `title`.',
- 'Note that the title\'s font used to be set',
- 'by the now deprecated `titlefont` attribute.'
- ].join(' ')
+ description: 'Sets the font used for `title`.'
}),
position: {
valType: 'enumerated',
@@ -227,8 +220,6 @@ module.exports = {
editType: 'plot',
description: [
'Specifies the location of the `title`.',
- 'Note that the title\'s position used to be set',
- 'by the now deprecated `titleposition` attribute.'
].join(' ')
},
@@ -301,30 +292,4 @@ module.exports = {
'or an array to highlight one or more slices.'
].join(' ')
},
-
- _deprecated: {
- title: {
- valType: 'string',
- dflt: '',
- editType: 'calc',
- description: [
- 'Deprecated in favor of `title.text`.',
- 'Note that value of `title` is no longer a simple',
- '*string* but a set of sub-attributes.'
- ].join(' ')
- },
- titlefont: extendFlat({}, textFontAttrs, {
- description: 'Deprecated in favor of `title.font`.'
- }),
- titleposition: {
- valType: 'enumerated',
- values: [
- 'top left', 'top center', 'top right',
- 'middle center',
- 'bottom left', 'bottom center', 'bottom right'
- ],
- editType: 'calc',
- description: 'Deprecated in favor of `title.position`.'
- }
- }
};
diff --git a/test/jasmine/bundle_tests/mathjax_test.js b/test/jasmine/bundle_tests/mathjax_test.js
index 16b51135f84..9aac4406653 100644
--- a/test/jasmine/bundle_tests/mathjax_test.js
+++ b/test/jasmine/bundle_tests/mathjax_test.js
@@ -55,9 +55,9 @@ describe('Test MathJax v' + mathjaxVersion + ':', function() {
return Plotly.newPlot(gd, fig)
.then(function() { assertNoIntersect('base'); })
- .then(function() { return Plotly.relayout(gd, 'xaxis.titlefont.size', 40); })
+ .then(function() { return Plotly.relayout(gd, 'xaxis.title.font.size', 40); })
.then(function() { assertNoIntersect('large title font size'); })
- .then(function() { return Plotly.relayout(gd, 'xaxis.titlefont.size', null); })
+ .then(function() { return Plotly.relayout(gd, 'xaxis.title.font.size', null); })
.then(function() { assertNoIntersect('back to base'); })
.then(function() { return Plotly.relayout(gd, 'xaxis.tickfont.size', 40); })
.then(function() { assertNoIntersect('large title font size'); })
@@ -84,7 +84,7 @@ describe('Test MathJax v' + mathjaxVersion + ':', function() {
y: [1, 2, 1]
}],
layout: {
- xaxis: {title: 'TITLE'},
+ xaxis: { title: { text: 'TITLE' } },
width: 500,
height: 500,
margin: {t: 100, b: 100, l: 100, r: 100}
@@ -125,7 +125,7 @@ describe('Test MathJax v' + mathjaxVersion + ':', function() {
y: [1, 2, 1]
}],
layout: {
- xaxis: {title: 'TITLE'},
+ xaxis: { title: { text: 'TITLE' } },
width: 500,
height: 500,
margin: {t: 100, b: 100, l: 100, r: 100}
@@ -145,7 +145,7 @@ describe('Test MathJax v' + mathjaxVersion + ':', function() {
y: [1, 2, 1]
}],
layout: {
- xaxis: {title: texTitle},
+ xaxis: { title: { text: texTitle } },
width: 500,
height: 500,
margin: {t: 100, b: 100, l: 100, r: 100}
diff --git a/test/jasmine/tests/cartesian_test.js b/test/jasmine/tests/cartesian_test.js
index a21349f9663..617726c202c 100644
--- a/test/jasmine/tests/cartesian_test.js
+++ b/test/jasmine/tests/cartesian_test.js
@@ -392,10 +392,10 @@ describe('subplot creation / deletion:', function() {
}
Plotly.newPlot(gd, [], {
- xaxis: { title: 'X' },
- yaxis: { title: 'Y' },
- xaxis2: { title: 'X2', anchor: 'y2' },
- yaxis2: { title: 'Y2', anchor: 'x2' }
+ xaxis: { title: { text: 'X' } },
+ yaxis: { title: { text: 'Y' } },
+ xaxis2: { title: { text: 'X2' }, anchor: 'y2' },
+ yaxis2: { title: { text: 'Y2' }, anchor: 'x2' }
})
.then(function() {
assertOrphanSubplot(1);
@@ -415,7 +415,7 @@ describe('subplot creation / deletion:', function() {
it('should remove unused axes when deleting traces', function(done) {
Plotly.newPlot(gd,
[{y: [1, 2, 3]}, {y: [10, 30, 20], yaxis: 'y2'}],
- {yaxis2: {side: 'right', overlaying: 'y', title: 'Hi!'}}
+ { yaxis2: { side: 'right', overlaying: 'y', title: { text: 'Hi!' } }}
)
.then(function() {
expect(gd.querySelectorAll('.xy2,.xy2-x,.xy2-y').length).not.toBe(0);
@@ -805,8 +805,8 @@ describe('subplot creation / deletion:', function() {
Plotly.newPlot(gd, [{
y: [1, 2, 1]
}], {
- xaxis: {title: 'X'},
- yaxis: {title: 'Y'}
+ xaxis: { title: { text: 'X' } },
+ yaxis: { title: { text: 'Y' } }
})
.then(function() {
_assert([5, 4, 1], [6, 6, 1]);
diff --git a/test/jasmine/tests/click_test.js b/test/jasmine/tests/click_test.js
index 2312b7fee41..3c255eb546e 100644
--- a/test/jasmine/tests/click_test.js
+++ b/test/jasmine/tests/click_test.js
@@ -931,7 +931,7 @@ describe('Test click interactions:', function() {
}],
layout: {
xaxis: {
- title: 'xaxis',
+ title: {text: 'xaxis'},
range: [0, 4]
},
yaxis: {
@@ -939,7 +939,7 @@ describe('Test click interactions:', function() {
range: [-1, 5]
},
yaxis2: {
- title: 'yaxis2',
+ title: { text: 'yaxis2' },
overlaying: 'y',
side: 'right',
showgrid: false,
diff --git a/test/jasmine/tests/funnelarea_test.js b/test/jasmine/tests/funnelarea_test.js
index 1e487920cb8..078a29f8f9b 100644
--- a/test/jasmine/tests/funnelarea_test.js
+++ b/test/jasmine/tests/funnelarea_test.js
@@ -298,13 +298,10 @@ describe('Funnelarea traces', function() {
};
}
- it('shows title top center if titleposition is undefined', function(done) {
+ it('shows title top center if title.position is undefined', function(done) {
Plotly.newPlot(gd, [{
values: [2, 2, 2, 2],
- title: 'Test
Title',
- titlefont: {
- size: 12
- },
+ title: { text: 'Test
Title', font: { size: 12 } },
type: 'funnelarea',
textinfo: 'none'
}], {height: 300, width: 300})
@@ -315,11 +312,7 @@ describe('Funnelarea traces', function() {
it('shows title top center', function(done) {
Plotly.newPlot(gd, [{
values: [1, 1, 1, 1, 2],
- title: 'Test
Title',
- titleposition: 'top center',
- titlefont: {
- size: 12
- },
+ title: { text: 'Test
Title', position: 'top center', font: { size: 12 } },
type: 'funnelarea',
textinfo: 'none'
}], {height: 300, width: 300})
@@ -330,11 +323,7 @@ describe('Funnelarea traces', function() {
it('shows title top left', function(done) {
Plotly.newPlot(gd, [{
values: [3, 2, 1],
- title: 'Test
Title',
- titleposition: 'top left',
- titlefont: {
- size: 12
- },
+ title: { text: 'Test
Title', position: 'top left', font: { size: 12 } },
type: 'funnelarea',
textinfo: 'none'
}], {height: 300, width: 300})
@@ -345,11 +334,7 @@ describe('Funnelarea traces', function() {
it('shows title top right', function(done) {
Plotly.newPlot(gd, [{
values: [4, 5, 6, 5],
- title: 'Test
Title',
- titleposition: 'top right',
- titlefont: {
- size: 12
- },
+ title: { text: 'Test
Title', position: 'top right', font: { size: 12 } },
type: 'funnelarea',
textinfo: 'none'
}], {height: 300, width: 300})
@@ -360,11 +345,7 @@ describe('Funnelarea traces', function() {
it('correctly positions large title', function(done) {
Plotly.newPlot(gd, [{
values: [1, 3, 4, 1, 2],
- title: 'Test
Title',
- titleposition: 'top center',
- titlefont: {
- size: 60
- },
+ title: { text: 'Test
Title', position: 'top center', font: { size: 60 } },
type: 'funnelarea',
textinfo: 'none'
}], {height: 300, width: 300})
@@ -587,31 +568,6 @@ describe('Funnelarea traces', function() {
.then(done, done.fail);
});
- it('should be able to restyle title despite using the deprecated attributes', function(done) {
- Plotly.newPlot(gd, [{
- type: 'funnelarea',
- values: [1, 2, 3],
- title: 'yo',
- titlefont: {color: 'blue'},
- titleposition: 'top left'
- }])
- .then(function() {
- _assertTitle('base', 'yo', 'rgb(0, 0, 255)');
- _verifyTitle(true, false, true, false, false);
-
- return Plotly.restyle(gd, {
- title: 'oy',
- 'titlefont.color': 'red',
- titleposition: 'top right'
- });
- })
- .then(function() {
- _assertTitle('base', 'oy', 'rgb(255, 0, 0)');
- _verifyTitle(false, true, true, false, false);
- })
- .then(done, done.fail);
- });
-
it('should be able to react with new text colors', function(done) {
Plotly.newPlot(gd, [{
type: 'funnelarea',
diff --git a/test/jasmine/tests/pie_test.js b/test/jasmine/tests/pie_test.js
index 78415e6ad7b..d1820868f82 100644
--- a/test/jasmine/tests/pie_test.js
+++ b/test/jasmine/tests/pie_test.js
@@ -16,6 +16,8 @@ var customAssertions = require('../assets/custom_assertions');
var assertHoverLabelStyle = customAssertions.assertHoverLabelStyle;
var assertHoverLabelContent = customAssertions.assertHoverLabelContent;
var checkTextTemplate = require('../assets/check_texttemplate');
+const { position } = require('../../../src/plots/cartesian/layout_attributes');
+const { font } = require('../../../src/plots/layout_attributes');
var SLICES_SELECTOR = '.slice path';
var SLICES_TEXT_SELECTOR = '.pielayer text.slicetext';
@@ -305,7 +307,7 @@ describe('Pie traces', function() {
it('shows multiline title in hole', function(done) {
Plotly.newPlot(gd, [{
values: [2, 2, 2, 2],
- title: 'Test
Title',
+ title: { text: 'Test
Title' },
hole: 0.5,
type: 'pie',
textinfo: 'none'
@@ -329,11 +331,7 @@ describe('Pie traces', function() {
it('scales multiline title to fit in hole', function(done) {
Plotly.newPlot(gd, [{
values: [2, 2, 2, 2],
- title: 'Test
Title',
- titleposition: 'middle center',
- titlefont: {
- size: 60
- },
+ title: { text: 'Test
Title', position: 'middle center', font: { size: 60 } },
hole: 0.1,
type: 'pie',
textinfo: 'none'
@@ -379,11 +377,7 @@ describe('Pie traces', function() {
it('shows title top center if hole is zero', function(done) {
Plotly.newPlot(gd, [{
values: [2, 2, 2, 2],
- title: 'Test
Title',
- titleposition: 'middle center',
- titlefont: {
- size: 12
- },
+ title: { text: 'Test
Title', position: 'middle center', font: { size: 12 } },
hole: 0,
type: 'pie',
textinfo: 'none'
@@ -392,13 +386,10 @@ describe('Pie traces', function() {
.then(done, done.fail);
});
- it('shows title top center if titleposition is undefined and no hole', function(done) {
+ it('shows title top center if title.position is undefined and no hole', function(done) {
Plotly.newPlot(gd, [{
values: [2, 2, 2, 2],
- title: 'Test
Title',
- titlefont: {
- size: 12
- },
+ title: { text: 'Test
Title', font: { size: 12 } },
type: 'pie',
textinfo: 'none'
}], {height: 300, width: 300})
@@ -409,11 +400,7 @@ describe('Pie traces', function() {
it('shows title top center', function(done) {
Plotly.newPlot(gd, [{
values: [1, 1, 1, 1, 2],
- title: 'Test
Title',
- titleposition: 'top center',
- titlefont: {
- size: 12
- },
+ title: { text: 'Test
Title', position: 'top center', font: { size: 12 } },
type: 'pie',
textinfo: 'none'
}], {height: 300, width: 300})
@@ -424,11 +411,7 @@ describe('Pie traces', function() {
it('shows title top left', function(done) {
Plotly.newPlot(gd, [{
values: [3, 2, 1],
- title: 'Test
Title',
- titleposition: 'top left',
- titlefont: {
- size: 12
- },
+ title: { text: 'Test
Title', position: 'top left', font: { size: 12 } },
type: 'pie',
textinfo: 'none'
}], {height: 300, width: 300})
@@ -439,11 +422,7 @@ describe('Pie traces', function() {
it('shows title top right', function(done) {
Plotly.newPlot(gd, [{
values: [4, 5, 6, 5],
- title: 'Test
Title',
- titleposition: 'top right',
- titlefont: {
- size: 12
- },
+ title: { text: 'Test
Title', position: 'top right', font: { size: 12 } },
type: 'pie',
textinfo: 'none'
}], {height: 300, width: 300})
@@ -454,11 +433,7 @@ describe('Pie traces', function() {
it('shows title bottom left', function(done) {
Plotly.newPlot(gd, [{
values: [4, 5, 6, 5],
- title: 'Test
Title',
- titleposition: 'bottom left',
- titlefont: {
- size: 12
- },
+ title: { text: 'Test
Title', position: 'bottom left', font: { size: 12 } },
type: 'pie',
textinfo: 'none'
}], {height: 300, width: 300})
@@ -469,11 +444,7 @@ describe('Pie traces', function() {
it('shows title bottom center', function(done) {
Plotly.newPlot(gd, [{
values: [4, 5, 6, 5],
- title: 'Test
Title',
- titleposition: 'bottom center',
- titlefont: {
- size: 12
- },
+ title: { text: 'Test
Title', position: 'bottom center', font: { size: 12 } },
type: 'pie',
textinfo: 'none'
}], {height: 300, width: 300})
@@ -484,11 +455,7 @@ describe('Pie traces', function() {
it('shows title bottom right', function(done) {
Plotly.newPlot(gd, [{
values: [4, 5, 6, 5],
- title: 'Test
Title',
- titleposition: 'bottom right',
- titlefont: {
- size: 12
- },
+ title: { text: 'Test
Title', position: 'bottom right', font: { size: 12 } },
type: 'pie',
textinfo: 'none'
}], {height: 300, width: 300})
@@ -499,22 +466,18 @@ describe('Pie traces', function() {
it('should be able to restyle title position', function(done) {
Plotly.newPlot(gd, [{
values: [3, 2, 1],
- title: 'Test
Title',
- titleposition: 'top left',
- titlefont: {
- size: 12
- },
+ title: { text: 'Test
Title', position: 'top left', font: { size: 12 } },
type: 'pie',
textinfo: 'none'
}], {height: 300, width: 300})
.then(_verifyTitle(true, false, true, false, false))
- .then(function() { return Plotly.restyle(gd, 'titleposition', 'top right'); })
+ .then(function() { return Plotly.restyle(gd, 'title.position', 'top right'); })
.then(_verifyTitle(false, true, true, false, false))
- .then(function() { return Plotly.restyle(gd, 'titleposition', 'bottom left'); })
+ .then(function() { return Plotly.restyle(gd, 'title.position', 'bottom left'); })
.then(_verifyTitle(true, false, false, true, false))
- .then(function() { return Plotly.restyle(gd, 'titleposition', 'bottom center'); })
+ .then(function() { return Plotly.restyle(gd, 'title.position', 'bottom center'); })
.then(_verifyTitle(false, false, false, true, true))
- .then(function() { return Plotly.restyle(gd, 'titleposition', 'bottom right'); })
+ .then(function() { return Plotly.restyle(gd, 'title.position', 'bottom right'); })
.then(_verifyTitle(false, true, false, true, false))
.then(done, done.fail);
});
@@ -522,11 +485,7 @@ describe('Pie traces', function() {
it('does not intersect pulled slices', function(done) {
Plotly.newPlot(gd, [{
values: [2, 2, 2, 2],
- title: 'Test
Title',
- titleposition: 'top center',
- titlefont: {
- size: 14
- },
+ title: { text: 'Test
Title', position: 'top center', font: { size: 14 } },
pull: [0.9, 0.9, 0.9, 0.9],
type: 'pie',
textinfo: 'none'
@@ -548,11 +507,7 @@ describe('Pie traces', function() {
it('correctly positions large title', function(done) {
Plotly.newPlot(gd, [{
values: [1, 3, 4, 1, 2],
- title: 'Test
Title',
- titleposition: 'top center',
- titlefont: {
- size: 60
- },
+ title: { text: 'Test
Title', position: 'top center', font: { size: 60 } },
type: 'pie',
textinfo: 'none'
}], {height: 300, width: 300})
@@ -795,9 +750,7 @@ describe('Pie traces', function() {
Plotly.newPlot(gd, [{
type: 'pie',
values: [1, 2, 3],
- title: 'yo',
- titlefont: {color: 'blue'},
- titleposition: 'top left'
+ title: { text: 'yo', font: {color: 'blue'}, position: 'top left' }
}])
.then(function() {
_assertTitle('base', 'yo', 'rgb(0, 0, 255)');
@@ -833,31 +786,6 @@ describe('Pie traces', function() {
.then(done, done.fail);
});
- it('should be able to restyle title despite using the deprecated attributes', function(done) {
- Plotly.newPlot(gd, [{
- type: 'pie',
- values: [1, 2, 3],
- title: 'yo',
- titlefont: {color: 'blue'},
- titleposition: 'top left'
- }])
- .then(function() {
- _assertTitle('base', 'yo', 'rgb(0, 0, 255)');
- _verifyTitle(true, false, true, false, false);
-
- return Plotly.restyle(gd, {
- title: 'oy',
- 'titlefont.color': 'red',
- titleposition: 'bottom right'
- });
- })
- .then(function() {
- _assertTitle('base', 'oy', 'rgb(255, 0, 0)');
- _verifyTitle(false, true, false, true, false);
- })
- .then(done, done.fail);
- });
-
it('should be able to react with new text colors', function(done) {
Plotly.newPlot(gd, [{
type: 'pie',
diff --git a/test/jasmine/tests/plot_api_test.js b/test/jasmine/tests/plot_api_test.js
index d847c683174..988c7763364 100644
--- a/test/jasmine/tests/plot_api_test.js
+++ b/test/jasmine/tests/plot_api_test.js
@@ -260,8 +260,8 @@ describe('Test plot api', function() {
x: [1, 2, 3],
y: [1, 2, 1]
}], {
- xaxis: { title: 'x title' },
- yaxis: { title: 'y title' }
+ xaxis: { title: { text: 'x title' } },
+ yaxis: { title: { text: 'y title' } }
})
.then(function() {
return Plotly.relayout(gd, { zaxis: {} });
@@ -526,32 +526,6 @@ describe('Test plot api', function() {
.then(assertSizeAndThen(543, 432, true, 'final back to autosize'))
.then(done, done.fail);
});
-
- it('passes update data back to plotly_relayout unmodified ' +
- 'even if deprecated attributes have been used', function(done) {
- Plotly.newPlot(gd, [{y: [1, 3, 2]}])
- .then(function() {
- gd.on('plotly_relayout', function(eventData) {
- expect(eventData).toEqual({
- title: 'Plotly chart',
- 'xaxis.title': 'X',
- 'xaxis.titlefont': {color: 'green'},
- 'yaxis.title': 'Y',
- 'polar.radialaxis.title': 'Radial'
- });
- done();
- });
-
- return Plotly.relayout(gd, {
- title: 'Plotly chart',
- 'xaxis.title': 'X',
- 'xaxis.titlefont': {color: 'green'},
- 'yaxis.title': 'Y',
- 'polar.radialaxis.title': 'Radial'
- });
- })
- .then(done, done.fail);
- });
});
describe('Plotly.relayout subroutines switchboard', function() {
@@ -2283,7 +2257,7 @@ describe('Test plot api', function() {
it('', function(done) {
var gd = createGraphDiv();
var initialData = [];
- var layout = { title: 'Redraw' };
+ var layout = { title: { text: 'Redraw' } };
Plotly.newPlot(gd, initialData, layout)
.then(function() {
@@ -2755,7 +2729,7 @@ describe('Test plot api', function() {
};
var layoutUpdate = {
- xaxis: {title: 'A', type: '-'}
+ xaxis: { title: { text: 'A' }, type: '-'}
};
Plotly.update(gd, traceUpdate, layoutUpdate).then(function() {
diff --git a/test/jasmine/tests/plots_test.js b/test/jasmine/tests/plots_test.js
index a5cbfaaab47..92ba8c2abe5 100644
--- a/test/jasmine/tests/plots_test.js
+++ b/test/jasmine/tests/plots_test.js
@@ -579,7 +579,7 @@ describe('Test Plots', function() {
y: [1, 2, 1],
}],
layout: {
- title: 'frame A'
+ title: { text: 'frame A' }
},
name: 'A'
}, null, {
@@ -587,7 +587,7 @@ describe('Test Plots', function() {
y: [1, 2, 3],
}],
layout: {
- title: 'frame B'
+ title: { text: 'frame B' }
},
name: 'B'
}, {
diff --git a/test/jasmine/tests/polar_test.js b/test/jasmine/tests/polar_test.js
index 05621b2fdd4..bf18ad47a04 100644
--- a/test/jasmine/tests/polar_test.js
+++ b/test/jasmine/tests/polar_test.js
@@ -473,7 +473,7 @@ describe('Test relayout on polar subplots:', function() {
theta: [10, 20, 30]
}], {
polar: {
- radialaxis: {title: 'yo'}
+ radialaxis: { title: { text: 'yo' } }
}
})
.then(function() {
@@ -490,7 +490,7 @@ describe('Test relayout on polar subplots:', function() {
})
.then(function() {
assertTitle('yo2', true);
- return Plotly.relayout(gd, 'polar.radialaxis.titlefont.color', 'red');
+ return Plotly.relayout(gd, 'polar.radialaxis.title.font.color', 'red');
})
.then(function() {
assertTitle('yo2', false);
diff --git a/test/jasmine/tests/shapes_test.js b/test/jasmine/tests/shapes_test.js
index 1ea56af23ee..d26a2529887 100644
--- a/test/jasmine/tests/shapes_test.js
+++ b/test/jasmine/tests/shapes_test.js
@@ -748,7 +748,7 @@ describe('A path shape sized relative to data', function() {
type: 'scatter'
}];
layout = {
- title: 'Path shape sized relative to data',
+ title: { text: 'Path shape sized relative to data' },
width: 400,
height: 400,
shapes: [{
@@ -792,7 +792,7 @@ describe('A fixed size path shape', function() {
type: 'scatter'
}];
layout = {
- title: 'Fixed size path shape',
+ title: { text: 'Fixed size path shape' },
width: 400,
height: 400,
shapes: [{
@@ -930,7 +930,7 @@ describe('A fixed size shape', function() {
type: 'scatter'
}];
layout = {
- title: 'Fixed size shape',
+ title: { text: 'Fixed size shape' },
width: 400,
height: 400,
shapes: [{
@@ -1315,19 +1315,19 @@ describe('Test shapes', function() {
var testCases = [
// xref: 'paper', yref: 'paper'
{
- title: 'linked to paper'
+ title: { text: 'linked to paper' }
},
// xaxis.type: 'linear', yaxis.type: 'log'
{
- title: 'linked to linear and log axes',
+ title: { text: 'linked to linear and log axes' },
xaxis: { type: 'linear', range: [0, 10] },
yaxis: { type: 'log', range: [Math.log10(1), Math.log10(1000)] }
},
// xaxis.type: 'date', yaxis.type: 'category'
{
- title: 'linked to date and category axes',
+ title: { text: 'linked to date and category axes' },
xaxis: {
type: 'date',
range: ['2000-01-01', '2000-02-02']
diff --git a/test/jasmine/tests/ternary_test.js b/test/jasmine/tests/ternary_test.js
index 05777a80d5c..37defdc7d9e 100644
--- a/test/jasmine/tests/ternary_test.js
+++ b/test/jasmine/tests/ternary_test.js
@@ -392,16 +392,15 @@ describe('ternary plots', function() {
_assert('b', 'chocolate', '"Open Sans", verdana, arial, sans-serif', rgb('#0f0'), 14);
_assert('c', 'Component C', '"Open Sans", verdana, arial, sans-serif', rgb('#444'), 14);
- // Note: Different update notations to also test legacy title structures
return Plotly.relayout(gd, {
'ternary.aaxis.title.text': 'chips',
'ternary.aaxis.title.font.color': 'yellow',
- 'ternary.aaxis.titlefont.family': 'monospace',
- 'ternary.aaxis.titlefont.size': 16,
- 'ternary.baxis.title': 'white chocolate',
+ 'ternary.aaxis.title.font.family': 'monospace',
+ 'ternary.aaxis.title.font.size': 16,
+ 'ternary.baxis.title.text': 'white chocolate',
'ternary.baxis.title.font.color': 'blue',
- 'ternary.baxis.titlefont.family': 'sans-serif',
- 'ternary.baxis.titlefont.size': 10,
+ 'ternary.baxis.title.font.family': 'sans-serif',
+ 'ternary.baxis.title.font.size': 10,
'ternary.caxis.title': {
text: 'candy',
font: {
diff --git a/test/jasmine/tests/titles_test.js b/test/jasmine/tests/titles_test.js
index 1f2dcdaecd9..839cbdd55b3 100644
--- a/test/jasmine/tests/titles_test.js
+++ b/test/jasmine/tests/titles_test.js
@@ -52,17 +52,8 @@ describe('Plot title', function() {
.then(done, done.fail);
});
- it('can still be defined as `layout.title` to ensure backwards-compatibility', function(done) {
- Plotly.newPlot(gd, data, {title: 'Plotly line chart'})
- .then(function() {
- expectTitle('Plotly line chart');
- expectDefaultCenteredPosition(gd);
- })
- .then(done, done.fail);
- });
-
it('can be updated via `relayout`', function(done) {
- Plotly.newPlot(gd, data, {title: 'Plotly line chart'})
+ Plotly.newPlot(gd, data, { title: { text: 'Plotly line chart' } })
.then(expectTitleFn('Plotly line chart'))
.then(function() {
return Plotly.relayout(gd, {title: {text: 'Some other title'}});
@@ -628,23 +619,6 @@ describe('Titles can be updated', function() {
'xaxis.title.text': NEW_XTITLE,
'yaxis.title.text': NEW_YTITLE
}
- },
- {
- desc: 'despite passing title only as a string (backwards-compatibility)',
- update: {
- title: NEW_TITLE,
- xaxis: {title: NEW_XTITLE},
- yaxis: {title: NEW_YTITLE}
- }
- },
- {
- desc: 'despite passing title only as a string using string attributes ' +
- '(backwards-compatibility)',
- update: {
- title: NEW_TITLE,
- 'xaxis.title': NEW_XTITLE,
- 'yaxis.title': NEW_YTITLE
- }
}
].forEach(function(testCase) {
it('via `Plotly.relayout` ' + testCase.desc, function(done) {
@@ -789,47 +763,6 @@ describe('Titles support setting custom font properties', function() {
})
.then(done, done.fail);
});
-
- it('through using the deprecated `titlefont` properties (backwards-compatibility)', function(done) {
- var layout = {
- title: {
- text: 'Plotly line chart',
- },
- titlefont: {
- color: 'blue',
- family: 'serif',
- size: 24
- },
- xaxis: {
- title: {
- text: 'X-Axis',
- },
- titlefont: {
- color: '#333',
- family: 'sans-serif',
- size: 20
- }
- },
- yaxis: {
- title: {
- text: 'Y-Axis',
- },
- titlefont: {
- color: '#666',
- family: 'Arial',
- size: 16
- }
- }
- };
-
- Plotly.newPlot(gd, data, layout)
- .then(function() {
- expectTitleFont('blue', 'serif', 24);
- expectXAxisTitleFont('#333', 'sans-serif', 20);
- expectYAxisTitleFont('#666', 'Arial', 16);
- })
- .then(done, done.fail);
- });
});
describe('Title fonts can be updated', function() {
@@ -911,44 +844,6 @@ describe('Title fonts can be updated', function() {
'yaxis.title.font.size': NEW_YTITLE_FONT.size
}
},
- {
- desc: 'despite passing deprecated `titlefont` properties (backwards-compatibility)',
- update: {
- titlefont: NEW_TITLE_FONT,
- xaxis: {
- title: NEW_XTITLE,
- titlefont: NEW_XTITLE_FONT
- },
- yaxis: {
- title: NEW_YTITLE,
- titlefont: NEW_YTITLE_FONT
- }
- }
- },
- {
- desc: 'despite using string attributes representing the deprecated structure ' +
- '(backwards-compatibility)',
- update: {
- 'titlefont.color': NEW_TITLE_FONT.color,
- 'titlefont.family': NEW_TITLE_FONT.family,
- 'titlefont.size': NEW_TITLE_FONT.size,
- 'xaxis.titlefont.color': NEW_XTITLE_FONT.color,
- 'xaxis.titlefont.family': NEW_XTITLE_FONT.family,
- 'xaxis.titlefont.size': NEW_XTITLE_FONT.size,
- 'yaxis.titlefont.color': NEW_YTITLE_FONT.color,
- 'yaxis.titlefont.family': NEW_YTITLE_FONT.family,
- 'yaxis.titlefont.size': NEW_YTITLE_FONT.size
- }
- },
- {
- desc: 'despite using string attributes replacing deprecated `titlefont` attributes ' +
- '(backwards-compatibility)',
- update: {
- titlefont: NEW_TITLE_FONT,
- 'xaxis.titlefont': NEW_XTITLE_FONT,
- 'yaxis.titlefont': NEW_YTITLE_FONT
- }
- }
].forEach(function(testCase) {
it('via `Plotly.relayout` ' + testCase.desc, function(done) {
Plotly.relayout(gd, testCase.update)
@@ -974,98 +869,6 @@ describe('Title fonts can be updated', function() {
}
});
-describe('Titles for multiple axes', function() {
- 'use strict';
-
- var data = [
- {x: [1, 2, 3], y: [1, 2, 3], xaxis: 'x', yaxis: 'y'},
- {x: [1, 2, 3], y: [3, 2, 1], xaxis: 'x2', yaxis: 'y2'}
- ];
- var multiAxesLayout = {
- xaxis: {
- title: 'X-Axis 1',
- titlefont: {
- size: 30
- }
- },
- xaxis2: {
- title: 'X-Axis 2',
- titlefont: {
- family: 'serif'
- },
- side: 'top'
- },
- yaxis: {
- title: 'Y-Axis 1',
- titlefont: {
- family: 'Roboto'
- },
- },
- yaxis2: {
- title: 'Y-Axis 2',
- titlefont: {
- color: 'blue'
- },
- side: 'right'
- }
- };
- var gd;
-
- beforeEach(function() {
- gd = createGraphDiv();
- });
-
- afterEach(destroyGraphDiv);
-
- it('still support deprecated `title` and `titlefont` syntax (backwards-compatibility)', function(done) {
- Plotly.newPlot(gd, data, multiAxesLayout)
- .then(function() {
- expect(xTitleSel(1).text()).toBe('X-Axis 1');
- expect(xTitleSel(1).node().style.fontSize).toBe('30px');
-
- expect(xTitleSel(2).text()).toBe('X-Axis 2');
- expect(xTitleSel(2).node().style.fontFamily).toBe('serif');
-
- expect(yTitleSel(1).text()).toBe('Y-Axis 1');
- expect(yTitleSel(1).node().style.fontFamily).toBe('Roboto');
-
- expect(yTitleSel(2).text()).toBe('Y-Axis 2');
- expect(yTitleSel(2).node().style.fill).toBe(rgb('blue'));
- })
- .then(done, done.fail);
- });
-
- it('can be updated using deprecated `title` and `titlefont` syntax (backwards-compatibility)', function(done) {
- Plotly.newPlot(gd, data, multiAxesLayout)
- .then(function() {
- return Plotly.relayout(gd, {
- 'xaxis2.title': '2nd X-Axis',
- 'xaxis2.titlefont.color': 'pink',
- 'xaxis2.titlefont.family': 'sans-serif',
- 'xaxis2.titlefont.size': '14',
- 'yaxis2.title': '2nd Y-Axis',
- 'yaxis2.titlefont.color': 'yellow',
- 'yaxis2.titlefont.family': 'monospace',
- 'yaxis2.titlefont.size': '5'
- });
- })
- .then(function() {
- var x2Style = xTitleSel(2).node().style;
- expect(xTitleSel(2).text()).toBe('2nd X-Axis');
- expect(x2Style.fill).toBe(rgb('pink'));
- expect(x2Style.fontFamily).toBe('sans-serif');
- expect(x2Style.fontSize).toBe('14px');
-
- var y2Style = yTitleSel(2).node().style;
- expect(yTitleSel(2).text()).toBe('2nd Y-Axis');
- expect(y2Style.fill).toBe(rgb('yellow'));
- expect(y2Style.fontFamily).toBe('monospace');
- expect(y2Style.fontSize).toBe('5px');
- })
- .then(done, done.fail);
- });
-});
-
// TODO: Add in tests for interactions with other automargined elements
describe('Title automargining', function() {
'use strict';
diff --git a/test/plot-schema.json b/test/plot-schema.json
index 8293a4ca7e9..1fd64ae1281 100644
--- a/test/plot-schema.json
+++ b/test/plot-schema.json
@@ -596,101 +596,6 @@
},
"layout": {
"layoutAttributes": {
- "_deprecated": {
- "title": {
- "description": "Value of `title` is no longer a simple *string* but a set of sub-attributes. To set the contents of the title, please use `title.text` now.",
- "editType": "layoutstyle",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "layoutstyle",
- "valType": "color"
- },
- "description": "Former `titlefont` is now the sub-attribute `font` of `title`. To customize title font properties, please use `title.font` now.",
- "editType": "layoutstyle",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "layoutstyle",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "layoutstyle",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "layoutstyle",
- "valType": "string"
- },
- "size": {
- "editType": "layoutstyle",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "layoutstyle",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "layoutstyle",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "layoutstyle",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "layoutstyle",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- }
- },
"activeselection": {
"editType": "none",
"fillcolor": {
@@ -1319,112 +1224,6 @@
"valType": "number"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -1864,7 +1663,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -1950,7 +1749,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -1960,7 +1759,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -5833,101 +5632,6 @@
"valType": "number"
},
"radialaxis": {
- "_deprecated": {
- "title": {
- "description": "Value of `title` is no longer a simple *string* but a set of sub-attributes. To set the axis' title, please use `title.text` now.",
- "editType": "ticks",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "ticks",
- "valType": "color"
- },
- "description": "Former `titlefont` is now the sub-attribute `font` of `title`. To customize title font properties, please use `title.font` now.",
- "editType": "ticks",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "ticks",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "ticks",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "ticks",
- "valType": "string"
- },
- "size": {
- "editType": "ticks",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "ticks",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "ticks",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "ticks",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "ticks",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- }
- },
"angle": {
"description": "Sets the angle (in degrees) from which the radial axis is drawn. Note that by default, radial axis line on the theta=0 line corresponds to a line pointing right (like what mathematicians prefer). Defaults to the first `polar.sector` angle.",
"editType": "plot",
@@ -6543,7 +6247,7 @@
"editType": "ticks",
"valType": "color"
},
- "description": "Sets this axis' title font. Note that the title's font used to be customized by the now deprecated `titlefont` attribute.",
+ "description": "Sets this axis' title font.",
"editType": "plot",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -6629,7 +6333,7 @@
},
"role": "object",
"text": {
- "description": "Sets the title of this axis. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of this axis.",
"dflt": "",
"editType": "plot",
"valType": "string"
@@ -7358,101 +7062,6 @@
"valType": "any"
},
"xaxis": {
- "_deprecated": {
- "title": {
- "description": "Value of `title` is no longer a simple *string* but a set of sub-attributes. To set the axis' title, please use `title.text` now.",
- "editType": "plot",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "plot",
- "valType": "color"
- },
- "description": "Former `titlefont` is now the sub-attribute `font` of `title`. To customize title font properties, please use `title.font` now.",
- "editType": "plot",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "plot",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "plot",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "plot",
- "valType": "string"
- },
- "size": {
- "editType": "plot",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "plot",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- }
- },
"autorange": {
"description": "Determines whether or not the range of this axis is computed in relation to the input data. See `rangemode` for more info. If `range` is provided and it has a value for both the lower and upper bound, `autorange` is set to *false*. Using *min* applies autorange only to set the minimum. Using *max* applies autorange only to set the maximum. Using *min reversed* applies autorange only to set the minimum on a reversed axis. Using *max reversed* applies autorange only to set the maximum on a reversed axis. Using *reversed* applies autorange on both ends and reverses the axis direction.",
"dflt": true,
@@ -8063,7 +7672,7 @@
"editType": "plot",
"valType": "color"
},
- "description": "Sets this axis' title font. Note that the title's font used to be customized by the now deprecated `titlefont` attribute.",
+ "description": "Sets this axis' title font.",
"editType": "plot",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -8149,7 +7758,7 @@
},
"role": "object",
"text": {
- "description": "Sets the title of this axis. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of this axis.",
"editType": "plot",
"valType": "string"
}
@@ -8192,101 +7801,6 @@
}
},
"yaxis": {
- "_deprecated": {
- "title": {
- "description": "Value of `title` is no longer a simple *string* but a set of sub-attributes. To set the axis' title, please use `title.text` now.",
- "editType": "plot",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "plot",
- "valType": "color"
- },
- "description": "Former `titlefont` is now the sub-attribute `font` of `title`. To customize title font properties, please use `title.font` now.",
- "editType": "plot",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "plot",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "plot",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "plot",
- "valType": "string"
- },
- "size": {
- "editType": "plot",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "plot",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- }
- },
"autorange": {
"description": "Determines whether or not the range of this axis is computed in relation to the input data. See `rangemode` for more info. If `range` is provided and it has a value for both the lower and upper bound, `autorange` is set to *false*. Using *min* applies autorange only to set the minimum. Using *max* applies autorange only to set the maximum. Using *min reversed* applies autorange only to set the minimum on a reversed axis. Using *max reversed* applies autorange only to set the maximum on a reversed axis. Using *reversed* applies autorange on both ends and reverses the axis direction.",
"dflt": true,
@@ -8897,7 +8411,7 @@
"editType": "plot",
"valType": "color"
},
- "description": "Sets this axis' title font. Note that the title's font used to be customized by the now deprecated `titlefont` attribute.",
+ "description": "Sets this axis' title font.",
"editType": "plot",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -8983,7 +8497,7 @@
},
"role": "object",
"text": {
- "description": "Sets the title of this axis. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of this axis.",
"editType": "plot",
"valType": "string"
}
@@ -9026,101 +8540,6 @@
}
},
"zaxis": {
- "_deprecated": {
- "title": {
- "description": "Value of `title` is no longer a simple *string* but a set of sub-attributes. To set the axis' title, please use `title.text` now.",
- "editType": "plot",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "plot",
- "valType": "color"
- },
- "description": "Former `titlefont` is now the sub-attribute `font` of `title`. To customize title font properties, please use `title.font` now.",
- "editType": "plot",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "plot",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "plot",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "plot",
- "valType": "string"
- },
- "size": {
- "editType": "plot",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "plot",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- }
- },
"autorange": {
"description": "Determines whether or not the range of this axis is computed in relation to the input data. See `rangemode` for more info. If `range` is provided and it has a value for both the lower and upper bound, `autorange` is set to *false*. Using *min* applies autorange only to set the minimum. Using *max* applies autorange only to set the maximum. Using *min reversed* applies autorange only to set the minimum on a reversed axis. Using *max reversed* applies autorange only to set the maximum on a reversed axis. Using *reversed* applies autorange on both ends and reverses the axis direction.",
"dflt": true,
@@ -9731,7 +9150,7 @@
"editType": "plot",
"valType": "color"
},
- "description": "Sets this axis' title font. Note that the title's font used to be customized by the now deprecated `titlefont` attribute.",
+ "description": "Sets this axis' title font.",
"editType": "plot",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -9817,7 +9236,7 @@
},
"role": "object",
"text": {
- "description": "Sets the title of this axis. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of this axis.",
"editType": "plot",
"valType": "string"
}
@@ -11666,101 +11085,6 @@
"ternary": {
"_isSubplotObj": true,
"aaxis": {
- "_deprecated": {
- "title": {
- "description": "Value of `title` is no longer a simple *string* but a set of sub-attributes. To set the axis' title, please use `title.text` now.",
- "editType": "plot",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "plot",
- "valType": "color"
- },
- "description": "Former `titlefont` is now the sub-attribute `font` of `title`. To customize title font properties, please use `title.font` now.",
- "editType": "plot",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "plot",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "plot",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "plot",
- "valType": "string"
- },
- "size": {
- "editType": "plot",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "plot",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- }
- },
"color": {
"description": "Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.",
"dflt": "#444",
@@ -12176,7 +11500,7 @@
"editType": "plot",
"valType": "color"
},
- "description": "Sets this axis' title font. Note that the title's font used to be customized by the now deprecated `titlefont` attribute.",
+ "description": "Sets this axis' title font.",
"editType": "plot",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -12262,7 +11586,7 @@
},
"role": "object",
"text": {
- "description": "Sets the title of this axis. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of this axis.",
"editType": "plot",
"valType": "string"
}
@@ -12274,101 +11598,6 @@
}
},
"baxis": {
- "_deprecated": {
- "title": {
- "description": "Value of `title` is no longer a simple *string* but a set of sub-attributes. To set the axis' title, please use `title.text` now.",
- "editType": "plot",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "plot",
- "valType": "color"
- },
- "description": "Former `titlefont` is now the sub-attribute `font` of `title`. To customize title font properties, please use `title.font` now.",
- "editType": "plot",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "plot",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "plot",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "plot",
- "valType": "string"
- },
- "size": {
- "editType": "plot",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "plot",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- }
- },
"color": {
"description": "Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.",
"dflt": "#444",
@@ -12784,7 +12013,7 @@
"editType": "plot",
"valType": "color"
},
- "description": "Sets this axis' title font. Note that the title's font used to be customized by the now deprecated `titlefont` attribute.",
+ "description": "Sets this axis' title font.",
"editType": "plot",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -12870,7 +12099,7 @@
},
"role": "object",
"text": {
- "description": "Sets the title of this axis. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of this axis.",
"editType": "plot",
"valType": "string"
}
@@ -12888,101 +12117,6 @@
"valType": "color"
},
"caxis": {
- "_deprecated": {
- "title": {
- "description": "Value of `title` is no longer a simple *string* but a set of sub-attributes. To set the axis' title, please use `title.text` now.",
- "editType": "plot",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "plot",
- "valType": "color"
- },
- "description": "Former `titlefont` is now the sub-attribute `font` of `title`. To customize title font properties, please use `title.font` now.",
- "editType": "plot",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "plot",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "plot",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "plot",
- "valType": "string"
- },
- "size": {
- "editType": "plot",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "plot",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- }
- },
"color": {
"description": "Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.",
"dflt": "#444",
@@ -13398,7 +12532,7 @@
"editType": "plot",
"valType": "color"
},
- "description": "Sets this axis' title font. Note that the title's font used to be customized by the now deprecated `titlefont` attribute.",
+ "description": "Sets this axis' title font.",
"editType": "plot",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -13484,7 +12618,7 @@
},
"role": "object",
"text": {
- "description": "Sets the title of this axis. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of this axis.",
"editType": "plot",
"valType": "string"
}
@@ -13587,7 +12721,7 @@
"editType": "layoutstyle",
"valType": "color"
},
- "description": "Sets the title font. Note that the title's font used to be customized by the now deprecated `titlefont` attribute.",
+ "description": "Sets the title font.",
"editType": "layoutstyle",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -13800,7 +12934,7 @@
}
},
"text": {
- "description": "Sets the plot's title. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the plot's title.",
"editType": "layoutstyle",
"valType": "string"
},
@@ -14298,99 +13432,6 @@
"description": "Obsolete. Set `tickmode` to *auto* for old `autotick` *true* behavior. Set `tickmode` to *linear* for `autotick` *false*.",
"editType": "ticks",
"valType": "boolean"
- },
- "title": {
- "description": "Value of `title` is no longer a simple *string* but a set of sub-attributes. To set the axis' title, please use `title.text` now.",
- "editType": "ticks",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "ticks",
- "valType": "color"
- },
- "description": "Former `titlefont` is now the sub-attribute `font` of `title`. To customize title font properties, please use `title.font` now.",
- "editType": "ticks",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "ticks",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "ticks",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "ticks",
- "valType": "string"
- },
- "size": {
- "editType": "ticks",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "ticks",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "ticks",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "ticks",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "ticks",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
}
},
"_isSubplotObj": true,
@@ -15797,7 +14838,7 @@
"editType": "ticks",
"valType": "color"
},
- "description": "Sets this axis' title font. Note that the title's font used to be customized by the now deprecated `titlefont` attribute.",
+ "description": "Sets this axis' title font.",
"editType": "ticks",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -15889,7 +14930,7 @@
"valType": "number"
},
"text": {
- "description": "Sets the title of this axis. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of this axis.",
"editType": "ticks",
"valType": "string"
}
@@ -15943,99 +14984,6 @@
"description": "Obsolete. Set `tickmode` to *auto* for old `autotick` *true* behavior. Set `tickmode` to *linear* for `autotick` *false*.",
"editType": "ticks",
"valType": "boolean"
- },
- "title": {
- "description": "Value of `title` is no longer a simple *string* but a set of sub-attributes. To set the axis' title, please use `title.text` now.",
- "editType": "ticks",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "ticks",
- "valType": "color"
- },
- "description": "Former `titlefont` is now the sub-attribute `font` of `title`. To customize title font properties, please use `title.font` now.",
- "editType": "ticks",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "ticks",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "ticks",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "ticks",
- "valType": "string"
- },
- "size": {
- "editType": "ticks",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "ticks",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "ticks",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "ticks",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "ticks",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
}
},
"_isSubplotObj": true,
@@ -17131,7 +16079,7 @@
"editType": "ticks",
"valType": "color"
},
- "description": "Sets this axis' title font. Note that the title's font used to be customized by the now deprecated `titlefont` attribute.",
+ "description": "Sets this axis' title font.",
"editType": "ticks",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -17223,7 +16171,7 @@
"valType": "number"
},
"text": {
- "description": "Sets the title of this axis. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of this axis.",
"editType": "ticks",
"valType": "string"
}
@@ -18108,112 +17056,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -18653,7 +17495,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -18739,7 +17581,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -18749,7 +17591,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -20257,112 +19099,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -20802,7 +19538,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -20888,7 +19624,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -20898,7 +19634,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -23736,107 +22472,6 @@
"valType": "number"
},
"aaxis": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of `title.text`. Note that value of `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "calc",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "calc",
- "valType": "color"
- },
- "description": "Deprecated in favor of `title.font`.",
- "editType": "calc",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "calc",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "calc",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "calc",
- "valType": "string"
- },
- "size": {
- "editType": "calc",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "calc",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleoffset": {
- "description": "Deprecated in favor of `title.offset`.",
- "dflt": 10,
- "editType": "calc",
- "valType": "number"
- }
- },
"arraydtick": {
"description": "The stride between grid lines along the axis",
"dflt": 1,
@@ -24380,7 +23015,7 @@
"editType": "calc",
"valType": "color"
},
- "description": "Sets this axis' title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this axis' title font.",
"editType": "calc",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -24465,14 +23100,14 @@
}
},
"offset": {
- "description": "An additional amount by which to offset the title from the tick labels, given in pixels. Note that this used to be set by the now deprecated `titleoffset` attribute.",
+ "description": "An additional amount by which to offset the title from the tick labels, given in pixels.",
"dflt": 10,
"editType": "calc",
"valType": "number"
},
"role": "object",
"text": {
- "description": "Sets the title of this axis. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of this axis.",
"dflt": "",
"editType": "calc",
"valType": "string"
@@ -24508,107 +23143,6 @@
"valType": "number"
},
"baxis": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of `title.text`. Note that value of `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "calc",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "calc",
- "valType": "color"
- },
- "description": "Deprecated in favor of `title.font`.",
- "editType": "calc",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "calc",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "calc",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "calc",
- "valType": "string"
- },
- "size": {
- "editType": "calc",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "calc",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleoffset": {
- "description": "Deprecated in favor of `title.offset`.",
- "dflt": 10,
- "editType": "calc",
- "valType": "number"
- }
- },
"arraydtick": {
"description": "The stride between grid lines along the axis",
"dflt": 1,
@@ -25152,7 +23686,7 @@
"editType": "calc",
"valType": "color"
},
- "description": "Sets this axis' title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this axis' title font.",
"editType": "calc",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -25237,14 +23771,14 @@
}
},
"offset": {
- "description": "An additional amount by which to offset the title from the tick labels, given in pixels. Note that this used to be set by the now deprecated `titleoffset` attribute.",
+ "description": "An additional amount by which to offset the title from the tick labels, given in pixels.",
"dflt": 10,
"editType": "calc",
"valType": "number"
},
"role": "object",
"text": {
- "description": "Sets the title of this axis. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of this axis.",
"dflt": "",
"editType": "calc",
"valType": "string"
@@ -25665,112 +24199,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -26210,7 +24638,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -26296,7 +24724,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -26306,7 +24734,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -27068,112 +25496,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -27613,7 +25935,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -27699,7 +26021,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -27709,7 +26031,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -28461,112 +26783,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -29006,7 +27222,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -29092,7 +27308,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -29102,7 +27318,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -29893,112 +28109,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -30438,7 +28548,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -30524,7 +28634,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -30534,7 +28644,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -31344,112 +29454,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -31889,7 +29893,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -31975,7 +29979,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -31985,7 +29989,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -33277,112 +31281,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -33822,7 +31720,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -33908,7 +31806,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -33918,7 +31816,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -34609,112 +32507,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -35154,7 +32946,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -35240,7 +33032,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -35250,7 +33042,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -35940,112 +33732,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -36485,7 +34171,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -36571,7 +34257,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -36581,7 +34267,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -37933,112 +35619,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -38478,7 +36058,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -38564,7 +36144,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -38574,7 +36154,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -40427,7 +38007,7 @@
"editType": "none",
"valType": "string"
},
- "description": "Sets the font used for `title`. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets the font used for `title`.",
"editType": "plot",
"family": {
"arrayOk": true,
@@ -40560,7 +38140,7 @@
}
},
"position": {
- "description": "Specifies the location of the `title`. Note that the title's position used to be set by the now deprecated `titleposition` attribute.",
+ "description": "Specifies the location of the `title`.",
"dflt": "top center",
"editType": "plot",
"valType": "enumerated",
@@ -40572,7 +38152,7 @@
},
"role": "object",
"text": {
- "description": "Sets the title of the chart. If it is empty, no title is displayed. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the chart. If it is empty, no title is displayed.",
"dflt": "",
"editType": "plot",
"valType": "string"
@@ -40672,112 +38252,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -41217,7 +38691,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -41303,7 +38777,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -41313,7 +38787,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -43130,112 +40604,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -43675,7 +41043,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -43761,7 +41129,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -43771,7 +41139,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -44692,112 +42060,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -45237,7 +42499,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -45323,7 +42585,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -45333,7 +42595,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -46306,112 +43568,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -46851,7 +44007,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -46937,7 +44093,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -46947,7 +44103,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -48783,112 +45939,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -49328,7 +46378,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -49414,7 +46464,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -49424,7 +46474,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -52263,112 +49313,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "calc",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "calc",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "calc",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "calc",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "calc",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "calc",
- "valType": "string"
- },
- "size": {
- "editType": "calc",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "calc",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -52808,7 +49752,7 @@
"editType": "calc",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "calc",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -52894,7 +49838,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "calc",
"valType": "enumerated",
"values": [
@@ -52904,7 +49848,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "calc",
"valType": "string"
}
@@ -53889,112 +50833,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -54434,7 +51272,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -54520,7 +51358,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -54530,7 +51368,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -56601,112 +53439,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -57146,7 +53878,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -57232,7 +53964,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -57242,7 +53974,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -58000,112 +54732,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -58545,7 +55171,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -58631,7 +55257,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -58641,7 +55267,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -59091,125 +55717,6 @@
"pie": {
"animatable": false,
"attributes": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of `title.text`. Note that value of `title` is no longer a simple *string* but a set of sub-attributes.",
- "dflt": "",
- "editType": "calc",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "arrayOk": true,
- "editType": "plot",
- "valType": "color"
- },
- "description": "Deprecated in favor of `title.font`.",
- "editType": "plot",
- "family": {
- "arrayOk": true,
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "plot",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "arrayOk": true,
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "plot",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "arrayOk": true,
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "plot",
- "valType": "string"
- },
- "size": {
- "arrayOk": true,
- "editType": "plot",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "arrayOk": true,
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "arrayOk": true,
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "arrayOk": true,
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "plot",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "arrayOk": true,
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "plot",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleposition": {
- "description": "Deprecated in favor of `title.position`.",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "top left",
- "top center",
- "top right",
- "middle center",
- "bottom left",
- "bottom center",
- "bottom right"
- ]
- }
- },
"automargin": {
"description": "Determines whether outside text labels can push the margins.",
"dflt": false,
@@ -60435,7 +56942,7 @@
"editType": "none",
"valType": "string"
},
- "description": "Sets the font used for `title`. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets the font used for `title`.",
"editType": "plot",
"family": {
"arrayOk": true,
@@ -60568,7 +57075,7 @@
}
},
"position": {
- "description": "Specifies the location of the `title`. Note that the title's position used to be set by the now deprecated `titleposition` attribute.",
+ "description": "Specifies the location of the `title`.",
"editType": "plot",
"valType": "enumerated",
"values": [
@@ -60583,7 +57090,7 @@
},
"role": "object",
"text": {
- "description": "Sets the title of the chart. If it is empty, no title is displayed. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the chart. If it is empty, no title is displayed.",
"dflt": "",
"editType": "plot",
"valType": "string"
@@ -62948,112 +59455,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -63493,7 +59894,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -63579,7 +59980,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -63589,7 +59990,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -65694,112 +62095,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "calc",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "calc",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "calc",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "calc",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "calc",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "calc",
- "valType": "string"
- },
- "size": {
- "editType": "calc",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "calc",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -66239,7 +62534,7 @@
"editType": "calc",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "calc",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -66325,7 +62620,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "calc",
"valType": "enumerated",
"values": [
@@ -66335,7 +62630,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "calc",
"valType": "string"
}
@@ -66509,112 +62804,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "calc",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "calc",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "calc",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "calc",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "calc",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "calc",
- "valType": "string"
- },
- "size": {
- "editType": "calc",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "calc",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -67054,7 +63243,7 @@
"editType": "calc",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "calc",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -67140,7 +63329,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "calc",
"valType": "enumerated",
"values": [
@@ -67150,7 +63339,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "calc",
"valType": "string"
}
@@ -68452,112 +64641,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -68997,7 +65080,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -69083,7 +65166,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -69093,7 +65176,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -70855,112 +66938,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "calc",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "calc",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "calc",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "calc",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "calc",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "calc",
- "valType": "string"
- },
- "size": {
- "editType": "calc",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "calc",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -71400,7 +67377,7 @@
"editType": "calc",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "calc",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -71486,7 +67463,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "calc",
"valType": "enumerated",
"values": [
@@ -71496,7 +67473,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "calc",
"valType": "string"
}
@@ -73373,112 +69350,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "calc",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "calc",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "calc",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "calc",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "calc",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "calc",
- "valType": "string"
- },
- "size": {
- "editType": "calc",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "calc",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -73918,7 +69789,7 @@
"editType": "calc",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "calc",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -74004,7 +69875,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "calc",
"valType": "enumerated",
"values": [
@@ -74014,7 +69885,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "calc",
"valType": "string"
}
@@ -75811,112 +71682,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "calc",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "calc",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "calc",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "calc",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "calc",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "calc",
- "valType": "string"
- },
- "size": {
- "editType": "calc",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "calc",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -76356,7 +72121,7 @@
"editType": "calc",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "calc",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -76442,7 +72207,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "calc",
"valType": "enumerated",
"values": [
@@ -76452,7 +72217,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "calc",
"valType": "string"
}
@@ -77464,112 +73229,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "calc",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "calc",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "calc",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "calc",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "calc",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "calc",
- "valType": "string"
- },
- "size": {
- "editType": "calc",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "calc",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -78009,7 +73668,7 @@
"editType": "calc",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "calc",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -78095,7 +73754,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "calc",
"valType": "enumerated",
"values": [
@@ -78105,7 +73764,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "calc",
"valType": "string"
}
@@ -79100,112 +74759,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -79645,7 +75198,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -79731,7 +75284,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -79741,7 +75294,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -81476,112 +77029,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "calc",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "calc",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "calc",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "calc",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "calc",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "calc",
- "valType": "string"
- },
- "size": {
- "editType": "calc",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "calc",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -82021,7 +77468,7 @@
"editType": "calc",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "calc",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -82107,7 +77554,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "calc",
"valType": "enumerated",
"values": [
@@ -82117,7 +77564,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "calc",
"valType": "string"
}
@@ -83796,112 +79243,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -84341,7 +79682,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -84427,7 +79768,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -84437,7 +79778,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -86211,112 +81552,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -86756,7 +81991,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -86842,7 +82077,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -86852,7 +82087,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -88557,112 +83792,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -89102,7 +84231,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -89188,7 +84317,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -89198,7 +84327,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -90194,112 +85323,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -90739,7 +85762,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -90825,7 +85848,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -90835,7 +85858,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -92345,112 +87368,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -92890,7 +87807,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -92976,7 +87893,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -92986,7 +87903,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -93745,112 +88662,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "calc",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "calc",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "calc",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "calc",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "calc",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "calc",
- "valType": "string"
- },
- "size": {
- "editType": "calc",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "calc",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -94290,7 +89101,7 @@
"editType": "calc",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "calc",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -94376,7 +89187,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "calc",
"valType": "enumerated",
"values": [
@@ -94386,7 +89197,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "calc",
"valType": "string"
}
@@ -97177,112 +91988,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "colorbars",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "colorbars",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "colorbars",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "colorbars",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "colorbars",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "colorbars",
- "valType": "string"
- },
- "size": {
- "editType": "colorbars",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "colorbars",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "colorbars",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -97722,7 +92427,7 @@
"editType": "colorbars",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "colorbars",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -97808,7 +92513,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "colorbars",
"valType": "enumerated",
"values": [
@@ -97818,7 +92523,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "colorbars",
"valType": "string"
}
@@ -100331,112 +95036,6 @@
"valType": "subplotid"
},
"colorbar": {
- "_deprecated": {
- "title": {
- "description": "Deprecated in favor of color bar's `title.text`. Note that value of color bar's `title` is no longer a simple *string* but a set of sub-attributes.",
- "editType": "calc",
- "valType": "string"
- },
- "titlefont": {
- "color": {
- "editType": "calc",
- "valType": "color"
- },
- "description": "Deprecated in favor of color bar's `title.font`.",
- "editType": "calc",
- "family": {
- "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
- "editType": "calc",
- "noBlank": true,
- "strict": true,
- "valType": "string"
- },
- "lineposition": {
- "description": "Sets the kind of decoration line(s) with text, such as an *under*, *over* or *through* as well as combinations e.g. *under+over*, etc.",
- "dflt": "none",
- "editType": "calc",
- "extras": [
- "none"
- ],
- "flags": [
- "under",
- "over",
- "through"
- ],
- "valType": "flaglist"
- },
- "shadow": {
- "description": "Sets the shape and color of the shadow behind text. *auto* places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.",
- "dflt": "none",
- "editType": "calc",
- "valType": "string"
- },
- "size": {
- "editType": "calc",
- "min": 1,
- "valType": "number"
- },
- "style": {
- "description": "Sets whether a font should be styled with a normal or italic face from its family.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "italic"
- ]
- },
- "textcase": {
- "description": "Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "word caps",
- "upper",
- "lower"
- ]
- },
- "variant": {
- "description": "Sets the variant of the font.",
- "dflt": "normal",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "normal",
- "small-caps",
- "all-small-caps",
- "all-petite-caps",
- "petite-caps",
- "unicase"
- ]
- },
- "weight": {
- "description": "Sets the weight (or boldness) of the font.",
- "dflt": "normal",
- "editType": "calc",
- "extras": [
- "normal",
- "bold"
- ],
- "max": 1000,
- "min": 1,
- "valType": "integer"
- }
- },
- "titleside": {
- "description": "Deprecated in favor of color bar's `title.side`.",
- "dflt": "top",
- "editType": "calc",
- "valType": "enumerated",
- "values": [
- "right",
- "top",
- "bottom"
- ]
- }
- },
"bgcolor": {
"description": "Sets the color of padded area.",
"dflt": "rgba(0,0,0,0)",
@@ -100876,7 +95475,7 @@
"editType": "calc",
"valType": "color"
},
- "description": "Sets this color bar's title font. Note that the title's font used to be set by the now deprecated `titlefont` attribute.",
+ "description": "Sets this color bar's title font.",
"editType": "calc",
"family": {
"description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
@@ -100962,7 +95561,7 @@
},
"role": "object",
"side": {
- "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*.",
"editType": "calc",
"valType": "enumerated",
"values": [
@@ -100972,7 +95571,7 @@
]
},
"text": {
- "description": "Sets the title of the color bar. Note that before the existence of `title.text`, the title's contents used to be defined as the `title` attribute itself. This behavior has been deprecated.",
+ "description": "Sets the title of the color bar.",
"editType": "calc",
"valType": "string"
}