diff --git a/codegen/resources/plot-schema.json b/codegen/resources/plot-schema.json index ff766ea613..245f15f449 100644 --- a/codegen/resources/plot-schema.json +++ b/codegen/resources/plot-schema.json @@ -47008,7 +47008,7 @@ "editType": "calc", "role": "object", "side": { - "description": "Determines on which side of the the treemap the `pathbar` should be presented.", + "description": "Determines on which side of the treemap the `pathbar` should be presented.", "dflt": "top", "editType": "plot", "valType": "enumerated", @@ -64477,7 +64477,7 @@ }, "hovertext": { "arrayOk": true, - "description": "Sets hover text elements associated with each (a,b) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order to the the data points in (a,b). To be seen, trace `hoverinfo` must contain a *text* flag.", + "description": "Sets hover text elements associated with each (a,b) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order of the data points in (a,b). To be seen, trace `hoverinfo` must contain a *text* flag.", "dflt": "", "editType": "style", "valType": "string" @@ -66186,7 +66186,7 @@ }, "text": { "arrayOk": true, - "description": "Sets text elements associated with each (a,b) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order to the the data points in (a,b). If trace `hoverinfo` contains a *text* flag and *hovertext* is not set, these elements will be seen in the hover labels.", + "description": "Sets text elements associated with each (a,b) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order of the data points in (a,b). If trace `hoverinfo` contains a *text* flag and *hovertext* is not set, these elements will be seen in the hover labels.", "dflt": "", "editType": "calc", "valType": "string" @@ -81356,7 +81356,7 @@ }, "hovertext": { "arrayOk": true, - "description": "Sets hover text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order to the the data points in (a,b,c). To be seen, trace `hoverinfo` must contain a *text* flag.", + "description": "Sets hover text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order of the data points in (a,b,c). To be seen, trace `hoverinfo` must contain a *text* flag.", "dflt": "", "editType": "style", "valType": "string" @@ -83078,7 +83078,7 @@ }, "text": { "arrayOk": true, - "description": "Sets text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order to the the data points in (a,b,c). If trace `hoverinfo` contains a *text* flag and *hovertext* is not set, these elements will be seen in the hover labels.", + "description": "Sets text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order of the data points in (a,b,c). If trace `hoverinfo` contains a *text* flag and *hovertext* is not set, these elements will be seen in the hover labels.", "dflt": "", "editType": "calc", "valType": "string" @@ -93092,7 +93092,7 @@ "editType": "calc", "role": "object", "side": { - "description": "Determines on which side of the the treemap the `pathbar` should be presented.", + "description": "Determines on which side of the treemap the `pathbar` should be presented.", "dflt": "top", "editType": "plot", "valType": "enumerated", diff --git a/doc/python/carpet-plot.md b/doc/python/carpet-plot.md index 40d2b020f7..afd81107a7 100644 --- a/doc/python/carpet-plot.md +++ b/doc/python/carpet-plot.md @@ -117,7 +117,7 @@ fig.show() ### Cheater plot layout -The layout of cheater plots is not unique and depends upon the `cheaterslope` and axis `cheatertype` parameters. If `x` is not specified, each row of the `x` array is constructed based on the the formula `a + cheaterslope * b`, where `a` and `b` are either the value or the integer index of `a` and `b` respectively, depending on the corresponding axis `cheatertype`. Although the layout of the axis below is different than the plots above, it represents the same data as the axes above. +The layout of cheater plots is not unique and depends upon the `cheaterslope` and axis `cheatertype` parameters. If `x` is not specified, each row of the `x` array is constructed based on the formula `a + cheaterslope * b`, where `a` and `b` are either the value or the integer index of `a` and `b` respectively, depending on the corresponding axis `cheatertype`. Although the layout of the axis below is different than the plots above, it represents the same data as the axes above. ```python import plotly.graph_objects as go diff --git a/doc/python/parallel-categories-diagram.md b/doc/python/parallel-categories-diagram.md index 51ecd4168b..4407e1cb2e 100644 --- a/doc/python/parallel-categories-diagram.md +++ b/doc/python/parallel-categories-diagram.md @@ -114,7 +114,7 @@ fig.show() #### Multi-Color Parallel Categories Diagram -The color of the ribbons can be specified with the `line.color` property. Similar to other trace types, this property may be set to an array of numbers, which are then mapped to colors according to the the colorscale specified in the `line.colorscale` property. +The color of the ribbons can be specified with the `line.color` property. Similar to other trace types, this property may be set to an array of numbers, which are then mapped to colors according to the colorscale specified in the `line.colorscale` property. Here is an example of visualizing the survival rate of passengers in the titanic dataset, where the ribbons are colored based on survival outcome. diff --git a/doc/python/selections.md b/doc/python/selections.md index cab711e318..573ba08a82 100644 --- a/doc/python/selections.md +++ b/doc/python/selections.md @@ -153,7 +153,7 @@ fig.show() ## Referencing Selections on Multiple Cartesian Subplots -You can add selections to multiple Cartesian subplots by specifying `xref` and/or `yref`. Here, we add one selection on the plot with axis ids `x` and `y2` and two selections to the the plot with axis ids `x` and `y`. +You can add selections to multiple Cartesian subplots by specifying `xref` and/or `yref`. Here, we add one selection on the plot with axis ids `x` and `y2` and two selections to the plot with axis ids `x` and `y`. ```python import plotly.graph_objects as go diff --git a/doc/python/text-and-annotations.md b/doc/python/text-and-annotations.md index 56f341e872..0a3a3e1ee7 100644 --- a/doc/python/text-and-annotations.md +++ b/doc/python/text-and-annotations.md @@ -162,7 +162,7 @@ fig.show() ### Controlling Maximum Text Size -The `textfont_size` parameter of the the [pie](/python/pie-charts), [bar](/python/bar-charts)-like, [sunburst](/python/sunburst-charts) and [treemap](/python/treemaps) traces can be used to set the **maximum font size** used in the chart. Note that the `textfont` parameter sets the `insidetextfont` and `outsidetextfont` parameter, which can also be set independently. +The `textfont_size` parameter of the [pie](/python/pie-charts), [bar](/python/bar-charts)-like, [sunburst](/python/sunburst-charts) and [treemap](/python/treemaps) traces can be used to set the **maximum font size** used in the chart. Note that the `textfont` parameter sets the `insidetextfont` and `outsidetextfont` parameter, which can also be set independently. ```python import plotly.express as px diff --git a/plotly/colors/carto.py b/plotly/colors/carto.py new file mode 100644 index 0000000000..f5c503f325 --- /dev/null +++ b/plotly/colors/carto.py @@ -0,0 +1,419 @@ +""" +Color sequences and scales from CARTO's CartoColors + +Learn more at https://github.com/CartoDB/CartoColor + +CARTOColors are made available under a Creative Commons Attribution license: https://creativecommons.org/licenses/by/3.0/us/ +""" + +from ._swatches import _swatches + + +def swatches(template=None): + return _swatches(__name__, globals(), template) + + +swatches.__doc__ = _swatches.__doc__ + +Burg = [ + "rgb(255, 198, 196)", + "rgb(244, 163, 168)", + "rgb(227, 129, 145)", + "rgb(204, 96, 125)", + "rgb(173, 70, 108)", + "rgb(139, 48, 88)", + "rgb(103, 32, 68)", +] + +Burgyl = [ + "rgb(251, 230, 197)", + "rgb(245, 186, 152)", + "rgb(238, 138, 130)", + "rgb(220, 113, 118)", + "rgb(200, 88, 108)", + "rgb(156, 63, 93)", + "rgb(112, 40, 74)", +] + +Redor = [ + "rgb(246, 210, 169)", + "rgb(245, 183, 142)", + "rgb(241, 156, 124)", + "rgb(234, 129, 113)", + "rgb(221, 104, 108)", + "rgb(202, 82, 104)", + "rgb(177, 63, 100)", +] + +Oryel = [ + "rgb(236, 218, 154)", + "rgb(239, 196, 126)", + "rgb(243, 173, 106)", + "rgb(247, 148, 93)", + "rgb(249, 123, 87)", + "rgb(246, 99, 86)", + "rgb(238, 77, 90)", +] + +Peach = [ + "rgb(253, 224, 197)", + "rgb(250, 203, 166)", + "rgb(248, 181, 139)", + "rgb(245, 158, 114)", + "rgb(242, 133, 93)", + "rgb(239, 106, 76)", + "rgb(235, 74, 64)", +] + +Pinkyl = [ + "rgb(254, 246, 181)", + "rgb(255, 221, 154)", + "rgb(255, 194, 133)", + "rgb(255, 166, 121)", + "rgb(250, 138, 118)", + "rgb(241, 109, 122)", + "rgb(225, 83, 131)", +] + +Mint = [ + "rgb(228, 241, 225)", + "rgb(180, 217, 204)", + "rgb(137, 192, 182)", + "rgb(99, 166, 160)", + "rgb(68, 140, 138)", + "rgb(40, 114, 116)", + "rgb(13, 88, 95)", +] + +Blugrn = [ + "rgb(196, 230, 195)", + "rgb(150, 210, 164)", + "rgb(109, 188, 144)", + "rgb(77, 162, 132)", + "rgb(54, 135, 122)", + "rgb(38, 107, 110)", + "rgb(29, 79, 96)", +] + +Darkmint = [ + "rgb(210, 251, 212)", + "rgb(165, 219, 194)", + "rgb(123, 188, 176)", + "rgb(85, 156, 158)", + "rgb(58, 124, 137)", + "rgb(35, 93, 114)", + "rgb(18, 63, 90)", +] + +Emrld = [ + "rgb(211, 242, 163)", + "rgb(151, 225, 150)", + "rgb(108, 192, 139)", + "rgb(76, 155, 130)", + "rgb(33, 122, 121)", + "rgb(16, 89, 101)", + "rgb(7, 64, 80)", +] + +Aggrnyl = [ + "rgb(36, 86, 104)", + "rgb(15, 114, 121)", + "rgb(13, 143, 129)", + "rgb(57, 171, 126)", + "rgb(110, 197, 116)", + "rgb(169, 220, 103)", + "rgb(237, 239, 93)", +] + +Bluyl = [ + "rgb(247, 254, 174)", + "rgb(183, 230, 165)", + "rgb(124, 203, 162)", + "rgb(70, 174, 160)", + "rgb(8, 144, 153)", + "rgb(0, 113, 139)", + "rgb(4, 82, 117)", +] + +Teal = [ + "rgb(209, 238, 234)", + "rgb(168, 219, 217)", + "rgb(133, 196, 201)", + "rgb(104, 171, 184)", + "rgb(79, 144, 166)", + "rgb(59, 115, 143)", + "rgb(42, 86, 116)", +] + +Tealgrn = [ + "rgb(176, 242, 188)", + "rgb(137, 232, 172)", + "rgb(103, 219, 165)", + "rgb(76, 200, 163)", + "rgb(56, 178, 163)", + "rgb(44, 152, 160)", + "rgb(37, 125, 152)", +] + +Purp = [ + "rgb(243, 224, 247)", + "rgb(228, 199, 241)", + "rgb(209, 175, 232)", + "rgb(185, 152, 221)", + "rgb(159, 130, 206)", + "rgb(130, 109, 186)", + "rgb(99, 88, 159)", +] + +Purpor = [ + "rgb(249, 221, 218)", + "rgb(242, 185, 196)", + "rgb(229, 151, 185)", + "rgb(206, 120, 179)", + "rgb(173, 95, 173)", + "rgb(131, 75, 160)", + "rgb(87, 59, 136)", +] + +Sunset = [ + "rgb(243, 231, 155)", + "rgb(250, 196, 132)", + "rgb(248, 160, 126)", + "rgb(235, 127, 134)", + "rgb(206, 102, 147)", + "rgb(160, 89, 160)", + "rgb(92, 83, 165)", +] + +Magenta = [ + "rgb(243, 203, 211)", + "rgb(234, 169, 189)", + "rgb(221, 136, 172)", + "rgb(202, 105, 157)", + "rgb(177, 77, 142)", + "rgb(145, 53, 125)", + "rgb(108, 33, 103)", +] + +Sunsetdark = [ + "rgb(252, 222, 156)", + "rgb(250, 164, 118)", + "rgb(240, 116, 110)", + "rgb(227, 79, 111)", + "rgb(220, 57, 119)", + "rgb(185, 37, 122)", + "rgb(124, 29, 111)", +] + +Agsunset = [ + "rgb(75, 41, 145)", + "rgb(135, 44, 162)", + "rgb(192, 54, 157)", + "rgb(234, 79, 136)", + "rgb(250, 120, 118)", + "rgb(246, 169, 122)", + "rgb(237, 217, 163)", +] + +Brwnyl = [ + "rgb(237, 229, 207)", + "rgb(224, 194, 162)", + "rgb(211, 156, 131)", + "rgb(193, 118, 111)", + "rgb(166, 84, 97)", + "rgb(129, 55, 83)", + "rgb(84, 31, 63)", +] + +# Diverging schemes + +Armyrose = [ + "rgb(121, 130, 52)", + "rgb(163, 173, 98)", + "rgb(208, 211, 162)", + "rgb(253, 251, 228)", + "rgb(240, 198, 195)", + "rgb(223, 145, 163)", + "rgb(212, 103, 128)", +] + +Fall = [ + "rgb(61, 89, 65)", + "rgb(119, 136, 104)", + "rgb(181, 185, 145)", + "rgb(246, 237, 189)", + "rgb(237, 187, 138)", + "rgb(222, 138, 90)", + "rgb(202, 86, 44)", +] + +Geyser = [ + "rgb(0, 128, 128)", + "rgb(112, 164, 148)", + "rgb(180, 200, 168)", + "rgb(246, 237, 189)", + "rgb(237, 187, 138)", + "rgb(222, 138, 90)", + "rgb(202, 86, 44)", +] + +Temps = [ + "rgb(0, 147, 146)", + "rgb(57, 177, 133)", + "rgb(156, 203, 134)", + "rgb(233, 226, 156)", + "rgb(238, 180, 121)", + "rgb(232, 132, 113)", + "rgb(207, 89, 126)", +] + +Tealrose = [ + "rgb(0, 147, 146)", + "rgb(114, 170, 161)", + "rgb(177, 199, 179)", + "rgb(241, 234, 200)", + "rgb(229, 185, 173)", + "rgb(217, 137, 148)", + "rgb(208, 88, 126)", +] + +Tropic = [ + "rgb(0, 155, 158)", + "rgb(66, 183, 185)", + "rgb(167, 211, 212)", + "rgb(241, 241, 241)", + "rgb(228, 193, 217)", + "rgb(214, 145, 193)", + "rgb(199, 93, 171)", +] + +Earth = [ + "rgb(161, 105, 40)", + "rgb(189, 146, 90)", + "rgb(214, 189, 141)", + "rgb(237, 234, 194)", + "rgb(181, 200, 184)", + "rgb(121, 167, 172)", + "rgb(40, 135, 161)", +] + +# Qualitative palettes + +Antique = [ + "rgb(133, 92, 117)", + "rgb(217, 175, 107)", + "rgb(175, 100, 88)", + "rgb(115, 111, 76)", + "rgb(82, 106, 131)", + "rgb(98, 83, 119)", + "rgb(104, 133, 92)", + "rgb(156, 156, 94)", + "rgb(160, 97, 119)", + "rgb(140, 120, 93)", + "rgb(124, 124, 124)", +] + +Bold = [ + "rgb(127, 60, 141)", + "rgb(17, 165, 121)", + "rgb(57, 105, 172)", + "rgb(242, 183, 1)", + "rgb(231, 63, 116)", + "rgb(128, 186, 90)", + "rgb(230, 131, 16)", + "rgb(0, 134, 149)", + "rgb(207, 28, 144)", + "rgb(249, 123, 114)", + "rgb(165, 170, 153)", +] + +Pastel = [ + "rgb(102, 197, 204)", + "rgb(246, 207, 113)", + "rgb(248, 156, 116)", + "rgb(220, 176, 242)", + "rgb(135, 197, 95)", + "rgb(158, 185, 243)", + "rgb(254, 136, 177)", + "rgb(201, 219, 116)", + "rgb(139, 224, 164)", + "rgb(180, 151, 231)", + "rgb(179, 179, 179)", +] + +Prism = [ + "rgb(95, 70, 144)", + "rgb(29, 105, 150)", + "rgb(56, 166, 165)", + "rgb(15, 133, 84)", + "rgb(115, 175, 72)", + "rgb(237, 173, 8)", + "rgb(225, 124, 5)", + "rgb(204, 80, 62)", + "rgb(148, 52, 110)", + "rgb(111, 64, 112)", + "rgb(102, 102, 102)", +] + +Safe = [ + "rgb(136, 204, 238)", + "rgb(204, 102, 119)", + "rgb(221, 204, 119)", + "rgb(17, 119, 51)", + "rgb(51, 34, 136)", + "rgb(170, 68, 153)", + "rgb(68, 170, 153)", + "rgb(153, 153, 51)", + "rgb(136, 34, 85)", + "rgb(102, 17, 0)", + "rgb(136, 136, 136)", +] + +Vivid = [ + "rgb(229, 134, 6)", + "rgb(93, 105, 177)", + "rgb(82, 188, 163)", + "rgb(153, 201, 69)", + "rgb(204, 97, 176)", + "rgb(36, 121, 108)", + "rgb(218, 165, 27)", + "rgb(47, 138, 196)", + "rgb(118, 78, 159)", + "rgb(237, 100, 90)", + "rgb(165, 170, 153)", +] + +Aggrnyl_r = Aggrnyl[::-1] +Agsunset_r = Agsunset[::-1] +Antique_r = Antique[::-1] +Armyrose_r = Armyrose[::-1] +Blugrn_r = Blugrn[::-1] +Bluyl_r = Bluyl[::-1] +Bold_r = Bold[::-1] +Brwnyl_r = Brwnyl[::-1] +Burg_r = Burg[::-1] +Burgyl_r = Burgyl[::-1] +Darkmint_r = Darkmint[::-1] +Earth_r = Earth[::-1] +Emrld_r = Emrld[::-1] +Fall_r = Fall[::-1] +Geyser_r = Geyser[::-1] +Magenta_r = Magenta[::-1] +Mint_r = Mint[::-1] +Oryel_r = Oryel[::-1] +Pastel_r = Pastel[::-1] +Peach_r = Peach[::-1] +Pinkyl_r = Pinkyl[::-1] +Prism_r = Prism[::-1] +Purp_r = Purp[::-1] +Purpor_r = Purpor[::-1] +Redor_r = Redor[::-1] +Safe_r = Safe[::-1] +Sunset_r = Sunset[::-1] +Sunsetdark_r = Sunsetdark[::-1] +Teal_r = Teal[::-1] +Tealgrn_r = Tealgrn[::-1] +Tealrose_r = Tealrose[::-1] +Temps_r = Temps[::-1] +Tropic_r = Tropic[::-1] +Vivid_r = Vivid[::-1] diff --git a/plotly/colors/cmocean.py b/plotly/colors/cmocean.py new file mode 100644 index 0000000000..18944b5936 --- /dev/null +++ b/plotly/colors/cmocean.py @@ -0,0 +1,296 @@ +""" +Color scales from the cmocean project + +Learn more at https://matplotlib.org/cmocean/ + +cmocean is made available under an MIT license: https://github.com/matplotlib/cmocean/blob/master/LICENSE.txt +""" + +from ._swatches import _swatches, _swatches_continuous + + +def swatches(template=None): + return _swatches(__name__, globals(), template) + + +swatches.__doc__ = _swatches.__doc__ + + +def swatches_continuous(template=None): + return _swatches_continuous(__name__, globals(), template) + + +swatches_continuous.__doc__ = _swatches_continuous.__doc__ + + +turbid = [ + "rgb(232, 245, 171)", + "rgb(220, 219, 137)", + "rgb(209, 193, 107)", + "rgb(199, 168, 83)", + "rgb(186, 143, 66)", + "rgb(170, 121, 60)", + "rgb(151, 103, 58)", + "rgb(129, 87, 56)", + "rgb(104, 72, 53)", + "rgb(80, 59, 46)", + "rgb(57, 45, 37)", + "rgb(34, 30, 27)", +] +thermal = [ + "rgb(3, 35, 51)", + "rgb(13, 48, 100)", + "rgb(53, 50, 155)", + "rgb(93, 62, 153)", + "rgb(126, 77, 143)", + "rgb(158, 89, 135)", + "rgb(193, 100, 121)", + "rgb(225, 113, 97)", + "rgb(246, 139, 69)", + "rgb(251, 173, 60)", + "rgb(246, 211, 70)", + "rgb(231, 250, 90)", +] +haline = [ + "rgb(41, 24, 107)", + "rgb(42, 35, 160)", + "rgb(15, 71, 153)", + "rgb(18, 95, 142)", + "rgb(38, 116, 137)", + "rgb(53, 136, 136)", + "rgb(65, 157, 133)", + "rgb(81, 178, 124)", + "rgb(111, 198, 107)", + "rgb(160, 214, 91)", + "rgb(212, 225, 112)", + "rgb(253, 238, 153)", +] +solar = [ + "rgb(51, 19, 23)", + "rgb(79, 28, 33)", + "rgb(108, 36, 36)", + "rgb(135, 47, 32)", + "rgb(157, 66, 25)", + "rgb(174, 88, 20)", + "rgb(188, 111, 19)", + "rgb(199, 137, 22)", + "rgb(209, 164, 32)", + "rgb(217, 192, 44)", + "rgb(222, 222, 59)", + "rgb(224, 253, 74)", +] +ice = [ + "rgb(3, 5, 18)", + "rgb(25, 25, 51)", + "rgb(44, 42, 87)", + "rgb(58, 60, 125)", + "rgb(62, 83, 160)", + "rgb(62, 109, 178)", + "rgb(72, 134, 187)", + "rgb(89, 159, 196)", + "rgb(114, 184, 205)", + "rgb(149, 207, 216)", + "rgb(192, 229, 232)", + "rgb(234, 252, 253)", +] +gray = [ + "rgb(0, 0, 0)", + "rgb(16, 16, 16)", + "rgb(38, 38, 38)", + "rgb(59, 59, 59)", + "rgb(81, 80, 80)", + "rgb(102, 101, 101)", + "rgb(124, 123, 122)", + "rgb(146, 146, 145)", + "rgb(171, 171, 170)", + "rgb(197, 197, 195)", + "rgb(224, 224, 223)", + "rgb(254, 254, 253)", +] +oxy = [ + "rgb(63, 5, 5)", + "rgb(101, 6, 13)", + "rgb(138, 17, 9)", + "rgb(96, 95, 95)", + "rgb(119, 118, 118)", + "rgb(142, 141, 141)", + "rgb(166, 166, 165)", + "rgb(193, 192, 191)", + "rgb(222, 222, 220)", + "rgb(239, 248, 90)", + "rgb(230, 210, 41)", + "rgb(220, 174, 25)", +] +deep = [ + "rgb(253, 253, 204)", + "rgb(206, 236, 179)", + "rgb(156, 219, 165)", + "rgb(111, 201, 163)", + "rgb(86, 177, 163)", + "rgb(76, 153, 160)", + "rgb(68, 130, 155)", + "rgb(62, 108, 150)", + "rgb(62, 82, 143)", + "rgb(64, 60, 115)", + "rgb(54, 43, 77)", + "rgb(39, 26, 44)", +] +dense = [ + "rgb(230, 240, 240)", + "rgb(191, 221, 229)", + "rgb(156, 201, 226)", + "rgb(129, 180, 227)", + "rgb(115, 154, 228)", + "rgb(117, 127, 221)", + "rgb(120, 100, 202)", + "rgb(119, 74, 175)", + "rgb(113, 50, 141)", + "rgb(100, 31, 104)", + "rgb(80, 20, 66)", + "rgb(54, 14, 36)", +] +algae = [ + "rgb(214, 249, 207)", + "rgb(186, 228, 174)", + "rgb(156, 209, 143)", + "rgb(124, 191, 115)", + "rgb(85, 174, 91)", + "rgb(37, 157, 81)", + "rgb(7, 138, 78)", + "rgb(13, 117, 71)", + "rgb(23, 95, 61)", + "rgb(25, 75, 49)", + "rgb(23, 55, 35)", + "rgb(17, 36, 20)", +] +matter = [ + "rgb(253, 237, 176)", + "rgb(250, 205, 145)", + "rgb(246, 173, 119)", + "rgb(240, 142, 98)", + "rgb(231, 109, 84)", + "rgb(216, 80, 83)", + "rgb(195, 56, 90)", + "rgb(168, 40, 96)", + "rgb(138, 29, 99)", + "rgb(107, 24, 93)", + "rgb(76, 21, 80)", + "rgb(47, 15, 61)", +] +speed = [ + "rgb(254, 252, 205)", + "rgb(239, 225, 156)", + "rgb(221, 201, 106)", + "rgb(194, 182, 59)", + "rgb(157, 167, 21)", + "rgb(116, 153, 5)", + "rgb(75, 138, 20)", + "rgb(35, 121, 36)", + "rgb(11, 100, 44)", + "rgb(18, 78, 43)", + "rgb(25, 56, 34)", + "rgb(23, 35, 18)", +] +amp = [ + "rgb(241, 236, 236)", + "rgb(230, 209, 203)", + "rgb(221, 182, 170)", + "rgb(213, 156, 137)", + "rgb(205, 129, 103)", + "rgb(196, 102, 73)", + "rgb(186, 74, 47)", + "rgb(172, 44, 36)", + "rgb(149, 19, 39)", + "rgb(120, 14, 40)", + "rgb(89, 13, 31)", + "rgb(60, 9, 17)", +] +tempo = [ + "rgb(254, 245, 244)", + "rgb(222, 224, 210)", + "rgb(189, 206, 181)", + "rgb(153, 189, 156)", + "rgb(110, 173, 138)", + "rgb(65, 157, 129)", + "rgb(25, 137, 125)", + "rgb(18, 116, 117)", + "rgb(25, 94, 106)", + "rgb(28, 72, 93)", + "rgb(25, 51, 80)", + "rgb(20, 29, 67)", +] +phase = [ + "rgb(167, 119, 12)", + "rgb(197, 96, 51)", + "rgb(217, 67, 96)", + "rgb(221, 38, 163)", + "rgb(196, 59, 224)", + "rgb(153, 97, 244)", + "rgb(95, 127, 228)", + "rgb(40, 144, 183)", + "rgb(15, 151, 136)", + "rgb(39, 153, 79)", + "rgb(119, 141, 17)", + "rgb(167, 119, 12)", +] +balance = [ + "rgb(23, 28, 66)", + "rgb(41, 58, 143)", + "rgb(11, 102, 189)", + "rgb(69, 144, 185)", + "rgb(142, 181, 194)", + "rgb(210, 216, 219)", + "rgb(230, 210, 204)", + "rgb(213, 157, 137)", + "rgb(196, 101, 72)", + "rgb(172, 43, 36)", + "rgb(120, 14, 40)", + "rgb(60, 9, 17)", +] +delta = [ + "rgb(16, 31, 63)", + "rgb(38, 62, 144)", + "rgb(30, 110, 161)", + "rgb(60, 154, 171)", + "rgb(140, 193, 186)", + "rgb(217, 229, 218)", + "rgb(239, 226, 156)", + "rgb(195, 182, 59)", + "rgb(115, 152, 5)", + "rgb(34, 120, 36)", + "rgb(18, 78, 43)", + "rgb(23, 35, 18)", +] +curl = [ + "rgb(20, 29, 67)", + "rgb(28, 72, 93)", + "rgb(18, 115, 117)", + "rgb(63, 156, 129)", + "rgb(153, 189, 156)", + "rgb(223, 225, 211)", + "rgb(241, 218, 206)", + "rgb(224, 160, 137)", + "rgb(203, 101, 99)", + "rgb(164, 54, 96)", + "rgb(111, 23, 91)", + "rgb(51, 13, 53)", +] + +algae_r = algae[::-1] +amp_r = amp[::-1] +balance_r = balance[::-1] +curl_r = curl[::-1] +deep_r = deep[::-1] +delta_r = delta[::-1] +dense_r = dense[::-1] +gray_r = gray[::-1] +haline_r = haline[::-1] +ice_r = ice[::-1] +matter_r = matter[::-1] +oxy_r = oxy[::-1] +phase_r = phase[::-1] +solar_r = solar[::-1] +speed_r = speed[::-1] +tempo_r = tempo[::-1] +thermal_r = thermal[::-1] +turbid_r = turbid[::-1] diff --git a/plotly/colors/colorbrewer.py b/plotly/colors/colorbrewer.py new file mode 100644 index 0000000000..cbb286e43e --- /dev/null +++ b/plotly/colors/colorbrewer.py @@ -0,0 +1,494 @@ +""" +Color scales and sequences from the colorbrewer 2 project + +Learn more at http://colorbrewer2.org + +colorbrewer is made available under an Apache license: http://colorbrewer2.org/export/LICENSE.txt +""" + +from ._swatches import _swatches + + +def swatches(template=None): + return _swatches(__name__, globals(), template) + + +swatches.__doc__ = _swatches.__doc__ + +BrBG = [ + "rgb(84,48,5)", + "rgb(140,81,10)", + "rgb(191,129,45)", + "rgb(223,194,125)", + "rgb(246,232,195)", + "rgb(245,245,245)", + "rgb(199,234,229)", + "rgb(128,205,193)", + "rgb(53,151,143)", + "rgb(1,102,94)", + "rgb(0,60,48)", +] + +PRGn = [ + "rgb(64,0,75)", + "rgb(118,42,131)", + "rgb(153,112,171)", + "rgb(194,165,207)", + "rgb(231,212,232)", + "rgb(247,247,247)", + "rgb(217,240,211)", + "rgb(166,219,160)", + "rgb(90,174,97)", + "rgb(27,120,55)", + "rgb(0,68,27)", +] + +PiYG = [ + "rgb(142,1,82)", + "rgb(197,27,125)", + "rgb(222,119,174)", + "rgb(241,182,218)", + "rgb(253,224,239)", + "rgb(247,247,247)", + "rgb(230,245,208)", + "rgb(184,225,134)", + "rgb(127,188,65)", + "rgb(77,146,33)", + "rgb(39,100,25)", +] + +PuOr = [ + "rgb(127,59,8)", + "rgb(179,88,6)", + "rgb(224,130,20)", + "rgb(253,184,99)", + "rgb(254,224,182)", + "rgb(247,247,247)", + "rgb(216,218,235)", + "rgb(178,171,210)", + "rgb(128,115,172)", + "rgb(84,39,136)", + "rgb(45,0,75)", +] + +RdBu = [ + "rgb(103,0,31)", + "rgb(178,24,43)", + "rgb(214,96,77)", + "rgb(244,165,130)", + "rgb(253,219,199)", + "rgb(247,247,247)", + "rgb(209,229,240)", + "rgb(146,197,222)", + "rgb(67,147,195)", + "rgb(33,102,172)", + "rgb(5,48,97)", +] + +RdGy = [ + "rgb(103,0,31)", + "rgb(178,24,43)", + "rgb(214,96,77)", + "rgb(244,165,130)", + "rgb(253,219,199)", + "rgb(255,255,255)", + "rgb(224,224,224)", + "rgb(186,186,186)", + "rgb(135,135,135)", + "rgb(77,77,77)", + "rgb(26,26,26)", +] + +RdYlBu = [ + "rgb(165,0,38)", + "rgb(215,48,39)", + "rgb(244,109,67)", + "rgb(253,174,97)", + "rgb(254,224,144)", + "rgb(255,255,191)", + "rgb(224,243,248)", + "rgb(171,217,233)", + "rgb(116,173,209)", + "rgb(69,117,180)", + "rgb(49,54,149)", +] + +RdYlGn = [ + "rgb(165,0,38)", + "rgb(215,48,39)", + "rgb(244,109,67)", + "rgb(253,174,97)", + "rgb(254,224,139)", + "rgb(255,255,191)", + "rgb(217,239,139)", + "rgb(166,217,106)", + "rgb(102,189,99)", + "rgb(26,152,80)", + "rgb(0,104,55)", +] + +Spectral = [ + "rgb(158,1,66)", + "rgb(213,62,79)", + "rgb(244,109,67)", + "rgb(253,174,97)", + "rgb(254,224,139)", + "rgb(255,255,191)", + "rgb(230,245,152)", + "rgb(171,221,164)", + "rgb(102,194,165)", + "rgb(50,136,189)", + "rgb(94,79,162)", +] + +Set1 = [ + "rgb(228,26,28)", + "rgb(55,126,184)", + "rgb(77,175,74)", + "rgb(152,78,163)", + "rgb(255,127,0)", + "rgb(255,255,51)", + "rgb(166,86,40)", + "rgb(247,129,191)", + "rgb(153,153,153)", +] + + +Pastel1 = [ + "rgb(251,180,174)", + "rgb(179,205,227)", + "rgb(204,235,197)", + "rgb(222,203,228)", + "rgb(254,217,166)", + "rgb(255,255,204)", + "rgb(229,216,189)", + "rgb(253,218,236)", + "rgb(242,242,242)", +] +Dark2 = [ + "rgb(27,158,119)", + "rgb(217,95,2)", + "rgb(117,112,179)", + "rgb(231,41,138)", + "rgb(102,166,30)", + "rgb(230,171,2)", + "rgb(166,118,29)", + "rgb(102,102,102)", +] +Set2 = [ + "rgb(102,194,165)", + "rgb(252,141,98)", + "rgb(141,160,203)", + "rgb(231,138,195)", + "rgb(166,216,84)", + "rgb(255,217,47)", + "rgb(229,196,148)", + "rgb(179,179,179)", +] + + +Pastel2 = [ + "rgb(179,226,205)", + "rgb(253,205,172)", + "rgb(203,213,232)", + "rgb(244,202,228)", + "rgb(230,245,201)", + "rgb(255,242,174)", + "rgb(241,226,204)", + "rgb(204,204,204)", +] + +Set3 = [ + "rgb(141,211,199)", + "rgb(255,255,179)", + "rgb(190,186,218)", + "rgb(251,128,114)", + "rgb(128,177,211)", + "rgb(253,180,98)", + "rgb(179,222,105)", + "rgb(252,205,229)", + "rgb(217,217,217)", + "rgb(188,128,189)", + "rgb(204,235,197)", + "rgb(255,237,111)", +] + +Accent = [ + "rgb(127,201,127)", + "rgb(190,174,212)", + "rgb(253,192,134)", + "rgb(255,255,153)", + "rgb(56,108,176)", + "rgb(240,2,127)", + "rgb(191,91,23)", + "rgb(102,102,102)", +] + + +Paired = [ + "rgb(166,206,227)", + "rgb(31,120,180)", + "rgb(178,223,138)", + "rgb(51,160,44)", + "rgb(251,154,153)", + "rgb(227,26,28)", + "rgb(253,191,111)", + "rgb(255,127,0)", + "rgb(202,178,214)", + "rgb(106,61,154)", + "rgb(255,255,153)", + "rgb(177,89,40)", +] + + +Blues = [ + "rgb(247,251,255)", + "rgb(222,235,247)", + "rgb(198,219,239)", + "rgb(158,202,225)", + "rgb(107,174,214)", + "rgb(66,146,198)", + "rgb(33,113,181)", + "rgb(8,81,156)", + "rgb(8,48,107)", +] + +BuGn = [ + "rgb(247,252,253)", + "rgb(229,245,249)", + "rgb(204,236,230)", + "rgb(153,216,201)", + "rgb(102,194,164)", + "rgb(65,174,118)", + "rgb(35,139,69)", + "rgb(0,109,44)", + "rgb(0,68,27)", +] + +BuPu = [ + "rgb(247,252,253)", + "rgb(224,236,244)", + "rgb(191,211,230)", + "rgb(158,188,218)", + "rgb(140,150,198)", + "rgb(140,107,177)", + "rgb(136,65,157)", + "rgb(129,15,124)", + "rgb(77,0,75)", +] + +GnBu = [ + "rgb(247,252,240)", + "rgb(224,243,219)", + "rgb(204,235,197)", + "rgb(168,221,181)", + "rgb(123,204,196)", + "rgb(78,179,211)", + "rgb(43,140,190)", + "rgb(8,104,172)", + "rgb(8,64,129)", +] + +Greens = [ + "rgb(247,252,245)", + "rgb(229,245,224)", + "rgb(199,233,192)", + "rgb(161,217,155)", + "rgb(116,196,118)", + "rgb(65,171,93)", + "rgb(35,139,69)", + "rgb(0,109,44)", + "rgb(0,68,27)", +] + +Greys = [ + "rgb(255,255,255)", + "rgb(240,240,240)", + "rgb(217,217,217)", + "rgb(189,189,189)", + "rgb(150,150,150)", + "rgb(115,115,115)", + "rgb(82,82,82)", + "rgb(37,37,37)", + "rgb(0,0,0)", +] + +OrRd = [ + "rgb(255,247,236)", + "rgb(254,232,200)", + "rgb(253,212,158)", + "rgb(253,187,132)", + "rgb(252,141,89)", + "rgb(239,101,72)", + "rgb(215,48,31)", + "rgb(179,0,0)", + "rgb(127,0,0)", +] + +Oranges = [ + "rgb(255,245,235)", + "rgb(254,230,206)", + "rgb(253,208,162)", + "rgb(253,174,107)", + "rgb(253,141,60)", + "rgb(241,105,19)", + "rgb(217,72,1)", + "rgb(166,54,3)", + "rgb(127,39,4)", +] + +PuBu = [ + "rgb(255,247,251)", + "rgb(236,231,242)", + "rgb(208,209,230)", + "rgb(166,189,219)", + "rgb(116,169,207)", + "rgb(54,144,192)", + "rgb(5,112,176)", + "rgb(4,90,141)", + "rgb(2,56,88)", +] + +PuBuGn = [ + "rgb(255,247,251)", + "rgb(236,226,240)", + "rgb(208,209,230)", + "rgb(166,189,219)", + "rgb(103,169,207)", + "rgb(54,144,192)", + "rgb(2,129,138)", + "rgb(1,108,89)", + "rgb(1,70,54)", +] + +PuRd = [ + "rgb(247,244,249)", + "rgb(231,225,239)", + "rgb(212,185,218)", + "rgb(201,148,199)", + "rgb(223,101,176)", + "rgb(231,41,138)", + "rgb(206,18,86)", + "rgb(152,0,67)", + "rgb(103,0,31)", +] + +Purples = [ + "rgb(252,251,253)", + "rgb(239,237,245)", + "rgb(218,218,235)", + "rgb(188,189,220)", + "rgb(158,154,200)", + "rgb(128,125,186)", + "rgb(106,81,163)", + "rgb(84,39,143)", + "rgb(63,0,125)", +] + +RdPu = [ + "rgb(255,247,243)", + "rgb(253,224,221)", + "rgb(252,197,192)", + "rgb(250,159,181)", + "rgb(247,104,161)", + "rgb(221,52,151)", + "rgb(174,1,126)", + "rgb(122,1,119)", + "rgb(73,0,106)", +] + +Reds = [ + "rgb(255,245,240)", + "rgb(254,224,210)", + "rgb(252,187,161)", + "rgb(252,146,114)", + "rgb(251,106,74)", + "rgb(239,59,44)", + "rgb(203,24,29)", + "rgb(165,15,21)", + "rgb(103,0,13)", +] + +YlGn = [ + "rgb(255,255,229)", + "rgb(247,252,185)", + "rgb(217,240,163)", + "rgb(173,221,142)", + "rgb(120,198,121)", + "rgb(65,171,93)", + "rgb(35,132,67)", + "rgb(0,104,55)", + "rgb(0,69,41)", +] + +YlGnBu = [ + "rgb(255,255,217)", + "rgb(237,248,177)", + "rgb(199,233,180)", + "rgb(127,205,187)", + "rgb(65,182,196)", + "rgb(29,145,192)", + "rgb(34,94,168)", + "rgb(37,52,148)", + "rgb(8,29,88)", +] + +YlOrBr = [ + "rgb(255,255,229)", + "rgb(255,247,188)", + "rgb(254,227,145)", + "rgb(254,196,79)", + "rgb(254,153,41)", + "rgb(236,112,20)", + "rgb(204,76,2)", + "rgb(153,52,4)", + "rgb(102,37,6)", +] + +YlOrRd = [ + "rgb(255,255,204)", + "rgb(255,237,160)", + "rgb(254,217,118)", + "rgb(254,178,76)", + "rgb(253,141,60)", + "rgb(252,78,42)", + "rgb(227,26,28)", + "rgb(189,0,38)", + "rgb(128,0,38)", +] + +Accent_r = Accent[::-1] +Blues_r = Blues[::-1] +BrBG_r = BrBG[::-1] +BuGn_r = BuGn[::-1] +BuPu_r = BuPu[::-1] +Dark2_r = Dark2[::-1] +GnBu_r = GnBu[::-1] +Greens_r = Greens[::-1] +Greys_r = Greys[::-1] +OrRd_r = OrRd[::-1] +Oranges_r = Oranges[::-1] +PRGn_r = PRGn[::-1] +Paired_r = Paired[::-1] +Pastel1_r = Pastel1[::-1] +Pastel2_r = Pastel2[::-1] +PiYG_r = PiYG[::-1] +PuBu_r = PuBu[::-1] +PuBuGn_r = PuBuGn[::-1] +PuOr_r = PuOr[::-1] +PuRd_r = PuRd[::-1] +Purples_r = Purples[::-1] +RdBu_r = RdBu[::-1] +RdGy_r = RdGy[::-1] +RdPu_r = RdPu[::-1] +RdYlBu_r = RdYlBu[::-1] +RdYlGn_r = RdYlGn[::-1] +Reds_r = Reds[::-1] +Set1_r = Set1[::-1] +Set2_r = Set2[::-1] +Set3_r = Set3[::-1] +Spectral_r = Spectral[::-1] +YlGn_r = YlGn[::-1] +YlGnBu_r = YlGnBu[::-1] +YlOrBr_r = YlOrBr[::-1] +YlOrRd_r = YlOrRd[::-1] diff --git a/plotly/colors/cyclical.py b/plotly/colors/cyclical.py new file mode 100644 index 0000000000..bcb7d07e2e --- /dev/null +++ b/plotly/colors/cyclical.py @@ -0,0 +1,157 @@ +""" +Cyclical color scales are appropriate for continuous data that has a natural cyclical \ +structure, such as temporal data (hour of day, day of week, day of year, seasons) or +complex numbers or other phase data. +""" + +from ._swatches import _swatches, _swatches_continuous, _swatches_cyclical + + +def swatches(template=None): + return _swatches(__name__, globals(), template) + + +swatches.__doc__ = _swatches.__doc__ + + +def swatches_continuous(template=None): + return _swatches_continuous(__name__, globals(), template) + + +swatches_continuous.__doc__ = _swatches_continuous.__doc__ + + +def swatches_cyclical(template=None): + return _swatches_cyclical(__name__, globals(), template) + + +swatches_cyclical.__doc__ = _swatches_cyclical.__doc__ + + +Twilight = [ + "#e2d9e2", + "#9ebbc9", + "#6785be", + "#5e43a5", + "#421257", + "#471340", + "#8e2c50", + "#ba6657", + "#ceac94", + "#e2d9e2", +] +IceFire = [ + "#000000", + "#001f4d", + "#003786", + "#0e58a8", + "#217eb8", + "#30a4ca", + "#54c8df", + "#9be4ef", + "#e1e9d1", + "#f3d573", + "#e7b000", + "#da8200", + "#c65400", + "#ac2301", + "#820000", + "#4c0000", + "#000000", +] +Edge = [ + "#313131", + "#3d019d", + "#3810dc", + "#2d47f9", + "#2593ff", + "#2adef6", + "#60fdfa", + "#aefdff", + "#f3f3f1", + "#fffda9", + "#fafd5b", + "#f7da29", + "#ff8e25", + "#f8432d", + "#d90d39", + "#97023d", + "#313131", +] +Phase = [ + "rgb(167, 119, 12)", + "rgb(197, 96, 51)", + "rgb(217, 67, 96)", + "rgb(221, 38, 163)", + "rgb(196, 59, 224)", + "rgb(153, 97, 244)", + "rgb(95, 127, 228)", + "rgb(40, 144, 183)", + "rgb(15, 151, 136)", + "rgb(39, 153, 79)", + "rgb(119, 141, 17)", + "rgb(167, 119, 12)", +] +HSV = [ + "#ff0000", + "#ffa700", + "#afff00", + "#08ff00", + "#00ff9f", + "#00b7ff", + "#0010ff", + "#9700ff", + "#ff00bf", + "#ff0000", +] +mrybm = [ + "#f884f7", + "#f968c4", + "#ea4388", + "#cf244b", + "#b51a15", + "#bd4304", + "#cc6904", + "#d58f04", + "#cfaa27", + "#a19f62", + "#588a93", + "#2269c4", + "#3e3ef0", + "#6b4ef9", + "#956bfa", + "#cd7dfe", + "#f884f7", +] +mygbm = [ + "#ef55f1", + "#fb84ce", + "#fbafa1", + "#fcd471", + "#f0ed35", + "#c6e516", + "#96d310", + "#61c10b", + "#31ac28", + "#439064", + "#3d719a", + "#284ec8", + "#2e21ea", + "#6324f5", + "#9139fa", + "#c543fa", + "#ef55f1", +] + +Edge_r = Edge[::-1] +HSV_r = HSV[::-1] +IceFire_r = IceFire[::-1] +Phase_r = Phase[::-1] +Twilight_r = Twilight[::-1] +mrybm_r = mrybm[::-1] +mygbm_r = mygbm[::-1] + +__all__ = [ + "swatches", + "swatches_cyclical", +] diff --git a/plotly/colors/diverging.py b/plotly/colors/diverging.py new file mode 100644 index 0000000000..53170df9c0 --- /dev/null +++ b/plotly/colors/diverging.py @@ -0,0 +1,75 @@ +""" +Diverging color scales are appropriate for continuous data that has a natural midpoint \ +other otherwise informative special value, such as 0 altitude, or the boiling point +of a liquid. The color scales in this module are \ +mostly meant to be passed in as the `color_continuous_scale` argument to various \ +functions, and to be used with the `color_continuous_midpoint` argument. +""" + +from .colorbrewer import ( # noqa: F401 + BrBG, + PRGn, + PiYG, + PuOr, + RdBu, + RdGy, + RdYlBu, + RdYlGn, + Spectral, + BrBG_r, + PRGn_r, + PiYG_r, + PuOr_r, + RdBu_r, + RdGy_r, + RdYlBu_r, + RdYlGn_r, + Spectral_r, +) +from .cmocean import ( # noqa: F401 + balance, + delta, + curl, + oxy, + balance_r, + delta_r, + curl_r, + oxy_r, +) +from .carto import ( # noqa: F401 + Armyrose, + Fall, + Geyser, + Temps, + Tealrose, + Tropic, + Earth, + Armyrose_r, + Fall_r, + Geyser_r, + Temps_r, + Tealrose_r, + Tropic_r, + Earth_r, +) + +from .plotlyjs import Picnic, Portland, Picnic_r, Portland_r # noqa: F401 + +from ._swatches import _swatches, _swatches_continuous + + +def swatches(template=None): + return _swatches(__name__, globals(), template) + + +swatches.__doc__ = _swatches.__doc__ + + +def swatches_continuous(template=None): + return _swatches_continuous(__name__, globals(), template) + + +swatches_continuous.__doc__ = _swatches_continuous.__doc__ + + +__all__ = ["swatches"] diff --git a/plotly/colors/qualitative.py b/plotly/colors/qualitative.py new file mode 100644 index 0000000000..c26a55783a --- /dev/null +++ b/plotly/colors/qualitative.py @@ -0,0 +1,184 @@ +""" +Qualitative color sequences are appropriate for data that has no natural ordering, such \ +as categories, colors, names, countries etc. The color sequences in this module are \ +mostly meant to be passed in as the `color_discrete_sequence` argument to various functions. +""" + +from ._swatches import _swatches + + +def swatches(template=None): + return _swatches(__name__, globals(), template) + + +swatches.__doc__ = _swatches.__doc__ + +Plotly = [ + "#636EFA", + "#EF553B", + "#00CC96", + "#AB63FA", + "#FFA15A", + "#19D3F3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52", +] + +D3 = [ + "#1F77B4", + "#FF7F0E", + "#2CA02C", + "#D62728", + "#9467BD", + "#8C564B", + "#E377C2", + "#7F7F7F", + "#BCBD22", + "#17BECF", +] +G10 = [ + "#3366CC", + "#DC3912", + "#FF9900", + "#109618", + "#990099", + "#0099C6", + "#DD4477", + "#66AA00", + "#B82E2E", + "#316395", +] +T10 = [ + "#4C78A8", + "#F58518", + "#E45756", + "#72B7B2", + "#54A24B", + "#EECA3B", + "#B279A2", + "#FF9DA6", + "#9D755D", + "#BAB0AC", +] +Alphabet = [ + "#AA0DFE", + "#3283FE", + "#85660D", + "#782AB6", + "#565656", + "#1C8356", + "#16FF32", + "#F7E1A0", + "#E2E2E2", + "#1CBE4F", + "#C4451C", + "#DEA0FD", + "#FE00FA", + "#325A9B", + "#FEAF16", + "#F8A19F", + "#90AD1C", + "#F6222E", + "#1CFFCE", + "#2ED9FF", + "#B10DA1", + "#C075A6", + "#FC1CBF", + "#B00068", + "#FBE426", + "#FA0087", +] +Dark24 = [ + "#2E91E5", + "#E15F99", + "#1CA71C", + "#FB0D0D", + "#DA16FF", + "#222A2A", + "#B68100", + "#750D86", + "#EB663B", + "#511CFB", + "#00A08B", + "#FB00D1", + "#FC0080", + "#B2828D", + "#6C7C32", + "#778AAE", + "#862A16", + "#A777F1", + "#620042", + "#1616A7", + "#DA60CA", + "#6C4516", + "#0D2A63", + "#AF0038", +] +Light24 = [ + "#FD3216", + "#00FE35", + "#6A76FC", + "#FED4C4", + "#FE00CE", + "#0DF9FF", + "#F6F926", + "#FF9616", + "#479B55", + "#EEA6FB", + "#DC587D", + "#D626FF", + "#6E899C", + "#00B5F7", + "#B68E00", + "#C9FBE5", + "#FF0092", + "#22FFA7", + "#E3EE9E", + "#86CE00", + "#BC7196", + "#7E7DCD", + "#FC6955", + "#E48F72", +] + +Alphabet_r = Alphabet[::-1] +D3_r = D3[::-1] +Dark24_r = Dark24[::-1] +G10_r = G10[::-1] +Light24_r = Light24[::-1] +Plotly_r = Plotly[::-1] +T10_r = T10[::-1] + +from .colorbrewer import ( # noqa: E402 F401 + Set1, + Pastel1, + Dark2, + Set2, + Pastel2, + Set3, + Set1_r, + Pastel1_r, + Dark2_r, + Set2_r, + Pastel2_r, + Set3_r, +) +from .carto import ( # noqa: E402 F401 + Antique, + Bold, + Pastel, + Prism, + Safe, + Vivid, + Antique_r, + Bold_r, + Pastel_r, + Prism_r, + Safe_r, + Vivid_r, +) + + +__all__ = ["swatches"] diff --git a/plotly/colors/sequential.py b/plotly/colors/sequential.py new file mode 100644 index 0000000000..0e9ccf6b6f --- /dev/null +++ b/plotly/colors/sequential.py @@ -0,0 +1,257 @@ +""" +Sequential color scales are appropriate for most continuous data, but in some cases it \ +can be helpful to use a `plotly.colors.diverging` or \ +`plotly.colors.cyclical` scale instead. The color scales in this module are \ +mostly meant to be passed in as the `color_continuous_scale` argument to various functions. +""" + +from ._swatches import _swatches, _swatches_continuous + + +def swatches(template=None): + return _swatches(__name__, globals(), template) + + +swatches.__doc__ = _swatches.__doc__ + + +def swatches_continuous(template=None): + return _swatches_continuous(__name__, globals(), template) + + +swatches_continuous.__doc__ = _swatches_continuous.__doc__ + +Plotly3 = [ + "#0508b8", + "#1910d8", + "#3c19f0", + "#6b1cfb", + "#981cfd", + "#bf1cfd", + "#dd2bfd", + "#f246fe", + "#fc67fd", + "#fe88fc", + "#fea5fd", + "#febefe", + "#fec3fe", +] + +Viridis = [ + "#440154", + "#482878", + "#3e4989", + "#31688e", + "#26828e", + "#1f9e89", + "#35b779", + "#6ece58", + "#b5de2b", + "#fde725", +] +Cividis = [ + "#00224e", + "#123570", + "#3b496c", + "#575d6d", + "#707173", + "#8a8678", + "#a59c74", + "#c3b369", + "#e1cc55", + "#fee838", +] + +Inferno = [ + "#000004", + "#1b0c41", + "#4a0c6b", + "#781c6d", + "#a52c60", + "#cf4446", + "#ed6925", + "#fb9b06", + "#f7d13d", + "#fcffa4", +] +Magma = [ + "#000004", + "#180f3d", + "#440f76", + "#721f81", + "#9e2f7f", + "#cd4071", + "#f1605d", + "#fd9668", + "#feca8d", + "#fcfdbf", +] +Plasma = [ + "#0d0887", + "#46039f", + "#7201a8", + "#9c179e", + "#bd3786", + "#d8576b", + "#ed7953", + "#fb9f3a", + "#fdca26", + "#f0f921", +] +Turbo = [ + "#30123b", + "#4145ab", + "#4675ed", + "#39a2fc", + "#1bcfd4", + "#24eca6", + "#61fc6c", + "#a4fc3b", + "#d1e834", + "#f3c63a", + "#fe9b2d", + "#f36315", + "#d93806", + "#b11901", + "#7a0402", +] + +Cividis_r = Cividis[::-1] +Inferno_r = Inferno[::-1] +Magma_r = Magma[::-1] +Plasma_r = Plasma[::-1] +Plotly3_r = Plotly3[::-1] +Turbo_r = Turbo[::-1] +Viridis_r = Viridis[::-1] + +from .plotlyjs import ( # noqa: E402 F401 + Blackbody, + Bluered, + Electric, + Hot, + Jet, + Rainbow, + Blackbody_r, + Bluered_r, + Electric_r, + Hot_r, + Jet_r, + Rainbow_r, +) + +from .colorbrewer import ( # noqa: E402 F401 + Blues, + BuGn, + BuPu, + GnBu, + Greens, + Greys, + OrRd, + Oranges, + PuBu, + PuBuGn, + PuRd, + Purples, + RdBu, + RdPu, + Reds, + YlGn, + YlGnBu, + YlOrBr, + YlOrRd, + Blues_r, + BuGn_r, + BuPu_r, + GnBu_r, + Greens_r, + Greys_r, + OrRd_r, + Oranges_r, + PuBu_r, + PuBuGn_r, + PuRd_r, + Purples_r, + RdBu_r, + RdPu_r, + Reds_r, + YlGn_r, + YlGnBu_r, + YlOrBr_r, + YlOrRd_r, +) + +from .cmocean import ( # noqa: E402 F401 + turbid, + thermal, + haline, + solar, + ice, + gray, + deep, + dense, + algae, + matter, + speed, + amp, + tempo, + turbid_r, + thermal_r, + haline_r, + solar_r, + ice_r, + gray_r, + deep_r, + dense_r, + algae_r, + matter_r, + speed_r, + amp_r, + tempo_r, +) + +from .carto import ( # noqa: E402 F401 + Burg, + Burgyl, + Redor, + Oryel, + Peach, + Pinkyl, + Mint, + Blugrn, + Darkmint, + Emrld, + Aggrnyl, + Bluyl, + Teal, + Tealgrn, + Purp, + Purpor, + Sunset, + Magenta, + Sunsetdark, + Agsunset, + Brwnyl, + Burg_r, + Burgyl_r, + Redor_r, + Oryel_r, + Peach_r, + Pinkyl_r, + Mint_r, + Blugrn_r, + Darkmint_r, + Emrld_r, + Aggrnyl_r, + Bluyl_r, + Teal_r, + Tealgrn_r, + Purp_r, + Purpor_r, + Sunset_r, + Magenta_r, + Sunsetdark_r, + Agsunset_r, + Brwnyl_r, +) + +__all__ = ["swatches"] diff --git a/plotly/express/colors/carto.py b/plotly/express/colors/carto.py new file mode 100644 index 0000000000..f5c503f325 --- /dev/null +++ b/plotly/express/colors/carto.py @@ -0,0 +1,419 @@ +""" +Color sequences and scales from CARTO's CartoColors + +Learn more at https://github.com/CartoDB/CartoColor + +CARTOColors are made available under a Creative Commons Attribution license: https://creativecommons.org/licenses/by/3.0/us/ +""" + +from ._swatches import _swatches + + +def swatches(template=None): + return _swatches(__name__, globals(), template) + + +swatches.__doc__ = _swatches.__doc__ + +Burg = [ + "rgb(255, 198, 196)", + "rgb(244, 163, 168)", + "rgb(227, 129, 145)", + "rgb(204, 96, 125)", + "rgb(173, 70, 108)", + "rgb(139, 48, 88)", + "rgb(103, 32, 68)", +] + +Burgyl = [ + "rgb(251, 230, 197)", + "rgb(245, 186, 152)", + "rgb(238, 138, 130)", + "rgb(220, 113, 118)", + "rgb(200, 88, 108)", + "rgb(156, 63, 93)", + "rgb(112, 40, 74)", +] + +Redor = [ + "rgb(246, 210, 169)", + "rgb(245, 183, 142)", + "rgb(241, 156, 124)", + "rgb(234, 129, 113)", + "rgb(221, 104, 108)", + "rgb(202, 82, 104)", + "rgb(177, 63, 100)", +] + +Oryel = [ + "rgb(236, 218, 154)", + "rgb(239, 196, 126)", + "rgb(243, 173, 106)", + "rgb(247, 148, 93)", + "rgb(249, 123, 87)", + "rgb(246, 99, 86)", + "rgb(238, 77, 90)", +] + +Peach = [ + "rgb(253, 224, 197)", + "rgb(250, 203, 166)", + "rgb(248, 181, 139)", + "rgb(245, 158, 114)", + "rgb(242, 133, 93)", + "rgb(239, 106, 76)", + "rgb(235, 74, 64)", +] + +Pinkyl = [ + "rgb(254, 246, 181)", + "rgb(255, 221, 154)", + "rgb(255, 194, 133)", + "rgb(255, 166, 121)", + "rgb(250, 138, 118)", + "rgb(241, 109, 122)", + "rgb(225, 83, 131)", +] + +Mint = [ + "rgb(228, 241, 225)", + "rgb(180, 217, 204)", + "rgb(137, 192, 182)", + "rgb(99, 166, 160)", + "rgb(68, 140, 138)", + "rgb(40, 114, 116)", + "rgb(13, 88, 95)", +] + +Blugrn = [ + "rgb(196, 230, 195)", + "rgb(150, 210, 164)", + "rgb(109, 188, 144)", + "rgb(77, 162, 132)", + "rgb(54, 135, 122)", + "rgb(38, 107, 110)", + "rgb(29, 79, 96)", +] + +Darkmint = [ + "rgb(210, 251, 212)", + "rgb(165, 219, 194)", + "rgb(123, 188, 176)", + "rgb(85, 156, 158)", + "rgb(58, 124, 137)", + "rgb(35, 93, 114)", + "rgb(18, 63, 90)", +] + +Emrld = [ + "rgb(211, 242, 163)", + "rgb(151, 225, 150)", + "rgb(108, 192, 139)", + "rgb(76, 155, 130)", + "rgb(33, 122, 121)", + "rgb(16, 89, 101)", + "rgb(7, 64, 80)", +] + +Aggrnyl = [ + "rgb(36, 86, 104)", + "rgb(15, 114, 121)", + "rgb(13, 143, 129)", + "rgb(57, 171, 126)", + "rgb(110, 197, 116)", + "rgb(169, 220, 103)", + "rgb(237, 239, 93)", +] + +Bluyl = [ + "rgb(247, 254, 174)", + "rgb(183, 230, 165)", + "rgb(124, 203, 162)", + "rgb(70, 174, 160)", + "rgb(8, 144, 153)", + "rgb(0, 113, 139)", + "rgb(4, 82, 117)", +] + +Teal = [ + "rgb(209, 238, 234)", + "rgb(168, 219, 217)", + "rgb(133, 196, 201)", + "rgb(104, 171, 184)", + "rgb(79, 144, 166)", + "rgb(59, 115, 143)", + "rgb(42, 86, 116)", +] + +Tealgrn = [ + "rgb(176, 242, 188)", + "rgb(137, 232, 172)", + "rgb(103, 219, 165)", + "rgb(76, 200, 163)", + "rgb(56, 178, 163)", + "rgb(44, 152, 160)", + "rgb(37, 125, 152)", +] + +Purp = [ + "rgb(243, 224, 247)", + "rgb(228, 199, 241)", + "rgb(209, 175, 232)", + "rgb(185, 152, 221)", + "rgb(159, 130, 206)", + "rgb(130, 109, 186)", + "rgb(99, 88, 159)", +] + +Purpor = [ + "rgb(249, 221, 218)", + "rgb(242, 185, 196)", + "rgb(229, 151, 185)", + "rgb(206, 120, 179)", + "rgb(173, 95, 173)", + "rgb(131, 75, 160)", + "rgb(87, 59, 136)", +] + +Sunset = [ + "rgb(243, 231, 155)", + "rgb(250, 196, 132)", + "rgb(248, 160, 126)", + "rgb(235, 127, 134)", + "rgb(206, 102, 147)", + "rgb(160, 89, 160)", + "rgb(92, 83, 165)", +] + +Magenta = [ + "rgb(243, 203, 211)", + "rgb(234, 169, 189)", + "rgb(221, 136, 172)", + "rgb(202, 105, 157)", + "rgb(177, 77, 142)", + "rgb(145, 53, 125)", + "rgb(108, 33, 103)", +] + +Sunsetdark = [ + "rgb(252, 222, 156)", + "rgb(250, 164, 118)", + "rgb(240, 116, 110)", + "rgb(227, 79, 111)", + "rgb(220, 57, 119)", + "rgb(185, 37, 122)", + "rgb(124, 29, 111)", +] + +Agsunset = [ + "rgb(75, 41, 145)", + "rgb(135, 44, 162)", + "rgb(192, 54, 157)", + "rgb(234, 79, 136)", + "rgb(250, 120, 118)", + "rgb(246, 169, 122)", + "rgb(237, 217, 163)", +] + +Brwnyl = [ + "rgb(237, 229, 207)", + "rgb(224, 194, 162)", + "rgb(211, 156, 131)", + "rgb(193, 118, 111)", + "rgb(166, 84, 97)", + "rgb(129, 55, 83)", + "rgb(84, 31, 63)", +] + +# Diverging schemes + +Armyrose = [ + "rgb(121, 130, 52)", + "rgb(163, 173, 98)", + "rgb(208, 211, 162)", + "rgb(253, 251, 228)", + "rgb(240, 198, 195)", + "rgb(223, 145, 163)", + "rgb(212, 103, 128)", +] + +Fall = [ + "rgb(61, 89, 65)", + "rgb(119, 136, 104)", + "rgb(181, 185, 145)", + "rgb(246, 237, 189)", + "rgb(237, 187, 138)", + "rgb(222, 138, 90)", + "rgb(202, 86, 44)", +] + +Geyser = [ + "rgb(0, 128, 128)", + "rgb(112, 164, 148)", + "rgb(180, 200, 168)", + "rgb(246, 237, 189)", + "rgb(237, 187, 138)", + "rgb(222, 138, 90)", + "rgb(202, 86, 44)", +] + +Temps = [ + "rgb(0, 147, 146)", + "rgb(57, 177, 133)", + "rgb(156, 203, 134)", + "rgb(233, 226, 156)", + "rgb(238, 180, 121)", + "rgb(232, 132, 113)", + "rgb(207, 89, 126)", +] + +Tealrose = [ + "rgb(0, 147, 146)", + "rgb(114, 170, 161)", + "rgb(177, 199, 179)", + "rgb(241, 234, 200)", + "rgb(229, 185, 173)", + "rgb(217, 137, 148)", + "rgb(208, 88, 126)", +] + +Tropic = [ + "rgb(0, 155, 158)", + "rgb(66, 183, 185)", + "rgb(167, 211, 212)", + "rgb(241, 241, 241)", + "rgb(228, 193, 217)", + "rgb(214, 145, 193)", + "rgb(199, 93, 171)", +] + +Earth = [ + "rgb(161, 105, 40)", + "rgb(189, 146, 90)", + "rgb(214, 189, 141)", + "rgb(237, 234, 194)", + "rgb(181, 200, 184)", + "rgb(121, 167, 172)", + "rgb(40, 135, 161)", +] + +# Qualitative palettes + +Antique = [ + "rgb(133, 92, 117)", + "rgb(217, 175, 107)", + "rgb(175, 100, 88)", + "rgb(115, 111, 76)", + "rgb(82, 106, 131)", + "rgb(98, 83, 119)", + "rgb(104, 133, 92)", + "rgb(156, 156, 94)", + "rgb(160, 97, 119)", + "rgb(140, 120, 93)", + "rgb(124, 124, 124)", +] + +Bold = [ + "rgb(127, 60, 141)", + "rgb(17, 165, 121)", + "rgb(57, 105, 172)", + "rgb(242, 183, 1)", + "rgb(231, 63, 116)", + "rgb(128, 186, 90)", + "rgb(230, 131, 16)", + "rgb(0, 134, 149)", + "rgb(207, 28, 144)", + "rgb(249, 123, 114)", + "rgb(165, 170, 153)", +] + +Pastel = [ + "rgb(102, 197, 204)", + "rgb(246, 207, 113)", + "rgb(248, 156, 116)", + "rgb(220, 176, 242)", + "rgb(135, 197, 95)", + "rgb(158, 185, 243)", + "rgb(254, 136, 177)", + "rgb(201, 219, 116)", + "rgb(139, 224, 164)", + "rgb(180, 151, 231)", + "rgb(179, 179, 179)", +] + +Prism = [ + "rgb(95, 70, 144)", + "rgb(29, 105, 150)", + "rgb(56, 166, 165)", + "rgb(15, 133, 84)", + "rgb(115, 175, 72)", + "rgb(237, 173, 8)", + "rgb(225, 124, 5)", + "rgb(204, 80, 62)", + "rgb(148, 52, 110)", + "rgb(111, 64, 112)", + "rgb(102, 102, 102)", +] + +Safe = [ + "rgb(136, 204, 238)", + "rgb(204, 102, 119)", + "rgb(221, 204, 119)", + "rgb(17, 119, 51)", + "rgb(51, 34, 136)", + "rgb(170, 68, 153)", + "rgb(68, 170, 153)", + "rgb(153, 153, 51)", + "rgb(136, 34, 85)", + "rgb(102, 17, 0)", + "rgb(136, 136, 136)", +] + +Vivid = [ + "rgb(229, 134, 6)", + "rgb(93, 105, 177)", + "rgb(82, 188, 163)", + "rgb(153, 201, 69)", + "rgb(204, 97, 176)", + "rgb(36, 121, 108)", + "rgb(218, 165, 27)", + "rgb(47, 138, 196)", + "rgb(118, 78, 159)", + "rgb(237, 100, 90)", + "rgb(165, 170, 153)", +] + +Aggrnyl_r = Aggrnyl[::-1] +Agsunset_r = Agsunset[::-1] +Antique_r = Antique[::-1] +Armyrose_r = Armyrose[::-1] +Blugrn_r = Blugrn[::-1] +Bluyl_r = Bluyl[::-1] +Bold_r = Bold[::-1] +Brwnyl_r = Brwnyl[::-1] +Burg_r = Burg[::-1] +Burgyl_r = Burgyl[::-1] +Darkmint_r = Darkmint[::-1] +Earth_r = Earth[::-1] +Emrld_r = Emrld[::-1] +Fall_r = Fall[::-1] +Geyser_r = Geyser[::-1] +Magenta_r = Magenta[::-1] +Mint_r = Mint[::-1] +Oryel_r = Oryel[::-1] +Pastel_r = Pastel[::-1] +Peach_r = Peach[::-1] +Pinkyl_r = Pinkyl[::-1] +Prism_r = Prism[::-1] +Purp_r = Purp[::-1] +Purpor_r = Purpor[::-1] +Redor_r = Redor[::-1] +Safe_r = Safe[::-1] +Sunset_r = Sunset[::-1] +Sunsetdark_r = Sunsetdark[::-1] +Teal_r = Teal[::-1] +Tealgrn_r = Tealgrn[::-1] +Tealrose_r = Tealrose[::-1] +Temps_r = Temps[::-1] +Tropic_r = Tropic[::-1] +Vivid_r = Vivid[::-1] diff --git a/plotly/express/colors/cmocean.py b/plotly/express/colors/cmocean.py new file mode 100644 index 0000000000..18944b5936 --- /dev/null +++ b/plotly/express/colors/cmocean.py @@ -0,0 +1,296 @@ +""" +Color scales from the cmocean project + +Learn more at https://matplotlib.org/cmocean/ + +cmocean is made available under an MIT license: https://github.com/matplotlib/cmocean/blob/master/LICENSE.txt +""" + +from ._swatches import _swatches, _swatches_continuous + + +def swatches(template=None): + return _swatches(__name__, globals(), template) + + +swatches.__doc__ = _swatches.__doc__ + + +def swatches_continuous(template=None): + return _swatches_continuous(__name__, globals(), template) + + +swatches_continuous.__doc__ = _swatches_continuous.__doc__ + + +turbid = [ + "rgb(232, 245, 171)", + "rgb(220, 219, 137)", + "rgb(209, 193, 107)", + "rgb(199, 168, 83)", + "rgb(186, 143, 66)", + "rgb(170, 121, 60)", + "rgb(151, 103, 58)", + "rgb(129, 87, 56)", + "rgb(104, 72, 53)", + "rgb(80, 59, 46)", + "rgb(57, 45, 37)", + "rgb(34, 30, 27)", +] +thermal = [ + "rgb(3, 35, 51)", + "rgb(13, 48, 100)", + "rgb(53, 50, 155)", + "rgb(93, 62, 153)", + "rgb(126, 77, 143)", + "rgb(158, 89, 135)", + "rgb(193, 100, 121)", + "rgb(225, 113, 97)", + "rgb(246, 139, 69)", + "rgb(251, 173, 60)", + "rgb(246, 211, 70)", + "rgb(231, 250, 90)", +] +haline = [ + "rgb(41, 24, 107)", + "rgb(42, 35, 160)", + "rgb(15, 71, 153)", + "rgb(18, 95, 142)", + "rgb(38, 116, 137)", + "rgb(53, 136, 136)", + "rgb(65, 157, 133)", + "rgb(81, 178, 124)", + "rgb(111, 198, 107)", + "rgb(160, 214, 91)", + "rgb(212, 225, 112)", + "rgb(253, 238, 153)", +] +solar = [ + "rgb(51, 19, 23)", + "rgb(79, 28, 33)", + "rgb(108, 36, 36)", + "rgb(135, 47, 32)", + "rgb(157, 66, 25)", + "rgb(174, 88, 20)", + "rgb(188, 111, 19)", + "rgb(199, 137, 22)", + "rgb(209, 164, 32)", + "rgb(217, 192, 44)", + "rgb(222, 222, 59)", + "rgb(224, 253, 74)", +] +ice = [ + "rgb(3, 5, 18)", + "rgb(25, 25, 51)", + "rgb(44, 42, 87)", + "rgb(58, 60, 125)", + "rgb(62, 83, 160)", + "rgb(62, 109, 178)", + "rgb(72, 134, 187)", + "rgb(89, 159, 196)", + "rgb(114, 184, 205)", + "rgb(149, 207, 216)", + "rgb(192, 229, 232)", + "rgb(234, 252, 253)", +] +gray = [ + "rgb(0, 0, 0)", + "rgb(16, 16, 16)", + "rgb(38, 38, 38)", + "rgb(59, 59, 59)", + "rgb(81, 80, 80)", + "rgb(102, 101, 101)", + "rgb(124, 123, 122)", + "rgb(146, 146, 145)", + "rgb(171, 171, 170)", + "rgb(197, 197, 195)", + "rgb(224, 224, 223)", + "rgb(254, 254, 253)", +] +oxy = [ + "rgb(63, 5, 5)", + "rgb(101, 6, 13)", + "rgb(138, 17, 9)", + "rgb(96, 95, 95)", + "rgb(119, 118, 118)", + "rgb(142, 141, 141)", + "rgb(166, 166, 165)", + "rgb(193, 192, 191)", + "rgb(222, 222, 220)", + "rgb(239, 248, 90)", + "rgb(230, 210, 41)", + "rgb(220, 174, 25)", +] +deep = [ + "rgb(253, 253, 204)", + "rgb(206, 236, 179)", + "rgb(156, 219, 165)", + "rgb(111, 201, 163)", + "rgb(86, 177, 163)", + "rgb(76, 153, 160)", + "rgb(68, 130, 155)", + "rgb(62, 108, 150)", + "rgb(62, 82, 143)", + "rgb(64, 60, 115)", + "rgb(54, 43, 77)", + "rgb(39, 26, 44)", +] +dense = [ + "rgb(230, 240, 240)", + "rgb(191, 221, 229)", + "rgb(156, 201, 226)", + "rgb(129, 180, 227)", + "rgb(115, 154, 228)", + "rgb(117, 127, 221)", + "rgb(120, 100, 202)", + "rgb(119, 74, 175)", + "rgb(113, 50, 141)", + "rgb(100, 31, 104)", + "rgb(80, 20, 66)", + "rgb(54, 14, 36)", +] +algae = [ + "rgb(214, 249, 207)", + "rgb(186, 228, 174)", + "rgb(156, 209, 143)", + "rgb(124, 191, 115)", + "rgb(85, 174, 91)", + "rgb(37, 157, 81)", + "rgb(7, 138, 78)", + "rgb(13, 117, 71)", + "rgb(23, 95, 61)", + "rgb(25, 75, 49)", + "rgb(23, 55, 35)", + "rgb(17, 36, 20)", +] +matter = [ + "rgb(253, 237, 176)", + "rgb(250, 205, 145)", + "rgb(246, 173, 119)", + "rgb(240, 142, 98)", + "rgb(231, 109, 84)", + "rgb(216, 80, 83)", + "rgb(195, 56, 90)", + "rgb(168, 40, 96)", + "rgb(138, 29, 99)", + "rgb(107, 24, 93)", + "rgb(76, 21, 80)", + "rgb(47, 15, 61)", +] +speed = [ + "rgb(254, 252, 205)", + "rgb(239, 225, 156)", + "rgb(221, 201, 106)", + "rgb(194, 182, 59)", + "rgb(157, 167, 21)", + "rgb(116, 153, 5)", + "rgb(75, 138, 20)", + "rgb(35, 121, 36)", + "rgb(11, 100, 44)", + "rgb(18, 78, 43)", + "rgb(25, 56, 34)", + "rgb(23, 35, 18)", +] +amp = [ + "rgb(241, 236, 236)", + "rgb(230, 209, 203)", + "rgb(221, 182, 170)", + "rgb(213, 156, 137)", + "rgb(205, 129, 103)", + "rgb(196, 102, 73)", + "rgb(186, 74, 47)", + "rgb(172, 44, 36)", + "rgb(149, 19, 39)", + "rgb(120, 14, 40)", + "rgb(89, 13, 31)", + "rgb(60, 9, 17)", +] +tempo = [ + "rgb(254, 245, 244)", + "rgb(222, 224, 210)", + "rgb(189, 206, 181)", + "rgb(153, 189, 156)", + "rgb(110, 173, 138)", + "rgb(65, 157, 129)", + "rgb(25, 137, 125)", + "rgb(18, 116, 117)", + "rgb(25, 94, 106)", + "rgb(28, 72, 93)", + "rgb(25, 51, 80)", + "rgb(20, 29, 67)", +] +phase = [ + "rgb(167, 119, 12)", + "rgb(197, 96, 51)", + "rgb(217, 67, 96)", + "rgb(221, 38, 163)", + "rgb(196, 59, 224)", + "rgb(153, 97, 244)", + "rgb(95, 127, 228)", + "rgb(40, 144, 183)", + "rgb(15, 151, 136)", + "rgb(39, 153, 79)", + "rgb(119, 141, 17)", + "rgb(167, 119, 12)", +] +balance = [ + "rgb(23, 28, 66)", + "rgb(41, 58, 143)", + "rgb(11, 102, 189)", + "rgb(69, 144, 185)", + "rgb(142, 181, 194)", + "rgb(210, 216, 219)", + "rgb(230, 210, 204)", + "rgb(213, 157, 137)", + "rgb(196, 101, 72)", + "rgb(172, 43, 36)", + "rgb(120, 14, 40)", + "rgb(60, 9, 17)", +] +delta = [ + "rgb(16, 31, 63)", + "rgb(38, 62, 144)", + "rgb(30, 110, 161)", + "rgb(60, 154, 171)", + "rgb(140, 193, 186)", + "rgb(217, 229, 218)", + "rgb(239, 226, 156)", + "rgb(195, 182, 59)", + "rgb(115, 152, 5)", + "rgb(34, 120, 36)", + "rgb(18, 78, 43)", + "rgb(23, 35, 18)", +] +curl = [ + "rgb(20, 29, 67)", + "rgb(28, 72, 93)", + "rgb(18, 115, 117)", + "rgb(63, 156, 129)", + "rgb(153, 189, 156)", + "rgb(223, 225, 211)", + "rgb(241, 218, 206)", + "rgb(224, 160, 137)", + "rgb(203, 101, 99)", + "rgb(164, 54, 96)", + "rgb(111, 23, 91)", + "rgb(51, 13, 53)", +] + +algae_r = algae[::-1] +amp_r = amp[::-1] +balance_r = balance[::-1] +curl_r = curl[::-1] +deep_r = deep[::-1] +delta_r = delta[::-1] +dense_r = dense[::-1] +gray_r = gray[::-1] +haline_r = haline[::-1] +ice_r = ice[::-1] +matter_r = matter[::-1] +oxy_r = oxy[::-1] +phase_r = phase[::-1] +solar_r = solar[::-1] +speed_r = speed[::-1] +tempo_r = tempo[::-1] +thermal_r = thermal[::-1] +turbid_r = turbid[::-1] diff --git a/plotly/express/colors/colorbrewer.py b/plotly/express/colors/colorbrewer.py new file mode 100644 index 0000000000..cbb286e43e --- /dev/null +++ b/plotly/express/colors/colorbrewer.py @@ -0,0 +1,494 @@ +""" +Color scales and sequences from the colorbrewer 2 project + +Learn more at http://colorbrewer2.org + +colorbrewer is made available under an Apache license: http://colorbrewer2.org/export/LICENSE.txt +""" + +from ._swatches import _swatches + + +def swatches(template=None): + return _swatches(__name__, globals(), template) + + +swatches.__doc__ = _swatches.__doc__ + +BrBG = [ + "rgb(84,48,5)", + "rgb(140,81,10)", + "rgb(191,129,45)", + "rgb(223,194,125)", + "rgb(246,232,195)", + "rgb(245,245,245)", + "rgb(199,234,229)", + "rgb(128,205,193)", + "rgb(53,151,143)", + "rgb(1,102,94)", + "rgb(0,60,48)", +] + +PRGn = [ + "rgb(64,0,75)", + "rgb(118,42,131)", + "rgb(153,112,171)", + "rgb(194,165,207)", + "rgb(231,212,232)", + "rgb(247,247,247)", + "rgb(217,240,211)", + "rgb(166,219,160)", + "rgb(90,174,97)", + "rgb(27,120,55)", + "rgb(0,68,27)", +] + +PiYG = [ + "rgb(142,1,82)", + "rgb(197,27,125)", + "rgb(222,119,174)", + "rgb(241,182,218)", + "rgb(253,224,239)", + "rgb(247,247,247)", + "rgb(230,245,208)", + "rgb(184,225,134)", + "rgb(127,188,65)", + "rgb(77,146,33)", + "rgb(39,100,25)", +] + +PuOr = [ + "rgb(127,59,8)", + "rgb(179,88,6)", + "rgb(224,130,20)", + "rgb(253,184,99)", + "rgb(254,224,182)", + "rgb(247,247,247)", + "rgb(216,218,235)", + "rgb(178,171,210)", + "rgb(128,115,172)", + "rgb(84,39,136)", + "rgb(45,0,75)", +] + +RdBu = [ + "rgb(103,0,31)", + "rgb(178,24,43)", + "rgb(214,96,77)", + "rgb(244,165,130)", + "rgb(253,219,199)", + "rgb(247,247,247)", + "rgb(209,229,240)", + "rgb(146,197,222)", + "rgb(67,147,195)", + "rgb(33,102,172)", + "rgb(5,48,97)", +] + +RdGy = [ + "rgb(103,0,31)", + "rgb(178,24,43)", + "rgb(214,96,77)", + "rgb(244,165,130)", + "rgb(253,219,199)", + "rgb(255,255,255)", + "rgb(224,224,224)", + "rgb(186,186,186)", + "rgb(135,135,135)", + "rgb(77,77,77)", + "rgb(26,26,26)", +] + +RdYlBu = [ + "rgb(165,0,38)", + "rgb(215,48,39)", + "rgb(244,109,67)", + "rgb(253,174,97)", + "rgb(254,224,144)", + "rgb(255,255,191)", + "rgb(224,243,248)", + "rgb(171,217,233)", + "rgb(116,173,209)", + "rgb(69,117,180)", + "rgb(49,54,149)", +] + +RdYlGn = [ + "rgb(165,0,38)", + "rgb(215,48,39)", + "rgb(244,109,67)", + "rgb(253,174,97)", + "rgb(254,224,139)", + "rgb(255,255,191)", + "rgb(217,239,139)", + "rgb(166,217,106)", + "rgb(102,189,99)", + "rgb(26,152,80)", + "rgb(0,104,55)", +] + +Spectral = [ + "rgb(158,1,66)", + "rgb(213,62,79)", + "rgb(244,109,67)", + "rgb(253,174,97)", + "rgb(254,224,139)", + "rgb(255,255,191)", + "rgb(230,245,152)", + "rgb(171,221,164)", + "rgb(102,194,165)", + "rgb(50,136,189)", + "rgb(94,79,162)", +] + +Set1 = [ + "rgb(228,26,28)", + "rgb(55,126,184)", + "rgb(77,175,74)", + "rgb(152,78,163)", + "rgb(255,127,0)", + "rgb(255,255,51)", + "rgb(166,86,40)", + "rgb(247,129,191)", + "rgb(153,153,153)", +] + + +Pastel1 = [ + "rgb(251,180,174)", + "rgb(179,205,227)", + "rgb(204,235,197)", + "rgb(222,203,228)", + "rgb(254,217,166)", + "rgb(255,255,204)", + "rgb(229,216,189)", + "rgb(253,218,236)", + "rgb(242,242,242)", +] +Dark2 = [ + "rgb(27,158,119)", + "rgb(217,95,2)", + "rgb(117,112,179)", + "rgb(231,41,138)", + "rgb(102,166,30)", + "rgb(230,171,2)", + "rgb(166,118,29)", + "rgb(102,102,102)", +] +Set2 = [ + "rgb(102,194,165)", + "rgb(252,141,98)", + "rgb(141,160,203)", + "rgb(231,138,195)", + "rgb(166,216,84)", + "rgb(255,217,47)", + "rgb(229,196,148)", + "rgb(179,179,179)", +] + + +Pastel2 = [ + "rgb(179,226,205)", + "rgb(253,205,172)", + "rgb(203,213,232)", + "rgb(244,202,228)", + "rgb(230,245,201)", + "rgb(255,242,174)", + "rgb(241,226,204)", + "rgb(204,204,204)", +] + +Set3 = [ + "rgb(141,211,199)", + "rgb(255,255,179)", + "rgb(190,186,218)", + "rgb(251,128,114)", + "rgb(128,177,211)", + "rgb(253,180,98)", + "rgb(179,222,105)", + "rgb(252,205,229)", + "rgb(217,217,217)", + "rgb(188,128,189)", + "rgb(204,235,197)", + "rgb(255,237,111)", +] + +Accent = [ + "rgb(127,201,127)", + "rgb(190,174,212)", + "rgb(253,192,134)", + "rgb(255,255,153)", + "rgb(56,108,176)", + "rgb(240,2,127)", + "rgb(191,91,23)", + "rgb(102,102,102)", +] + + +Paired = [ + "rgb(166,206,227)", + "rgb(31,120,180)", + "rgb(178,223,138)", + "rgb(51,160,44)", + "rgb(251,154,153)", + "rgb(227,26,28)", + "rgb(253,191,111)", + "rgb(255,127,0)", + "rgb(202,178,214)", + "rgb(106,61,154)", + "rgb(255,255,153)", + "rgb(177,89,40)", +] + + +Blues = [ + "rgb(247,251,255)", + "rgb(222,235,247)", + "rgb(198,219,239)", + "rgb(158,202,225)", + "rgb(107,174,214)", + "rgb(66,146,198)", + "rgb(33,113,181)", + "rgb(8,81,156)", + "rgb(8,48,107)", +] + +BuGn = [ + "rgb(247,252,253)", + "rgb(229,245,249)", + "rgb(204,236,230)", + "rgb(153,216,201)", + "rgb(102,194,164)", + "rgb(65,174,118)", + "rgb(35,139,69)", + "rgb(0,109,44)", + "rgb(0,68,27)", +] + +BuPu = [ + "rgb(247,252,253)", + "rgb(224,236,244)", + "rgb(191,211,230)", + "rgb(158,188,218)", + "rgb(140,150,198)", + "rgb(140,107,177)", + "rgb(136,65,157)", + "rgb(129,15,124)", + "rgb(77,0,75)", +] + +GnBu = [ + "rgb(247,252,240)", + "rgb(224,243,219)", + "rgb(204,235,197)", + "rgb(168,221,181)", + "rgb(123,204,196)", + "rgb(78,179,211)", + "rgb(43,140,190)", + "rgb(8,104,172)", + "rgb(8,64,129)", +] + +Greens = [ + "rgb(247,252,245)", + "rgb(229,245,224)", + "rgb(199,233,192)", + "rgb(161,217,155)", + "rgb(116,196,118)", + "rgb(65,171,93)", + "rgb(35,139,69)", + "rgb(0,109,44)", + "rgb(0,68,27)", +] + +Greys = [ + "rgb(255,255,255)", + "rgb(240,240,240)", + "rgb(217,217,217)", + "rgb(189,189,189)", + "rgb(150,150,150)", + "rgb(115,115,115)", + "rgb(82,82,82)", + "rgb(37,37,37)", + "rgb(0,0,0)", +] + +OrRd = [ + "rgb(255,247,236)", + "rgb(254,232,200)", + "rgb(253,212,158)", + "rgb(253,187,132)", + "rgb(252,141,89)", + "rgb(239,101,72)", + "rgb(215,48,31)", + "rgb(179,0,0)", + "rgb(127,0,0)", +] + +Oranges = [ + "rgb(255,245,235)", + "rgb(254,230,206)", + "rgb(253,208,162)", + "rgb(253,174,107)", + "rgb(253,141,60)", + "rgb(241,105,19)", + "rgb(217,72,1)", + "rgb(166,54,3)", + "rgb(127,39,4)", +] + +PuBu = [ + "rgb(255,247,251)", + "rgb(236,231,242)", + "rgb(208,209,230)", + "rgb(166,189,219)", + "rgb(116,169,207)", + "rgb(54,144,192)", + "rgb(5,112,176)", + "rgb(4,90,141)", + "rgb(2,56,88)", +] + +PuBuGn = [ + "rgb(255,247,251)", + "rgb(236,226,240)", + "rgb(208,209,230)", + "rgb(166,189,219)", + "rgb(103,169,207)", + "rgb(54,144,192)", + "rgb(2,129,138)", + "rgb(1,108,89)", + "rgb(1,70,54)", +] + +PuRd = [ + "rgb(247,244,249)", + "rgb(231,225,239)", + "rgb(212,185,218)", + "rgb(201,148,199)", + "rgb(223,101,176)", + "rgb(231,41,138)", + "rgb(206,18,86)", + "rgb(152,0,67)", + "rgb(103,0,31)", +] + +Purples = [ + "rgb(252,251,253)", + "rgb(239,237,245)", + "rgb(218,218,235)", + "rgb(188,189,220)", + "rgb(158,154,200)", + "rgb(128,125,186)", + "rgb(106,81,163)", + "rgb(84,39,143)", + "rgb(63,0,125)", +] + +RdPu = [ + "rgb(255,247,243)", + "rgb(253,224,221)", + "rgb(252,197,192)", + "rgb(250,159,181)", + "rgb(247,104,161)", + "rgb(221,52,151)", + "rgb(174,1,126)", + "rgb(122,1,119)", + "rgb(73,0,106)", +] + +Reds = [ + "rgb(255,245,240)", + "rgb(254,224,210)", + "rgb(252,187,161)", + "rgb(252,146,114)", + "rgb(251,106,74)", + "rgb(239,59,44)", + "rgb(203,24,29)", + "rgb(165,15,21)", + "rgb(103,0,13)", +] + +YlGn = [ + "rgb(255,255,229)", + "rgb(247,252,185)", + "rgb(217,240,163)", + "rgb(173,221,142)", + "rgb(120,198,121)", + "rgb(65,171,93)", + "rgb(35,132,67)", + "rgb(0,104,55)", + "rgb(0,69,41)", +] + +YlGnBu = [ + "rgb(255,255,217)", + "rgb(237,248,177)", + "rgb(199,233,180)", + "rgb(127,205,187)", + "rgb(65,182,196)", + "rgb(29,145,192)", + "rgb(34,94,168)", + "rgb(37,52,148)", + "rgb(8,29,88)", +] + +YlOrBr = [ + "rgb(255,255,229)", + "rgb(255,247,188)", + "rgb(254,227,145)", + "rgb(254,196,79)", + "rgb(254,153,41)", + "rgb(236,112,20)", + "rgb(204,76,2)", + "rgb(153,52,4)", + "rgb(102,37,6)", +] + +YlOrRd = [ + "rgb(255,255,204)", + "rgb(255,237,160)", + "rgb(254,217,118)", + "rgb(254,178,76)", + "rgb(253,141,60)", + "rgb(252,78,42)", + "rgb(227,26,28)", + "rgb(189,0,38)", + "rgb(128,0,38)", +] + +Accent_r = Accent[::-1] +Blues_r = Blues[::-1] +BrBG_r = BrBG[::-1] +BuGn_r = BuGn[::-1] +BuPu_r = BuPu[::-1] +Dark2_r = Dark2[::-1] +GnBu_r = GnBu[::-1] +Greens_r = Greens[::-1] +Greys_r = Greys[::-1] +OrRd_r = OrRd[::-1] +Oranges_r = Oranges[::-1] +PRGn_r = PRGn[::-1] +Paired_r = Paired[::-1] +Pastel1_r = Pastel1[::-1] +Pastel2_r = Pastel2[::-1] +PiYG_r = PiYG[::-1] +PuBu_r = PuBu[::-1] +PuBuGn_r = PuBuGn[::-1] +PuOr_r = PuOr[::-1] +PuRd_r = PuRd[::-1] +Purples_r = Purples[::-1] +RdBu_r = RdBu[::-1] +RdGy_r = RdGy[::-1] +RdPu_r = RdPu[::-1] +RdYlBu_r = RdYlBu[::-1] +RdYlGn_r = RdYlGn[::-1] +Reds_r = Reds[::-1] +Set1_r = Set1[::-1] +Set2_r = Set2[::-1] +Set3_r = Set3[::-1] +Spectral_r = Spectral[::-1] +YlGn_r = YlGn[::-1] +YlGnBu_r = YlGnBu[::-1] +YlOrBr_r = YlOrBr[::-1] +YlOrRd_r = YlOrRd[::-1] diff --git a/plotly/express/colors/cyclical.py b/plotly/express/colors/cyclical.py new file mode 100644 index 0000000000..bcb7d07e2e --- /dev/null +++ b/plotly/express/colors/cyclical.py @@ -0,0 +1,157 @@ +""" +Cyclical color scales are appropriate for continuous data that has a natural cyclical \ +structure, such as temporal data (hour of day, day of week, day of year, seasons) or +complex numbers or other phase data. +""" + +from ._swatches import _swatches, _swatches_continuous, _swatches_cyclical + + +def swatches(template=None): + return _swatches(__name__, globals(), template) + + +swatches.__doc__ = _swatches.__doc__ + + +def swatches_continuous(template=None): + return _swatches_continuous(__name__, globals(), template) + + +swatches_continuous.__doc__ = _swatches_continuous.__doc__ + + +def swatches_cyclical(template=None): + return _swatches_cyclical(__name__, globals(), template) + + +swatches_cyclical.__doc__ = _swatches_cyclical.__doc__ + + +Twilight = [ + "#e2d9e2", + "#9ebbc9", + "#6785be", + "#5e43a5", + "#421257", + "#471340", + "#8e2c50", + "#ba6657", + "#ceac94", + "#e2d9e2", +] +IceFire = [ + "#000000", + "#001f4d", + "#003786", + "#0e58a8", + "#217eb8", + "#30a4ca", + "#54c8df", + "#9be4ef", + "#e1e9d1", + "#f3d573", + "#e7b000", + "#da8200", + "#c65400", + "#ac2301", + "#820000", + "#4c0000", + "#000000", +] +Edge = [ + "#313131", + "#3d019d", + "#3810dc", + "#2d47f9", + "#2593ff", + "#2adef6", + "#60fdfa", + "#aefdff", + "#f3f3f1", + "#fffda9", + "#fafd5b", + "#f7da29", + "#ff8e25", + "#f8432d", + "#d90d39", + "#97023d", + "#313131", +] +Phase = [ + "rgb(167, 119, 12)", + "rgb(197, 96, 51)", + "rgb(217, 67, 96)", + "rgb(221, 38, 163)", + "rgb(196, 59, 224)", + "rgb(153, 97, 244)", + "rgb(95, 127, 228)", + "rgb(40, 144, 183)", + "rgb(15, 151, 136)", + "rgb(39, 153, 79)", + "rgb(119, 141, 17)", + "rgb(167, 119, 12)", +] +HSV = [ + "#ff0000", + "#ffa700", + "#afff00", + "#08ff00", + "#00ff9f", + "#00b7ff", + "#0010ff", + "#9700ff", + "#ff00bf", + "#ff0000", +] +mrybm = [ + "#f884f7", + "#f968c4", + "#ea4388", + "#cf244b", + "#b51a15", + "#bd4304", + "#cc6904", + "#d58f04", + "#cfaa27", + "#a19f62", + "#588a93", + "#2269c4", + "#3e3ef0", + "#6b4ef9", + "#956bfa", + "#cd7dfe", + "#f884f7", +] +mygbm = [ + "#ef55f1", + "#fb84ce", + "#fbafa1", + "#fcd471", + "#f0ed35", + "#c6e516", + "#96d310", + "#61c10b", + "#31ac28", + "#439064", + "#3d719a", + "#284ec8", + "#2e21ea", + "#6324f5", + "#9139fa", + "#c543fa", + "#ef55f1", +] + +Edge_r = Edge[::-1] +HSV_r = HSV[::-1] +IceFire_r = IceFire[::-1] +Phase_r = Phase[::-1] +Twilight_r = Twilight[::-1] +mrybm_r = mrybm[::-1] +mygbm_r = mygbm[::-1] + +__all__ = [ + "swatches", + "swatches_cyclical", +] diff --git a/plotly/express/colors/diverging.py b/plotly/express/colors/diverging.py new file mode 100644 index 0000000000..53170df9c0 --- /dev/null +++ b/plotly/express/colors/diverging.py @@ -0,0 +1,75 @@ +""" +Diverging color scales are appropriate for continuous data that has a natural midpoint \ +other otherwise informative special value, such as 0 altitude, or the boiling point +of a liquid. The color scales in this module are \ +mostly meant to be passed in as the `color_continuous_scale` argument to various \ +functions, and to be used with the `color_continuous_midpoint` argument. +""" + +from .colorbrewer import ( # noqa: F401 + BrBG, + PRGn, + PiYG, + PuOr, + RdBu, + RdGy, + RdYlBu, + RdYlGn, + Spectral, + BrBG_r, + PRGn_r, + PiYG_r, + PuOr_r, + RdBu_r, + RdGy_r, + RdYlBu_r, + RdYlGn_r, + Spectral_r, +) +from .cmocean import ( # noqa: F401 + balance, + delta, + curl, + oxy, + balance_r, + delta_r, + curl_r, + oxy_r, +) +from .carto import ( # noqa: F401 + Armyrose, + Fall, + Geyser, + Temps, + Tealrose, + Tropic, + Earth, + Armyrose_r, + Fall_r, + Geyser_r, + Temps_r, + Tealrose_r, + Tropic_r, + Earth_r, +) + +from .plotlyjs import Picnic, Portland, Picnic_r, Portland_r # noqa: F401 + +from ._swatches import _swatches, _swatches_continuous + + +def swatches(template=None): + return _swatches(__name__, globals(), template) + + +swatches.__doc__ = _swatches.__doc__ + + +def swatches_continuous(template=None): + return _swatches_continuous(__name__, globals(), template) + + +swatches_continuous.__doc__ = _swatches_continuous.__doc__ + + +__all__ = ["swatches"] diff --git a/plotly/express/colors/qualitative.py b/plotly/express/colors/qualitative.py new file mode 100644 index 0000000000..c26a55783a --- /dev/null +++ b/plotly/express/colors/qualitative.py @@ -0,0 +1,184 @@ +""" +Qualitative color sequences are appropriate for data that has no natural ordering, such \ +as categories, colors, names, countries etc. The color sequences in this module are \ +mostly meant to be passed in as the `color_discrete_sequence` argument to various functions. +""" + +from ._swatches import _swatches + + +def swatches(template=None): + return _swatches(__name__, globals(), template) + + +swatches.__doc__ = _swatches.__doc__ + +Plotly = [ + "#636EFA", + "#EF553B", + "#00CC96", + "#AB63FA", + "#FFA15A", + "#19D3F3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52", +] + +D3 = [ + "#1F77B4", + "#FF7F0E", + "#2CA02C", + "#D62728", + "#9467BD", + "#8C564B", + "#E377C2", + "#7F7F7F", + "#BCBD22", + "#17BECF", +] +G10 = [ + "#3366CC", + "#DC3912", + "#FF9900", + "#109618", + "#990099", + "#0099C6", + "#DD4477", + "#66AA00", + "#B82E2E", + "#316395", +] +T10 = [ + "#4C78A8", + "#F58518", + "#E45756", + "#72B7B2", + "#54A24B", + "#EECA3B", + "#B279A2", + "#FF9DA6", + "#9D755D", + "#BAB0AC", +] +Alphabet = [ + "#AA0DFE", + "#3283FE", + "#85660D", + "#782AB6", + "#565656", + "#1C8356", + "#16FF32", + "#F7E1A0", + "#E2E2E2", + "#1CBE4F", + "#C4451C", + "#DEA0FD", + "#FE00FA", + "#325A9B", + "#FEAF16", + "#F8A19F", + "#90AD1C", + "#F6222E", + "#1CFFCE", + "#2ED9FF", + "#B10DA1", + "#C075A6", + "#FC1CBF", + "#B00068", + "#FBE426", + "#FA0087", +] +Dark24 = [ + "#2E91E5", + "#E15F99", + "#1CA71C", + "#FB0D0D", + "#DA16FF", + "#222A2A", + "#B68100", + "#750D86", + "#EB663B", + "#511CFB", + "#00A08B", + "#FB00D1", + "#FC0080", + "#B2828D", + "#6C7C32", + "#778AAE", + "#862A16", + "#A777F1", + "#620042", + "#1616A7", + "#DA60CA", + "#6C4516", + "#0D2A63", + "#AF0038", +] +Light24 = [ + "#FD3216", + "#00FE35", + "#6A76FC", + "#FED4C4", + "#FE00CE", + "#0DF9FF", + "#F6F926", + "#FF9616", + "#479B55", + "#EEA6FB", + "#DC587D", + "#D626FF", + "#6E899C", + "#00B5F7", + "#B68E00", + "#C9FBE5", + "#FF0092", + "#22FFA7", + "#E3EE9E", + "#86CE00", + "#BC7196", + "#7E7DCD", + "#FC6955", + "#E48F72", +] + +Alphabet_r = Alphabet[::-1] +D3_r = D3[::-1] +Dark24_r = Dark24[::-1] +G10_r = G10[::-1] +Light24_r = Light24[::-1] +Plotly_r = Plotly[::-1] +T10_r = T10[::-1] + +from .colorbrewer import ( # noqa: E402 F401 + Set1, + Pastel1, + Dark2, + Set2, + Pastel2, + Set3, + Set1_r, + Pastel1_r, + Dark2_r, + Set2_r, + Pastel2_r, + Set3_r, +) +from .carto import ( # noqa: E402 F401 + Antique, + Bold, + Pastel, + Prism, + Safe, + Vivid, + Antique_r, + Bold_r, + Pastel_r, + Prism_r, + Safe_r, + Vivid_r, +) + + +__all__ = ["swatches"] diff --git a/plotly/express/colors/sequential.py b/plotly/express/colors/sequential.py new file mode 100644 index 0000000000..0e9ccf6b6f --- /dev/null +++ b/plotly/express/colors/sequential.py @@ -0,0 +1,257 @@ +""" +Sequential color scales are appropriate for most continuous data, but in some cases it \ +can be helpful to use a `plotly.colors.diverging` or \ +`plotly.colors.cyclical` scale instead. The color scales in this module are \ +mostly meant to be passed in as the `color_continuous_scale` argument to various functions. +""" + +from ._swatches import _swatches, _swatches_continuous + + +def swatches(template=None): + return _swatches(__name__, globals(), template) + + +swatches.__doc__ = _swatches.__doc__ + + +def swatches_continuous(template=None): + return _swatches_continuous(__name__, globals(), template) + + +swatches_continuous.__doc__ = _swatches_continuous.__doc__ + +Plotly3 = [ + "#0508b8", + "#1910d8", + "#3c19f0", + "#6b1cfb", + "#981cfd", + "#bf1cfd", + "#dd2bfd", + "#f246fe", + "#fc67fd", + "#fe88fc", + "#fea5fd", + "#febefe", + "#fec3fe", +] + +Viridis = [ + "#440154", + "#482878", + "#3e4989", + "#31688e", + "#26828e", + "#1f9e89", + "#35b779", + "#6ece58", + "#b5de2b", + "#fde725", +] +Cividis = [ + "#00224e", + "#123570", + "#3b496c", + "#575d6d", + "#707173", + "#8a8678", + "#a59c74", + "#c3b369", + "#e1cc55", + "#fee838", +] + +Inferno = [ + "#000004", + "#1b0c41", + "#4a0c6b", + "#781c6d", + "#a52c60", + "#cf4446", + "#ed6925", + "#fb9b06", + "#f7d13d", + "#fcffa4", +] +Magma = [ + "#000004", + "#180f3d", + "#440f76", + "#721f81", + "#9e2f7f", + "#cd4071", + "#f1605d", + "#fd9668", + "#feca8d", + "#fcfdbf", +] +Plasma = [ + "#0d0887", + "#46039f", + "#7201a8", + "#9c179e", + "#bd3786", + "#d8576b", + "#ed7953", + "#fb9f3a", + "#fdca26", + "#f0f921", +] +Turbo = [ + "#30123b", + "#4145ab", + "#4675ed", + "#39a2fc", + "#1bcfd4", + "#24eca6", + "#61fc6c", + "#a4fc3b", + "#d1e834", + "#f3c63a", + "#fe9b2d", + "#f36315", + "#d93806", + "#b11901", + "#7a0402", +] + +Cividis_r = Cividis[::-1] +Inferno_r = Inferno[::-1] +Magma_r = Magma[::-1] +Plasma_r = Plasma[::-1] +Plotly3_r = Plotly3[::-1] +Turbo_r = Turbo[::-1] +Viridis_r = Viridis[::-1] + +from .plotlyjs import ( # noqa: E402 F401 + Blackbody, + Bluered, + Electric, + Hot, + Jet, + Rainbow, + Blackbody_r, + Bluered_r, + Electric_r, + Hot_r, + Jet_r, + Rainbow_r, +) + +from .colorbrewer import ( # noqa: E402 F401 + Blues, + BuGn, + BuPu, + GnBu, + Greens, + Greys, + OrRd, + Oranges, + PuBu, + PuBuGn, + PuRd, + Purples, + RdBu, + RdPu, + Reds, + YlGn, + YlGnBu, + YlOrBr, + YlOrRd, + Blues_r, + BuGn_r, + BuPu_r, + GnBu_r, + Greens_r, + Greys_r, + OrRd_r, + Oranges_r, + PuBu_r, + PuBuGn_r, + PuRd_r, + Purples_r, + RdBu_r, + RdPu_r, + Reds_r, + YlGn_r, + YlGnBu_r, + YlOrBr_r, + YlOrRd_r, +) + +from .cmocean import ( # noqa: E402 F401 + turbid, + thermal, + haline, + solar, + ice, + gray, + deep, + dense, + algae, + matter, + speed, + amp, + tempo, + turbid_r, + thermal_r, + haline_r, + solar_r, + ice_r, + gray_r, + deep_r, + dense_r, + algae_r, + matter_r, + speed_r, + amp_r, + tempo_r, +) + +from .carto import ( # noqa: E402 F401 + Burg, + Burgyl, + Redor, + Oryel, + Peach, + Pinkyl, + Mint, + Blugrn, + Darkmint, + Emrld, + Aggrnyl, + Bluyl, + Teal, + Tealgrn, + Purp, + Purpor, + Sunset, + Magenta, + Sunsetdark, + Agsunset, + Brwnyl, + Burg_r, + Burgyl_r, + Redor_r, + Oryel_r, + Peach_r, + Pinkyl_r, + Mint_r, + Blugrn_r, + Darkmint_r, + Emrld_r, + Aggrnyl_r, + Bluyl_r, + Teal_r, + Tealgrn_r, + Purp_r, + Purpor_r, + Sunset_r, + Magenta_r, + Sunsetdark_r, + Agsunset_r, + Brwnyl_r, +) + +__all__ = ["swatches"] diff --git a/plotly/graph_objs/_bar.py b/plotly/graph_objs/_bar.py index 5bce1c9301..f52aca7f4c 100644 --- a/plotly/graph_objs/_bar.py +++ b/plotly/graph_objs/_bar.py @@ -1688,10 +1688,10 @@ def _prop_descriptions(self): dy Sets the y coordinate step. See `y0` for more info. error_x - :class:`plotly.graph_objects.bar.ErrorX` instance or + :class:`plotly.graph_objs.bar.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.bar.ErrorY` instance or + :class:`plotly.graph_objs.bar.ErrorY` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -1702,7 +1702,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.bar.Hoverlabel` instance + :class:`plotly.graph_objs.bar.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1770,7 +1770,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.bar.Legendgrouptitle` + :class:`plotly.graph_objs.bar.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1787,7 +1787,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.bar.Marker` instance or + :class:`plotly.graph_objs.bar.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1829,7 +1829,7 @@ def _prop_descriptions(self): outsidetextfont Sets the font used for `text` lying outside the bar. selected - :class:`plotly.graph_objects.bar.Selected` instance or + :class:`plotly.graph_objs.bar.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1842,7 +1842,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.bar.Stream` instance or + :class:`plotly.graph_objs.bar.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -1919,7 +1919,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.bar.Unselected` instance + :class:`plotly.graph_objs.bar.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -2154,10 +2154,10 @@ def __init__( dy Sets the y coordinate step. See `y0` for more info. error_x - :class:`plotly.graph_objects.bar.ErrorX` instance or + :class:`plotly.graph_objs.bar.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.bar.ErrorY` instance or + :class:`plotly.graph_objs.bar.ErrorY` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -2168,7 +2168,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.bar.Hoverlabel` instance + :class:`plotly.graph_objs.bar.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -2236,7 +2236,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.bar.Legendgrouptitle` + :class:`plotly.graph_objs.bar.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2253,7 +2253,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.bar.Marker` instance or + :class:`plotly.graph_objs.bar.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -2295,7 +2295,7 @@ def __init__( outsidetextfont Sets the font used for `text` lying outside the bar. selected - :class:`plotly.graph_objects.bar.Selected` instance or + :class:`plotly.graph_objs.bar.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -2308,7 +2308,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.bar.Stream` instance or + :class:`plotly.graph_objs.bar.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -2385,7 +2385,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.bar.Unselected` instance + :class:`plotly.graph_objs.bar.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_barpolar.py b/plotly/graph_objs/_barpolar.py index 380e811c61..aeb90eb60d 100644 --- a/plotly/graph_objs/_barpolar.py +++ b/plotly/graph_objs/_barpolar.py @@ -1058,7 +1058,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.barpolar.Hoverlabel` + :class:`plotly.graph_objs.barpolar.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1115,7 +1115,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.barpolar.Legendgrouptitle` + :class:`plotly.graph_objs.barpolar.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1132,7 +1132,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.barpolar.Marker` instance + :class:`plotly.graph_objs.barpolar.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1171,7 +1171,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `r`. selected - :class:`plotly.graph_objects.barpolar.Selected` + :class:`plotly.graph_objs.barpolar.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1184,7 +1184,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.barpolar.Stream` instance + :class:`plotly.graph_objs.barpolar.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1234,7 +1234,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.barpolar.Unselected` + :class:`plotly.graph_objs.barpolar.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1341,7 +1341,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.barpolar.Hoverlabel` + :class:`plotly.graph_objs.barpolar.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1398,7 +1398,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.barpolar.Legendgrouptitle` + :class:`plotly.graph_objs.barpolar.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1415,7 +1415,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.barpolar.Marker` instance + :class:`plotly.graph_objs.barpolar.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1454,7 +1454,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `r`. selected - :class:`plotly.graph_objects.barpolar.Selected` + :class:`plotly.graph_objs.barpolar.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1467,7 +1467,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.barpolar.Stream` instance + :class:`plotly.graph_objs.barpolar.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1517,7 +1517,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.barpolar.Unselected` + :class:`plotly.graph_objs.barpolar.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_box.py b/plotly/graph_objs/_box.py index c9df0f218c..99193dae37 100644 --- a/plotly/graph_objs/_box.py +++ b/plotly/graph_objs/_box.py @@ -1965,7 +1965,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.box.Hoverlabel` instance + :class:`plotly.graph_objs.box.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual boxes or @@ -2030,7 +2030,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.box.Legendgrouptitle` + :class:`plotly.graph_objs.box.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2047,7 +2047,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.box.Line` instance or dict + :class:`plotly.graph_objs.box.Line` instance or dict with compatible properties lowerfence Sets the lower fence values. There should be as many @@ -2060,7 +2060,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `lowerfence`. marker - :class:`plotly.graph_objects.box.Marker` instance or + :class:`plotly.graph_objs.box.Marker` instance or dict with compatible properties mean Sets the mean values. There should be as many items as @@ -2181,7 +2181,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `sd`. selected - :class:`plotly.graph_objects.box.Selected` instance or + :class:`plotly.graph_objs.box.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -2204,7 +2204,7 @@ def _prop_descriptions(self): sdmultiple (default 1) to scale the box size So it could be drawn 1-stddev, 3-stddev etc stream - :class:`plotly.graph_objects.box.Stream` instance or + :class:`plotly.graph_objs.box.Stream` instance or dict with compatible properties text Sets the text elements associated with each sample @@ -2239,7 +2239,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.box.Unselected` instance + :class:`plotly.graph_objs.box.Unselected` instance or dict with compatible properties upperfence Sets the upper fence values. There should be as many @@ -2537,7 +2537,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.box.Hoverlabel` instance + :class:`plotly.graph_objs.box.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual boxes or @@ -2602,7 +2602,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.box.Legendgrouptitle` + :class:`plotly.graph_objs.box.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2619,7 +2619,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.box.Line` instance or dict + :class:`plotly.graph_objs.box.Line` instance or dict with compatible properties lowerfence Sets the lower fence values. There should be as many @@ -2632,7 +2632,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `lowerfence`. marker - :class:`plotly.graph_objects.box.Marker` instance or + :class:`plotly.graph_objs.box.Marker` instance or dict with compatible properties mean Sets the mean values. There should be as many items as @@ -2753,7 +2753,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `sd`. selected - :class:`plotly.graph_objects.box.Selected` instance or + :class:`plotly.graph_objs.box.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -2776,7 +2776,7 @@ def __init__( sdmultiple (default 1) to scale the box size So it could be drawn 1-stddev, 3-stddev etc stream - :class:`plotly.graph_objects.box.Stream` instance or + :class:`plotly.graph_objs.box.Stream` instance or dict with compatible properties text Sets the text elements associated with each sample @@ -2811,7 +2811,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.box.Unselected` instance + :class:`plotly.graph_objs.box.Unselected` instance or dict with compatible properties upperfence Sets the upper fence values. There should be as many diff --git a/plotly/graph_objs/_candlestick.py b/plotly/graph_objs/_candlestick.py index 0a8d71ae98..fdcb29ee68 100644 --- a/plotly/graph_objs/_candlestick.py +++ b/plotly/graph_objs/_candlestick.py @@ -1087,7 +1087,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `customdata`. decreasing - :class:`plotly.graph_objects.candlestick.Decreasing` + :class:`plotly.graph_objs.candlestick.Decreasing` instance or dict with compatible properties high Sets the high values. @@ -1103,7 +1103,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.candlestick.Hoverlabel` + :class:`plotly.graph_objs.candlestick.Hoverlabel` instance or dict with compatible properties hovertext Same as `text`. @@ -1118,7 +1118,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `ids`. increasing - :class:`plotly.graph_objects.candlestick.Increasing` + :class:`plotly.graph_objs.candlestick.Increasing` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -1131,7 +1131,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.candlestick.Legendgrouptit + :class:`plotly.graph_objs.candlestick.Legendgrouptit le` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1148,7 +1148,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.candlestick.Line` instance + :class:`plotly.graph_objs.candlestick.Line` instance or dict with compatible properties low Sets the low values. @@ -1192,7 +1192,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.candlestick.Stream` + :class:`plotly.graph_objs.candlestick.Stream` instance or dict with compatible properties text Sets hover text elements associated with each sample @@ -1385,7 +1385,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `customdata`. decreasing - :class:`plotly.graph_objects.candlestick.Decreasing` + :class:`plotly.graph_objs.candlestick.Decreasing` instance or dict with compatible properties high Sets the high values. @@ -1401,7 +1401,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.candlestick.Hoverlabel` + :class:`plotly.graph_objs.candlestick.Hoverlabel` instance or dict with compatible properties hovertext Same as `text`. @@ -1416,7 +1416,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `ids`. increasing - :class:`plotly.graph_objects.candlestick.Increasing` + :class:`plotly.graph_objs.candlestick.Increasing` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -1429,7 +1429,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.candlestick.Legendgrouptit + :class:`plotly.graph_objs.candlestick.Legendgrouptit le` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1446,7 +1446,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.candlestick.Line` instance + :class:`plotly.graph_objs.candlestick.Line` instance or dict with compatible properties low Sets the low values. @@ -1490,7 +1490,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.candlestick.Stream` + :class:`plotly.graph_objs.candlestick.Stream` instance or dict with compatible properties text Sets hover text elements associated with each sample diff --git a/plotly/graph_objs/_carpet.py b/plotly/graph_objs/_carpet.py index b75b58a683..d4f5b9152e 100644 --- a/plotly/graph_objs/_carpet.py +++ b/plotly/graph_objs/_carpet.py @@ -812,7 +812,7 @@ def _prop_descriptions(self): coordinates. Use with `da` where `a0` is the starting coordinate and `da` the step. aaxis - :class:`plotly.graph_objects.carpet.Aaxis` instance or + :class:`plotly.graph_objs.carpet.Aaxis` instance or dict with compatible properties asrc Sets the source reference on Chart Studio Cloud for @@ -825,7 +825,7 @@ def _prop_descriptions(self): coordinates. Use with `db` where `b0` is the starting coordinate and `db` the step. baxis - :class:`plotly.graph_objects.carpet.Baxis` instance or + :class:`plotly.graph_objs.carpet.Baxis` instance or dict with compatible properties bsrc Sets the source reference on Chart Studio Cloud for @@ -872,7 +872,7 @@ def _prop_descriptions(self): the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.carpet.Legendgrouptitle` + :class:`plotly.graph_objs.carpet.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -910,7 +910,7 @@ def _prop_descriptions(self): opacity Sets the opacity of the trace. stream - :class:`plotly.graph_objects.carpet.Stream` instance or + :class:`plotly.graph_objs.carpet.Stream` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -1033,7 +1033,7 @@ def __init__( coordinates. Use with `da` where `a0` is the starting coordinate and `da` the step. aaxis - :class:`plotly.graph_objects.carpet.Aaxis` instance or + :class:`plotly.graph_objs.carpet.Aaxis` instance or dict with compatible properties asrc Sets the source reference on Chart Studio Cloud for @@ -1046,7 +1046,7 @@ def __init__( coordinates. Use with `db` where `b0` is the starting coordinate and `db` the step. baxis - :class:`plotly.graph_objects.carpet.Baxis` instance or + :class:`plotly.graph_objs.carpet.Baxis` instance or dict with compatible properties bsrc Sets the source reference on Chart Studio Cloud for @@ -1093,7 +1093,7 @@ def __init__( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.carpet.Legendgrouptitle` + :class:`plotly.graph_objs.carpet.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1131,7 +1131,7 @@ def __init__( opacity Sets the opacity of the trace. stream - :class:`plotly.graph_objects.carpet.Stream` instance or + :class:`plotly.graph_objs.carpet.Stream` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object diff --git a/plotly/graph_objs/_choropleth.py b/plotly/graph_objs/_choropleth.py index 7960d43ca4..3a04b22646 100644 --- a/plotly/graph_objs/_choropleth.py +++ b/plotly/graph_objs/_choropleth.py @@ -1123,7 +1123,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.choropleth.ColorBar` + :class:`plotly.graph_objs.choropleth.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1172,7 +1172,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.choropleth.Hoverlabel` + :class:`plotly.graph_objs.choropleth.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1229,7 +1229,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.choropleth.Legendgrouptitl + :class:`plotly.graph_objs.choropleth.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1262,7 +1262,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `locations`. marker - :class:`plotly.graph_objects.choropleth.Marker` + :class:`plotly.graph_objs.choropleth.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1288,7 +1288,7 @@ def _prop_descriptions(self): will correspond to the last color in the array and `zmax` will correspond to the first color. selected - :class:`plotly.graph_objects.choropleth.Selected` + :class:`plotly.graph_objs.choropleth.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1304,7 +1304,7 @@ def _prop_descriptions(self): Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.choropleth.Stream` + :class:`plotly.graph_objs.choropleth.Stream` instance or dict with compatible properties text Sets the text elements associated with each location. @@ -1334,7 +1334,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.choropleth.Unselected` + :class:`plotly.graph_objs.choropleth.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1446,7 +1446,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.choropleth.ColorBar` + :class:`plotly.graph_objs.choropleth.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1495,7 +1495,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.choropleth.Hoverlabel` + :class:`plotly.graph_objs.choropleth.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1552,7 +1552,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.choropleth.Legendgrouptitl + :class:`plotly.graph_objs.choropleth.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1585,7 +1585,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `locations`. marker - :class:`plotly.graph_objects.choropleth.Marker` + :class:`plotly.graph_objs.choropleth.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1611,7 +1611,7 @@ def __init__( will correspond to the last color in the array and `zmax` will correspond to the first color. selected - :class:`plotly.graph_objects.choropleth.Selected` + :class:`plotly.graph_objs.choropleth.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1627,7 +1627,7 @@ def __init__( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.choropleth.Stream` + :class:`plotly.graph_objs.choropleth.Stream` instance or dict with compatible properties text Sets the text elements associated with each location. @@ -1657,7 +1657,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.choropleth.Unselected` + :class:`plotly.graph_objs.choropleth.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_choroplethmap.py b/plotly/graph_objs/_choroplethmap.py index abcd14e4a7..118429a786 100644 --- a/plotly/graph_objs/_choroplethmap.py +++ b/plotly/graph_objs/_choroplethmap.py @@ -1123,7 +1123,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.choroplethmap.ColorBar` + :class:`plotly.graph_objs.choroplethmap.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1164,7 +1164,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.choroplethmap.Hoverlabel` + :class:`plotly.graph_objs.choroplethmap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1222,7 +1222,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.choroplethmap.Legendgroupt + :class:`plotly.graph_objs.choroplethmap.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1245,7 +1245,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `locations`. marker - :class:`plotly.graph_objects.choroplethmap.Marker` + :class:`plotly.graph_objs.choroplethmap.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1271,7 +1271,7 @@ def _prop_descriptions(self): will correspond to the last color in the array and `zmax` will correspond to the first color. selected - :class:`plotly.graph_objects.choroplethmap.Selected` + :class:`plotly.graph_objs.choroplethmap.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1287,7 +1287,7 @@ def _prop_descriptions(self): Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.choroplethmap.Stream` + :class:`plotly.graph_objs.choroplethmap.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1322,7 +1322,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.choroplethmap.Unselected` + :class:`plotly.graph_objs.choroplethmap.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1440,7 +1440,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.choroplethmap.ColorBar` + :class:`plotly.graph_objs.choroplethmap.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1481,7 +1481,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.choroplethmap.Hoverlabel` + :class:`plotly.graph_objs.choroplethmap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1539,7 +1539,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.choroplethmap.Legendgroupt + :class:`plotly.graph_objs.choroplethmap.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1562,7 +1562,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `locations`. marker - :class:`plotly.graph_objects.choroplethmap.Marker` + :class:`plotly.graph_objs.choroplethmap.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1588,7 +1588,7 @@ def __init__( will correspond to the last color in the array and `zmax` will correspond to the first color. selected - :class:`plotly.graph_objects.choroplethmap.Selected` + :class:`plotly.graph_objs.choroplethmap.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1604,7 +1604,7 @@ def __init__( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.choroplethmap.Stream` + :class:`plotly.graph_objs.choroplethmap.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1639,7 +1639,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.choroplethmap.Unselected` + :class:`plotly.graph_objs.choroplethmap.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_choroplethmapbox.py b/plotly/graph_objs/_choroplethmapbox.py index ec4745dc0b..c195f53fb6 100644 --- a/plotly/graph_objs/_choroplethmapbox.py +++ b/plotly/graph_objs/_choroplethmapbox.py @@ -1128,7 +1128,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.choroplethmapbox.ColorBar` + :class:`plotly.graph_objs.choroplethmapbox.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1169,7 +1169,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.choroplethmapbox.Hoverlabe + :class:`plotly.graph_objs.choroplethmapbox.Hoverlabe l` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1227,7 +1227,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.choroplethmapbox.Legendgro + :class:`plotly.graph_objs.choroplethmapbox.Legendgro uptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1250,7 +1250,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `locations`. marker - :class:`plotly.graph_objects.choroplethmapbox.Marker` + :class:`plotly.graph_objs.choroplethmapbox.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1276,7 +1276,7 @@ def _prop_descriptions(self): will correspond to the last color in the array and `zmax` will correspond to the first color. selected - :class:`plotly.graph_objects.choroplethmapbox.Selected` + :class:`plotly.graph_objs.choroplethmapbox.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1292,7 +1292,7 @@ def _prop_descriptions(self): Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.choroplethmapbox.Stream` + :class:`plotly.graph_objs.choroplethmapbox.Stream` instance or dict with compatible properties subplot mapbox subplots and traces are deprecated! Please @@ -1332,7 +1332,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.choroplethmapbox.Unselecte + :class:`plotly.graph_objs.choroplethmapbox.Unselecte d` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1455,7 +1455,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.choroplethmapbox.ColorBar` + :class:`plotly.graph_objs.choroplethmapbox.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1496,7 +1496,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.choroplethmapbox.Hoverlabe + :class:`plotly.graph_objs.choroplethmapbox.Hoverlabe l` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1554,7 +1554,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.choroplethmapbox.Legendgro + :class:`plotly.graph_objs.choroplethmapbox.Legendgro uptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1577,7 +1577,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `locations`. marker - :class:`plotly.graph_objects.choroplethmapbox.Marker` + :class:`plotly.graph_objs.choroplethmapbox.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1603,7 +1603,7 @@ def __init__( will correspond to the last color in the array and `zmax` will correspond to the first color. selected - :class:`plotly.graph_objects.choroplethmapbox.Selected` + :class:`plotly.graph_objs.choroplethmapbox.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1619,7 +1619,7 @@ def __init__( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.choroplethmapbox.Stream` + :class:`plotly.graph_objs.choroplethmapbox.Stream` instance or dict with compatible properties subplot mapbox subplots and traces are deprecated! Please @@ -1659,7 +1659,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.choroplethmapbox.Unselecte + :class:`plotly.graph_objs.choroplethmapbox.Unselecte d` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_cone.py b/plotly/graph_objs/_cone.py index b5c73b2e67..8cf82287e3 100644 --- a/plotly/graph_objs/_cone.py +++ b/plotly/graph_objs/_cone.py @@ -1449,7 +1449,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.cone.ColorBar` instance or + :class:`plotly.graph_objs.cone.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1480,7 +1480,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.cone.Hoverlabel` instance + :class:`plotly.graph_objs.cone.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1538,7 +1538,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.cone.Legendgrouptitle` + :class:`plotly.graph_objs.cone.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1555,10 +1555,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.cone.Lighting` instance or + :class:`plotly.graph_objs.cone.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.cone.Lightposition` + :class:`plotly.graph_objs.cone.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1623,7 +1623,7 @@ def _prop_descriptions(self): the same units as the u/v/w vector field, its the default value is half the sample's maximum vector norm. stream - :class:`plotly.graph_objects.cone.Stream` instance or + :class:`plotly.graph_objs.cone.Stream` instance or dict with compatible properties text Sets the text elements associated with the cones. If @@ -1868,7 +1868,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.cone.ColorBar` instance or + :class:`plotly.graph_objs.cone.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1899,7 +1899,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.cone.Hoverlabel` instance + :class:`plotly.graph_objs.cone.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1957,7 +1957,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.cone.Legendgrouptitle` + :class:`plotly.graph_objs.cone.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1974,10 +1974,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.cone.Lighting` instance or + :class:`plotly.graph_objs.cone.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.cone.Lightposition` + :class:`plotly.graph_objs.cone.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -2042,7 +2042,7 @@ def __init__( the same units as the u/v/w vector field, its the default value is half the sample's maximum vector norm. stream - :class:`plotly.graph_objects.cone.Stream` instance or + :class:`plotly.graph_objs.cone.Stream` instance or dict with compatible properties text Sets the text elements associated with the cones. If diff --git a/plotly/graph_objs/_contour.py b/plotly/graph_objs/_contour.py index 51f6f9ecf0..203ba8400c 100644 --- a/plotly/graph_objs/_contour.py +++ b/plotly/graph_objs/_contour.py @@ -1679,7 +1679,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.contour.ColorBar` instance + :class:`plotly.graph_objs.contour.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1699,7 +1699,7 @@ def _prop_descriptions(self): to true if `z` is a one dimensional array otherwise it is defaulted to false. contours - :class:`plotly.graph_objects.contour.Contours` instance + :class:`plotly.graph_objs.contour.Contours` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -1727,7 +1727,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.contour.Hoverlabel` + :class:`plotly.graph_objs.contour.Hoverlabel` instance or dict with compatible properties hoverongaps Determines whether or not gaps (i.e. {nan} or missing @@ -1788,7 +1788,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.contour.Legendgrouptitle` + :class:`plotly.graph_objs.contour.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1805,7 +1805,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.contour.Line` instance or + :class:`plotly.graph_objs.contour.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1845,7 +1845,7 @@ def _prop_descriptions(self): Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.contour.Stream` instance + :class:`plotly.graph_objs.contour.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. @@ -2154,7 +2154,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.contour.ColorBar` instance + :class:`plotly.graph_objs.contour.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -2174,7 +2174,7 @@ def __init__( to true if `z` is a one dimensional array otherwise it is defaulted to false. contours - :class:`plotly.graph_objects.contour.Contours` instance + :class:`plotly.graph_objs.contour.Contours` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -2202,7 +2202,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.contour.Hoverlabel` + :class:`plotly.graph_objs.contour.Hoverlabel` instance or dict with compatible properties hoverongaps Determines whether or not gaps (i.e. {nan} or missing @@ -2263,7 +2263,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.contour.Legendgrouptitle` + :class:`plotly.graph_objs.contour.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2280,7 +2280,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.contour.Line` instance or + :class:`plotly.graph_objs.contour.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -2320,7 +2320,7 @@ def __init__( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.contour.Stream` instance + :class:`plotly.graph_objs.contour.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. diff --git a/plotly/graph_objs/_contourcarpet.py b/plotly/graph_objs/_contourcarpet.py index 2a24b888e2..49c7672bed 100644 --- a/plotly/graph_objs/_contourcarpet.py +++ b/plotly/graph_objs/_contourcarpet.py @@ -1249,7 +1249,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.contourcarpet.ColorBar` + :class:`plotly.graph_objs.contourcarpet.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1264,7 +1264,7 @@ def _prop_descriptions(self): ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contours - :class:`plotly.graph_objects.contourcarpet.Contours` + :class:`plotly.graph_objs.contourcarpet.Contours` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -1306,7 +1306,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.contourcarpet.Legendgroupt + :class:`plotly.graph_objs.contourcarpet.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1323,7 +1323,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.contourcarpet.Line` + :class:`plotly.graph_objs.contourcarpet.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1363,7 +1363,7 @@ def _prop_descriptions(self): Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.contourcarpet.Stream` + :class:`plotly.graph_objs.contourcarpet.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. @@ -1563,7 +1563,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.contourcarpet.ColorBar` + :class:`plotly.graph_objs.contourcarpet.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1578,7 +1578,7 @@ def __init__( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contours - :class:`plotly.graph_objects.contourcarpet.Contours` + :class:`plotly.graph_objs.contourcarpet.Contours` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -1620,7 +1620,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.contourcarpet.Legendgroupt + :class:`plotly.graph_objs.contourcarpet.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1637,7 +1637,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.contourcarpet.Line` + :class:`plotly.graph_objs.contourcarpet.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1677,7 +1677,7 @@ def __init__( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.contourcarpet.Stream` + :class:`plotly.graph_objs.contourcarpet.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. diff --git a/plotly/graph_objs/_densitymap.py b/plotly/graph_objs/_densitymap.py index 25d129bb9d..c0443936a0 100644 --- a/plotly/graph_objs/_densitymap.py +++ b/plotly/graph_objs/_densitymap.py @@ -1102,7 +1102,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.densitymap.ColorBar` + :class:`plotly.graph_objs.densitymap.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1133,7 +1133,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.densitymap.Hoverlabel` + :class:`plotly.graph_objs.densitymap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1200,7 +1200,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.densitymap.Legendgrouptitl + :class:`plotly.graph_objs.densitymap.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1260,7 +1260,7 @@ def _prop_descriptions(self): Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.densitymap.Stream` + :class:`plotly.graph_objs.densitymap.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1417,7 +1417,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.densitymap.ColorBar` + :class:`plotly.graph_objs.densitymap.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1448,7 +1448,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.densitymap.Hoverlabel` + :class:`plotly.graph_objs.densitymap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1515,7 +1515,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.densitymap.Legendgrouptitl + :class:`plotly.graph_objs.densitymap.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1575,7 +1575,7 @@ def __init__( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.densitymap.Stream` + :class:`plotly.graph_objs.densitymap.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates diff --git a/plotly/graph_objs/_densitymapbox.py b/plotly/graph_objs/_densitymapbox.py index 59761b4739..8f52a4f54c 100644 --- a/plotly/graph_objs/_densitymapbox.py +++ b/plotly/graph_objs/_densitymapbox.py @@ -1107,7 +1107,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.densitymapbox.ColorBar` + :class:`plotly.graph_objs.densitymapbox.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1138,7 +1138,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.densitymapbox.Hoverlabel` + :class:`plotly.graph_objs.densitymapbox.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1205,7 +1205,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.densitymapbox.Legendgroupt + :class:`plotly.graph_objs.densitymapbox.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1265,7 +1265,7 @@ def _prop_descriptions(self): Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.densitymapbox.Stream` + :class:`plotly.graph_objs.densitymapbox.Stream` instance or dict with compatible properties subplot mapbox subplots and traces are deprecated! Please @@ -1431,7 +1431,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.densitymapbox.ColorBar` + :class:`plotly.graph_objs.densitymapbox.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1462,7 +1462,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.densitymapbox.Hoverlabel` + :class:`plotly.graph_objs.densitymapbox.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1529,7 +1529,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.densitymapbox.Legendgroupt + :class:`plotly.graph_objs.densitymapbox.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1589,7 +1589,7 @@ def __init__( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.densitymapbox.Stream` + :class:`plotly.graph_objs.densitymapbox.Stream` instance or dict with compatible properties subplot mapbox subplots and traces are deprecated! Please diff --git a/plotly/graph_objs/_figure.py b/plotly/graph_objs/_figure.py index 4380205f48..08a37ac1b4 100644 --- a/plotly/graph_objs/_figure.py +++ b/plotly/graph_objs/_figure.py @@ -773,10 +773,10 @@ def add_bar( dy Sets the y coordinate step. See `y0` for more info. error_x - :class:`plotly.graph_objects.bar.ErrorX` instance or + :class:`plotly.graph_objs.bar.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.bar.ErrorY` instance or + :class:`plotly.graph_objs.bar.ErrorY` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -787,7 +787,7 @@ def add_bar( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.bar.Hoverlabel` instance + :class:`plotly.graph_objs.bar.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -855,7 +855,7 @@ def add_bar( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.bar.Legendgrouptitle` + :class:`plotly.graph_objs.bar.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -872,7 +872,7 @@ def add_bar( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.bar.Marker` instance or + :class:`plotly.graph_objs.bar.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -914,7 +914,7 @@ def add_bar( outsidetextfont Sets the font used for `text` lying outside the bar. selected - :class:`plotly.graph_objects.bar.Selected` instance or + :class:`plotly.graph_objs.bar.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -927,7 +927,7 @@ def add_bar( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.bar.Stream` instance or + :class:`plotly.graph_objs.bar.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -1004,7 +1004,7 @@ def add_bar( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.bar.Unselected` instance + :class:`plotly.graph_objs.bar.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1308,7 +1308,7 @@ def add_barpolar( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.barpolar.Hoverlabel` + :class:`plotly.graph_objs.barpolar.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1365,7 +1365,7 @@ def add_barpolar( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.barpolar.Legendgrouptitle` + :class:`plotly.graph_objs.barpolar.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1382,7 +1382,7 @@ def add_barpolar( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.barpolar.Marker` instance + :class:`plotly.graph_objs.barpolar.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1421,7 +1421,7 @@ def add_barpolar( Sets the source reference on Chart Studio Cloud for `r`. selected - :class:`plotly.graph_objects.barpolar.Selected` + :class:`plotly.graph_objs.barpolar.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1434,7 +1434,7 @@ def add_barpolar( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.barpolar.Stream` instance + :class:`plotly.graph_objs.barpolar.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1484,7 +1484,7 @@ def add_barpolar( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.barpolar.Unselected` + :class:`plotly.graph_objs.barpolar.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1737,7 +1737,7 @@ def add_box( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.box.Hoverlabel` instance + :class:`plotly.graph_objs.box.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual boxes or @@ -1802,7 +1802,7 @@ def add_box( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.box.Legendgrouptitle` + :class:`plotly.graph_objs.box.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1819,7 +1819,7 @@ def add_box( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.box.Line` instance or dict + :class:`plotly.graph_objs.box.Line` instance or dict with compatible properties lowerfence Sets the lower fence values. There should be as many @@ -1832,7 +1832,7 @@ def add_box( Sets the source reference on Chart Studio Cloud for `lowerfence`. marker - :class:`plotly.graph_objects.box.Marker` instance or + :class:`plotly.graph_objs.box.Marker` instance or dict with compatible properties mean Sets the mean values. There should be as many items as @@ -1953,7 +1953,7 @@ def add_box( Sets the source reference on Chart Studio Cloud for `sd`. selected - :class:`plotly.graph_objects.box.Selected` instance or + :class:`plotly.graph_objs.box.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1976,7 +1976,7 @@ def add_box( sdmultiple (default 1) to scale the box size So it could be drawn 1-stddev, 3-stddev etc stream - :class:`plotly.graph_objects.box.Stream` instance or + :class:`plotly.graph_objs.box.Stream` instance or dict with compatible properties text Sets the text elements associated with each sample @@ -2011,7 +2011,7 @@ def add_box( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.box.Unselected` instance + :class:`plotly.graph_objs.box.Unselected` instance or dict with compatible properties upperfence Sets the upper fence values. There should be as many @@ -2336,7 +2336,7 @@ def add_candlestick( Sets the source reference on Chart Studio Cloud for `customdata`. decreasing - :class:`plotly.graph_objects.candlestick.Decreasing` + :class:`plotly.graph_objs.candlestick.Decreasing` instance or dict with compatible properties high Sets the high values. @@ -2352,7 +2352,7 @@ def add_candlestick( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.candlestick.Hoverlabel` + :class:`plotly.graph_objs.candlestick.Hoverlabel` instance or dict with compatible properties hovertext Same as `text`. @@ -2367,7 +2367,7 @@ def add_candlestick( Sets the source reference on Chart Studio Cloud for `ids`. increasing - :class:`plotly.graph_objects.candlestick.Increasing` + :class:`plotly.graph_objs.candlestick.Increasing` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -2380,7 +2380,7 @@ def add_candlestick( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.candlestick.Legendgrouptit + :class:`plotly.graph_objs.candlestick.Legendgrouptit le` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2397,7 +2397,7 @@ def add_candlestick( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.candlestick.Line` instance + :class:`plotly.graph_objs.candlestick.Line` instance or dict with compatible properties low Sets the low values. @@ -2441,7 +2441,7 @@ def add_candlestick( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.candlestick.Stream` + :class:`plotly.graph_objs.candlestick.Stream` instance or dict with compatible properties text Sets hover text elements associated with each sample @@ -2691,7 +2691,7 @@ def add_carpet( coordinates. Use with `da` where `a0` is the starting coordinate and `da` the step. aaxis - :class:`plotly.graph_objects.carpet.Aaxis` instance or + :class:`plotly.graph_objs.carpet.Aaxis` instance or dict with compatible properties asrc Sets the source reference on Chart Studio Cloud for @@ -2704,7 +2704,7 @@ def add_carpet( coordinates. Use with `db` where `b0` is the starting coordinate and `db` the step. baxis - :class:`plotly.graph_objects.carpet.Baxis` instance or + :class:`plotly.graph_objs.carpet.Baxis` instance or dict with compatible properties bsrc Sets the source reference on Chart Studio Cloud for @@ -2751,7 +2751,7 @@ def add_carpet( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.carpet.Legendgrouptitle` + :class:`plotly.graph_objs.carpet.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2789,7 +2789,7 @@ def add_carpet( opacity Sets the opacity of the trace. stream - :class:`plotly.graph_objects.carpet.Stream` instance or + :class:`plotly.graph_objs.carpet.Stream` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -2993,7 +2993,7 @@ def add_choropleth( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.choropleth.ColorBar` + :class:`plotly.graph_objs.choropleth.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -3042,7 +3042,7 @@ def add_choropleth( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.choropleth.Hoverlabel` + :class:`plotly.graph_objs.choropleth.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -3099,7 +3099,7 @@ def add_choropleth( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.choropleth.Legendgrouptitl + :class:`plotly.graph_objs.choropleth.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -3132,7 +3132,7 @@ def add_choropleth( Sets the source reference on Chart Studio Cloud for `locations`. marker - :class:`plotly.graph_objects.choropleth.Marker` + :class:`plotly.graph_objs.choropleth.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -3158,7 +3158,7 @@ def add_choropleth( will correspond to the last color in the array and `zmax` will correspond to the first color. selected - :class:`plotly.graph_objects.choropleth.Selected` + :class:`plotly.graph_objs.choropleth.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -3174,7 +3174,7 @@ def add_choropleth( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.choropleth.Stream` + :class:`plotly.graph_objs.choropleth.Stream` instance or dict with compatible properties text Sets the text elements associated with each location. @@ -3204,7 +3204,7 @@ def add_choropleth( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.choropleth.Unselected` + :class:`plotly.graph_objs.choropleth.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -3388,7 +3388,7 @@ def add_choroplethmap( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.choroplethmap.ColorBar` + :class:`plotly.graph_objs.choroplethmap.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -3429,7 +3429,7 @@ def add_choroplethmap( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.choroplethmap.Hoverlabel` + :class:`plotly.graph_objs.choroplethmap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -3487,7 +3487,7 @@ def add_choroplethmap( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.choroplethmap.Legendgroupt + :class:`plotly.graph_objs.choroplethmap.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -3510,7 +3510,7 @@ def add_choroplethmap( Sets the source reference on Chart Studio Cloud for `locations`. marker - :class:`plotly.graph_objects.choroplethmap.Marker` + :class:`plotly.graph_objs.choroplethmap.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -3536,7 +3536,7 @@ def add_choroplethmap( will correspond to the last color in the array and `zmax` will correspond to the first color. selected - :class:`plotly.graph_objects.choroplethmap.Selected` + :class:`plotly.graph_objs.choroplethmap.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -3552,7 +3552,7 @@ def add_choroplethmap( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.choroplethmap.Stream` + :class:`plotly.graph_objs.choroplethmap.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -3587,7 +3587,7 @@ def add_choroplethmap( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.choroplethmap.Unselected` + :class:`plotly.graph_objs.choroplethmap.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -3775,7 +3775,7 @@ def add_choroplethmapbox( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.choroplethmapbox.ColorBar` + :class:`plotly.graph_objs.choroplethmapbox.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -3816,7 +3816,7 @@ def add_choroplethmapbox( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.choroplethmapbox.Hoverlabe + :class:`plotly.graph_objs.choroplethmapbox.Hoverlabe l` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -3874,7 +3874,7 @@ def add_choroplethmapbox( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.choroplethmapbox.Legendgro + :class:`plotly.graph_objs.choroplethmapbox.Legendgro uptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -3897,7 +3897,7 @@ def add_choroplethmapbox( Sets the source reference on Chart Studio Cloud for `locations`. marker - :class:`plotly.graph_objects.choroplethmapbox.Marker` + :class:`plotly.graph_objs.choroplethmapbox.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -3923,7 +3923,7 @@ def add_choroplethmapbox( will correspond to the last color in the array and `zmax` will correspond to the first color. selected - :class:`plotly.graph_objects.choroplethmapbox.Selected` + :class:`plotly.graph_objs.choroplethmapbox.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -3939,7 +3939,7 @@ def add_choroplethmapbox( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.choroplethmapbox.Stream` + :class:`plotly.graph_objs.choroplethmapbox.Stream` instance or dict with compatible properties subplot mapbox subplots and traces are deprecated! Please @@ -3979,7 +3979,7 @@ def add_choroplethmapbox( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.choroplethmapbox.Unselecte + :class:`plotly.graph_objs.choroplethmapbox.Unselecte d` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -4193,7 +4193,7 @@ def add_cone( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.cone.ColorBar` instance or + :class:`plotly.graph_objs.cone.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -4224,7 +4224,7 @@ def add_cone( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.cone.Hoverlabel` instance + :class:`plotly.graph_objs.cone.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -4282,7 +4282,7 @@ def add_cone( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.cone.Legendgrouptitle` + :class:`plotly.graph_objs.cone.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -4299,10 +4299,10 @@ def add_cone( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.cone.Lighting` instance or + :class:`plotly.graph_objs.cone.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.cone.Lightposition` + :class:`plotly.graph_objs.cone.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -4367,7 +4367,7 @@ def add_cone( the same units as the u/v/w vector field, its the default value is half the sample's maximum vector norm. stream - :class:`plotly.graph_objects.cone.Stream` instance or + :class:`plotly.graph_objs.cone.Stream` instance or dict with compatible properties text Sets the text elements associated with the cones. If @@ -4690,7 +4690,7 @@ def add_contour( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.contour.ColorBar` instance + :class:`plotly.graph_objs.contour.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -4710,7 +4710,7 @@ def add_contour( to true if `z` is a one dimensional array otherwise it is defaulted to false. contours - :class:`plotly.graph_objects.contour.Contours` instance + :class:`plotly.graph_objs.contour.Contours` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -4738,7 +4738,7 @@ def add_contour( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.contour.Hoverlabel` + :class:`plotly.graph_objs.contour.Hoverlabel` instance or dict with compatible properties hoverongaps Determines whether or not gaps (i.e. {nan} or missing @@ -4799,7 +4799,7 @@ def add_contour( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.contour.Legendgrouptitle` + :class:`plotly.graph_objs.contour.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -4816,7 +4816,7 @@ def add_contour( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.contour.Line` instance or + :class:`plotly.graph_objs.contour.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -4856,7 +4856,7 @@ def add_contour( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.contour.Stream` instance + :class:`plotly.graph_objs.contour.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. @@ -5277,7 +5277,7 @@ def add_contourcarpet( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.contourcarpet.ColorBar` + :class:`plotly.graph_objs.contourcarpet.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -5292,7 +5292,7 @@ def add_contourcarpet( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contours - :class:`plotly.graph_objects.contourcarpet.Contours` + :class:`plotly.graph_objs.contourcarpet.Contours` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -5334,7 +5334,7 @@ def add_contourcarpet( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.contourcarpet.Legendgroupt + :class:`plotly.graph_objs.contourcarpet.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -5351,7 +5351,7 @@ def add_contourcarpet( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.contourcarpet.Line` + :class:`plotly.graph_objs.contourcarpet.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -5391,7 +5391,7 @@ def add_contourcarpet( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.contourcarpet.Stream` + :class:`plotly.graph_objs.contourcarpet.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. @@ -5634,7 +5634,7 @@ def add_densitymap( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.densitymap.ColorBar` + :class:`plotly.graph_objs.densitymap.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -5665,7 +5665,7 @@ def add_densitymap( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.densitymap.Hoverlabel` + :class:`plotly.graph_objs.densitymap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -5732,7 +5732,7 @@ def add_densitymap( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.densitymap.Legendgrouptitl + :class:`plotly.graph_objs.densitymap.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -5792,7 +5792,7 @@ def add_densitymap( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.densitymap.Stream` + :class:`plotly.graph_objs.densitymap.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -6018,7 +6018,7 @@ def add_densitymapbox( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.densitymapbox.ColorBar` + :class:`plotly.graph_objs.densitymapbox.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -6049,7 +6049,7 @@ def add_densitymapbox( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.densitymapbox.Hoverlabel` + :class:`plotly.graph_objs.densitymapbox.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -6116,7 +6116,7 @@ def add_densitymapbox( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.densitymapbox.Legendgroupt + :class:`plotly.graph_objs.densitymapbox.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -6176,7 +6176,7 @@ def add_densitymapbox( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.densitymapbox.Stream` + :class:`plotly.graph_objs.densitymapbox.Stream` instance or dict with compatible properties subplot mapbox subplots and traces are deprecated! Please @@ -6416,7 +6416,7 @@ def add_funnel( and tick labels, make sure to set `xaxis.layer` and `yaxis.layer` to *below traces*. connector - :class:`plotly.graph_objects.funnel.Connector` instance + :class:`plotly.graph_objs.funnel.Connector` instance or dict with compatible properties constraintext Constrain the size of text inside or outside a bar to @@ -6442,7 +6442,7 @@ def add_funnel( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.funnel.Hoverlabel` + :class:`plotly.graph_objs.funnel.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -6511,7 +6511,7 @@ def add_funnel( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.funnel.Legendgrouptitle` + :class:`plotly.graph_objs.funnel.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -6528,7 +6528,7 @@ def add_funnel( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.funnel.Marker` instance or + :class:`plotly.graph_objs.funnel.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -6581,7 +6581,7 @@ def add_funnel( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.funnel.Stream` instance or + :class:`plotly.graph_objs.funnel.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -6937,7 +6937,7 @@ def add_funnelarea( dlabel Sets the label step. See `label0` for more info. domain - :class:`plotly.graph_objects.funnelarea.Domain` + :class:`plotly.graph_objs.funnelarea.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -6948,7 +6948,7 @@ def add_funnelarea( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.funnelarea.Hoverlabel` + :class:`plotly.graph_objs.funnelarea.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -7027,7 +7027,7 @@ def add_funnelarea( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.funnelarea.Legendgrouptitl + :class:`plotly.graph_objs.funnelarea.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -7044,7 +7044,7 @@ def add_funnelarea( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.funnelarea.Marker` + :class:`plotly.graph_objs.funnelarea.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -7076,7 +7076,7 @@ def add_funnelarea( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.funnelarea.Stream` + :class:`plotly.graph_objs.funnelarea.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -7118,7 +7118,7 @@ def add_funnelarea( Sets the source reference on Chart Studio Cloud for `texttemplate`. title - :class:`plotly.graph_objects.funnelarea.Title` instance + :class:`plotly.graph_objs.funnelarea.Title` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -7337,7 +7337,7 @@ def add_heatmap( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.heatmap.ColorBar` instance + :class:`plotly.graph_objs.heatmap.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -7377,7 +7377,7 @@ def add_heatmap( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.heatmap.Hoverlabel` + :class:`plotly.graph_objs.heatmap.Hoverlabel` instance or dict with compatible properties hoverongaps Determines whether or not gaps (i.e. {nan} or missing @@ -7438,7 +7438,7 @@ def add_heatmap( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.heatmap.Legendgrouptitle` + :class:`plotly.graph_objs.heatmap.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -7486,7 +7486,7 @@ def add_heatmap( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.heatmap.Stream` instance + :class:`plotly.graph_objs.heatmap.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. @@ -7905,7 +7905,7 @@ def add_histogram( Constrain the size of text inside or outside a bar to be no larger than the bar itself. cumulative - :class:`plotly.graph_objects.histogram.Cumulative` + :class:`plotly.graph_objs.histogram.Cumulative` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -7916,10 +7916,10 @@ def add_histogram( Sets the source reference on Chart Studio Cloud for `customdata`. error_x - :class:`plotly.graph_objects.histogram.ErrorX` instance + :class:`plotly.graph_objs.histogram.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.histogram.ErrorY` instance + :class:`plotly.graph_objs.histogram.ErrorY` instance or dict with compatible properties histfunc Specifies the binning function used for this histogram @@ -7955,7 +7955,7 @@ def add_histogram( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.histogram.Hoverlabel` + :class:`plotly.graph_objs.histogram.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -8018,7 +8018,7 @@ def add_histogram( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.histogram.Legendgrouptitle + :class:`plotly.graph_objs.histogram.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -8035,7 +8035,7 @@ def add_histogram( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.histogram.Marker` instance + :class:`plotly.graph_objs.histogram.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -8081,7 +8081,7 @@ def add_histogram( outsidetextfont Sets the font used for `text` lying outside the bar. selected - :class:`plotly.graph_objects.histogram.Selected` + :class:`plotly.graph_objs.histogram.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -8094,7 +8094,7 @@ def add_histogram( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.histogram.Stream` instance + :class:`plotly.graph_objs.histogram.Stream` instance or dict with compatible properties text Sets hover text elements associated with each bar. If a @@ -8162,7 +8162,7 @@ def add_histogram( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.histogram.Unselected` + :class:`plotly.graph_objs.histogram.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -8177,7 +8177,7 @@ def add_histogram( x coordinates refer to `layout.xaxis`. If "x2", the x coordinates refer to `layout.xaxis2`, and so on. xbins - :class:`plotly.graph_objects.histogram.XBins` instance + :class:`plotly.graph_objs.histogram.XBins` instance or dict with compatible properties xcalendar Sets the calendar system to use with `x` date data. @@ -8205,7 +8205,7 @@ def add_histogram( y coordinates refer to `layout.yaxis`. If "y2", the y coordinates refer to `layout.yaxis2`, and so on. ybins - :class:`plotly.graph_objects.histogram.YBins` instance + :class:`plotly.graph_objs.histogram.YBins` instance or dict with compatible properties ycalendar Sets the calendar system to use with `y` date data. @@ -8442,7 +8442,7 @@ def add_histogram2d( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.histogram2d.ColorBar` + :class:`plotly.graph_objs.histogram2d.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -8498,7 +8498,7 @@ def add_histogram2d( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.histogram2d.Hoverlabel` + :class:`plotly.graph_objs.histogram2d.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -8551,7 +8551,7 @@ def add_histogram2d( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.histogram2d.Legendgrouptit + :class:`plotly.graph_objs.histogram2d.Legendgrouptit le` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -8568,7 +8568,7 @@ def add_histogram2d( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.histogram2d.Marker` + :class:`plotly.graph_objs.histogram2d.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -8614,7 +8614,7 @@ def add_histogram2d( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.histogram2d.Stream` + :class:`plotly.graph_objs.histogram2d.Stream` instance or dict with compatible properties textfont Sets the text font. @@ -8677,7 +8677,7 @@ def add_histogram2d( Note that the same `xbingroup` value can be used to set (1D) histogram `bingroup` xbins - :class:`plotly.graph_objects.histogram2d.XBins` + :class:`plotly.graph_objs.histogram2d.XBins` instance or dict with compatible properties xcalendar Sets the calendar system to use with `x` date data. @@ -8714,7 +8714,7 @@ def add_histogram2d( Note that the same `ybingroup` value can be used to set (1D) histogram `bingroup` ybins - :class:`plotly.graph_objects.histogram2d.YBins` + :class:`plotly.graph_objs.histogram2d.YBins` instance or dict with compatible properties ycalendar Sets the calendar system to use with `y` date data. @@ -8982,7 +8982,7 @@ def add_histogram2dcontour( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.histogram2dcontour.ColorBa + :class:`plotly.graph_objs.histogram2dcontour.ColorBa r` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -8997,7 +8997,7 @@ def add_histogram2dcontour( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contours - :class:`plotly.graph_objects.histogram2dcontour.Contour + :class:`plotly.graph_objs.histogram2dcontour.Contour s` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -9041,7 +9041,7 @@ def add_histogram2dcontour( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.histogram2dcontour.Hoverla + :class:`plotly.graph_objs.histogram2dcontour.Hoverla bel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -9094,7 +9094,7 @@ def add_histogram2dcontour( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.histogram2dcontour.Legendg + :class:`plotly.graph_objs.histogram2dcontour.Legendg rouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -9111,10 +9111,10 @@ def add_histogram2dcontour( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.histogram2dcontour.Line` + :class:`plotly.graph_objs.histogram2dcontour.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.histogram2dcontour.Marker` + :class:`plotly.graph_objs.histogram2dcontour.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -9166,7 +9166,7 @@ def add_histogram2dcontour( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.histogram2dcontour.Stream` + :class:`plotly.graph_objs.histogram2dcontour.Stream` instance or dict with compatible properties textfont For this trace it only has an effect if `coloring` is @@ -9231,7 +9231,7 @@ def add_histogram2dcontour( Note that the same `xbingroup` value can be used to set (1D) histogram `bingroup` xbins - :class:`plotly.graph_objects.histogram2dcontour.XBins` + :class:`plotly.graph_objs.histogram2dcontour.XBins` instance or dict with compatible properties xcalendar Sets the calendar system to use with `x` date data. @@ -9266,7 +9266,7 @@ def add_histogram2dcontour( Note that the same `ybingroup` value can be used to set (1D) histogram `bingroup` ybins - :class:`plotly.graph_objects.histogram2dcontour.YBins` + :class:`plotly.graph_objs.histogram2dcontour.YBins` instance or dict with compatible properties ycalendar Sets the calendar system to use with `y` date data. @@ -9495,7 +9495,7 @@ def add_icicle( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.icicle.Domain` instance or + :class:`plotly.graph_objs.icicle.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -9506,7 +9506,7 @@ def add_icicle( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.icicle.Hoverlabel` + :class:`plotly.graph_objs.icicle.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -9568,7 +9568,7 @@ def add_icicle( Sets the source reference on Chart Studio Cloud for `labels`. leaf - :class:`plotly.graph_objects.icicle.Leaf` instance or + :class:`plotly.graph_objs.icicle.Leaf` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -9577,7 +9577,7 @@ def add_icicle( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.icicle.Legendgrouptitle` + :class:`plotly.graph_objs.icicle.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -9600,7 +9600,7 @@ def add_icicle( filled in, otherwise plotly attempts to find a matching item in `labels`. marker - :class:`plotly.graph_objects.icicle.Marker` instance or + :class:`plotly.graph_objs.icicle.Marker` instance or dict with compatible properties maxdepth Sets the number of rendered sectors from any given @@ -9645,16 +9645,16 @@ def add_icicle( Sets the source reference on Chart Studio Cloud for `parents`. pathbar - :class:`plotly.graph_objects.icicle.Pathbar` instance + :class:`plotly.graph_objs.icicle.Pathbar` instance or dict with compatible properties root - :class:`plotly.graph_objects.icicle.Root` instance or + :class:`plotly.graph_objs.icicle.Root` instance or dict with compatible properties sort Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.icicle.Stream` instance or + :class:`plotly.graph_objs.icicle.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -9694,7 +9694,7 @@ def add_icicle( Sets the source reference on Chart Studio Cloud for `texttemplate`. tiling - :class:`plotly.graph_objects.icicle.Tiling` instance or + :class:`plotly.graph_objs.icicle.Tiling` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -9885,7 +9885,7 @@ def add_image( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.image.Hoverlabel` instance + :class:`plotly.graph_objs.image.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -9940,7 +9940,7 @@ def add_image( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.image.Legendgrouptitle` + :class:`plotly.graph_objs.image.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -9982,7 +9982,7 @@ def add_image( The URI consists of "data:image/[][;base64]," stream - :class:`plotly.graph_objects.image.Stream` instance or + :class:`plotly.graph_objs.image.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. @@ -10197,10 +10197,10 @@ def add_indicator( Sets the source reference on Chart Studio Cloud for `customdata`. delta - :class:`plotly.graph_objects.indicator.Delta` instance + :class:`plotly.graph_objs.indicator.Delta` instance or dict with compatible properties domain - :class:`plotly.graph_objects.indicator.Domain` instance + :class:`plotly.graph_objs.indicator.Domain` instance or dict with compatible properties gauge The gauge of the Indicator plot. @@ -10218,7 +10218,7 @@ def add_indicator( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.indicator.Legendgrouptitle + :class:`plotly.graph_objs.indicator.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -10260,13 +10260,13 @@ def add_indicator( Sets the trace name. The trace name appears as the legend item and on hover. number - :class:`plotly.graph_objects.indicator.Number` instance + :class:`plotly.graph_objs.indicator.Number` instance or dict with compatible properties stream - :class:`plotly.graph_objects.indicator.Stream` instance + :class:`plotly.graph_objs.indicator.Stream` instance or dict with compatible properties title - :class:`plotly.graph_objects.indicator.Title` instance + :class:`plotly.graph_objs.indicator.Title` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -10428,7 +10428,7 @@ def add_isosurface( chosen according to whether numbers in the `color` array are all positive, all negative or mixed. caps - :class:`plotly.graph_objects.isosurface.Caps` instance + :class:`plotly.graph_objs.isosurface.Caps` instance or dict with compatible properties cauto Determines whether or not the color domain is computed @@ -10456,7 +10456,7 @@ def add_isosurface( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.isosurface.ColorBar` + :class:`plotly.graph_objs.isosurface.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -10471,7 +10471,7 @@ def add_isosurface( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contour - :class:`plotly.graph_objects.isosurface.Contour` + :class:`plotly.graph_objs.isosurface.Contour` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -10494,7 +10494,7 @@ def add_isosurface( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.isosurface.Hoverlabel` + :class:`plotly.graph_objs.isosurface.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -10555,7 +10555,7 @@ def add_isosurface( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.isosurface.Legendgrouptitl + :class:`plotly.graph_objs.isosurface.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -10572,10 +10572,10 @@ def add_isosurface( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.isosurface.Lighting` + :class:`plotly.graph_objs.isosurface.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.isosurface.Lightposition` + :class:`plotly.graph_objs.isosurface.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -10621,16 +10621,16 @@ def add_isosurface( Determines whether or not a colorbar is displayed for this trace. slices - :class:`plotly.graph_objects.isosurface.Slices` + :class:`plotly.graph_objs.isosurface.Slices` instance or dict with compatible properties spaceframe - :class:`plotly.graph_objects.isosurface.Spaceframe` + :class:`plotly.graph_objs.isosurface.Spaceframe` instance or dict with compatible properties stream - :class:`plotly.graph_objects.isosurface.Stream` + :class:`plotly.graph_objs.isosurface.Stream` instance or dict with compatible properties surface - :class:`plotly.graph_objects.isosurface.Surface` + :class:`plotly.graph_objs.isosurface.Surface` instance or dict with compatible properties text Sets the text elements associated with the vertices. If @@ -10954,7 +10954,7 @@ def add_mesh3d( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.mesh3d.ColorBar` instance + :class:`plotly.graph_objs.mesh3d.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -10969,7 +10969,7 @@ def add_mesh3d( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contour - :class:`plotly.graph_objects.mesh3d.Contour` instance + :class:`plotly.graph_objs.mesh3d.Contour` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -11004,7 +11004,7 @@ def add_mesh3d( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.mesh3d.Hoverlabel` + :class:`plotly.graph_objs.mesh3d.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -11106,7 +11106,7 @@ def add_mesh3d( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.mesh3d.Legendgrouptitle` + :class:`plotly.graph_objs.mesh3d.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -11123,10 +11123,10 @@ def add_mesh3d( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.mesh3d.Lighting` instance + :class:`plotly.graph_objs.mesh3d.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.mesh3d.Lightposition` + :class:`plotly.graph_objs.mesh3d.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -11172,7 +11172,7 @@ def add_mesh3d( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.mesh3d.Stream` instance or + :class:`plotly.graph_objs.mesh3d.Stream` instance or dict with compatible properties text Sets the text elements associated with the vertices. If @@ -11460,7 +11460,7 @@ def add_ohlc( Sets the source reference on Chart Studio Cloud for `customdata`. decreasing - :class:`plotly.graph_objects.ohlc.Decreasing` instance + :class:`plotly.graph_objs.ohlc.Decreasing` instance or dict with compatible properties high Sets the high values. @@ -11476,7 +11476,7 @@ def add_ohlc( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.ohlc.Hoverlabel` instance + :class:`plotly.graph_objs.ohlc.Hoverlabel` instance or dict with compatible properties hovertext Same as `text`. @@ -11491,7 +11491,7 @@ def add_ohlc( Sets the source reference on Chart Studio Cloud for `ids`. increasing - :class:`plotly.graph_objects.ohlc.Increasing` instance + :class:`plotly.graph_objs.ohlc.Increasing` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -11504,7 +11504,7 @@ def add_ohlc( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.ohlc.Legendgrouptitle` + :class:`plotly.graph_objs.ohlc.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -11521,7 +11521,7 @@ def add_ohlc( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.ohlc.Line` instance or + :class:`plotly.graph_objs.ohlc.Line` instance or dict with compatible properties low Sets the low values. @@ -11565,7 +11565,7 @@ def add_ohlc( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.ohlc.Stream` instance or + :class:`plotly.graph_objs.ohlc.Stream` instance or dict with compatible properties text Sets hover text elements associated with each sample @@ -11814,7 +11814,7 @@ def add_parcats( the default property values to use for elements of parcats.dimensions domain - :class:`plotly.graph_objects.parcats.Domain` instance + :class:`plotly.graph_objs.parcats.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -11866,13 +11866,13 @@ def add_parcats( labelfont Sets the font for the `dimension` labels. legendgrouptitle - :class:`plotly.graph_objects.parcats.Legendgrouptitle` + :class:`plotly.graph_objs.parcats.Legendgrouptitle` instance or dict with compatible properties legendwidth Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.parcats.Line` instance or + :class:`plotly.graph_objs.parcats.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -11899,7 +11899,7 @@ def add_parcats( If `backward`, sort paths based on dimensions categories from right to left. stream - :class:`plotly.graph_objects.parcats.Stream` instance + :class:`plotly.graph_objs.parcats.Stream` instance or dict with compatible properties tickfont Sets the font for the `category` labels. @@ -12032,7 +12032,7 @@ def add_parcoords( the default property values to use for elements of parcoords.dimensions domain - :class:`plotly.graph_objects.parcoords.Domain` instance + :class:`plotly.graph_objs.parcoords.Domain` instance or dict with compatible properties ids Assigns id labels to each datum. These ids for object @@ -12062,7 +12062,7 @@ def add_parcoords( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.parcoords.Legendgrouptitle + :class:`plotly.graph_objs.parcoords.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -12079,7 +12079,7 @@ def add_parcoords( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.parcoords.Line` instance + :class:`plotly.graph_objs.parcoords.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -12103,7 +12103,7 @@ def add_parcoords( rangefont Sets the font for the `dimension` range values. stream - :class:`plotly.graph_objects.parcoords.Stream` instance + :class:`plotly.graph_objs.parcoords.Stream` instance or dict with compatible properties tickfont Sets the font for the `dimension` tick values. @@ -12130,7 +12130,7 @@ def add_parcoords( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.parcoords.Unselected` + :class:`plotly.graph_objs.parcoords.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -12269,7 +12269,7 @@ def add_pie( dlabel Sets the label step. See `label0` for more info. domain - :class:`plotly.graph_objects.pie.Domain` instance or + :class:`plotly.graph_objs.pie.Domain` instance or dict with compatible properties hole Sets the fraction of the radius to cut out of the pie. @@ -12283,7 +12283,7 @@ def add_pie( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.pie.Hoverlabel` instance + :class:`plotly.graph_objs.pie.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -12372,7 +12372,7 @@ def add_pie( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.pie.Legendgrouptitle` + :class:`plotly.graph_objs.pie.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -12389,7 +12389,7 @@ def add_pie( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.pie.Marker` instance or + :class:`plotly.graph_objs.pie.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -12438,7 +12438,7 @@ def add_pie( Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.pie.Stream` instance or + :class:`plotly.graph_objs.pie.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -12480,7 +12480,7 @@ def add_pie( Sets the source reference on Chart Studio Cloud for `texttemplate`. title - :class:`plotly.graph_objects.pie.Title` instance or + :class:`plotly.graph_objs.pie.Title` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -12649,7 +12649,7 @@ def add_sankey( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.sankey.Domain` instance or + :class:`plotly.graph_objs.sankey.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -12659,7 +12659,7 @@ def add_sankey( superseded by `node.hoverinfo` and `node.hoverinfo` for nodes and links respectively. hoverlabel - :class:`plotly.graph_objects.sankey.Hoverlabel` + :class:`plotly.graph_objs.sankey.Hoverlabel` instance or dict with compatible properties ids Assigns id labels to each datum. These ids for object @@ -12675,7 +12675,7 @@ def add_sankey( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.sankey.Legendgrouptitle` + :class:`plotly.graph_objs.sankey.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -12724,7 +12724,7 @@ def add_sankey( any other non-array values means no selection all where the `selected` and `unselected` styles have no effect. stream - :class:`plotly.graph_objects.sankey.Stream` instance or + :class:`plotly.graph_objs.sankey.Stream` instance or dict with compatible properties textfont Sets the font for node labels @@ -12932,10 +12932,10 @@ def add_scatter( dy Sets the y coordinate step. See `y0` for more info. error_x - :class:`plotly.graph_objects.scatter.ErrorX` instance + :class:`plotly.graph_objs.scatter.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.scatter.ErrorY` instance + :class:`plotly.graph_objs.scatter.ErrorY` instance or dict with compatible properties fill Sets the area to fill with a solid color. Defaults to @@ -12991,7 +12991,7 @@ def add_scatter( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatter.Hoverlabel` + :class:`plotly.graph_objs.scatter.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -13059,7 +13059,7 @@ def add_scatter( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatter.Legendgrouptitle` + :class:`plotly.graph_objs.scatter.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -13076,10 +13076,10 @@ def add_scatter( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatter.Line` instance or + :class:`plotly.graph_objs.scatter.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatter.Marker` instance + :class:`plotly.graph_objs.scatter.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -13123,7 +13123,7 @@ def add_scatter( subsequent traces are added. Also affects the default value of `fill`. selected - :class:`plotly.graph_objects.scatter.Selected` instance + :class:`plotly.graph_objs.scatter.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -13160,7 +13160,7 @@ def add_scatter( fill-linked traces are not already consecutive, the later ones will be pushed down in the drawing order. stream - :class:`plotly.graph_objects.scatter.Stream` instance + :class:`plotly.graph_objs.scatter.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -13223,7 +13223,7 @@ def add_scatter( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatter.Unselected` + :class:`plotly.graph_objs.scatter.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -13516,13 +13516,13 @@ def add_scatter3d( Sets the source reference on Chart Studio Cloud for `customdata`. error_x - :class:`plotly.graph_objects.scatter3d.ErrorX` instance + :class:`plotly.graph_objs.scatter3d.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.scatter3d.ErrorY` instance + :class:`plotly.graph_objs.scatter3d.ErrorY` instance or dict with compatible properties error_z - :class:`plotly.graph_objects.scatter3d.ErrorZ` instance + :class:`plotly.graph_objs.scatter3d.ErrorZ` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -13533,7 +13533,7 @@ def add_scatter3d( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatter3d.Hoverlabel` + :class:`plotly.graph_objs.scatter3d.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -13595,7 +13595,7 @@ def add_scatter3d( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatter3d.Legendgrouptitle + :class:`plotly.graph_objs.scatter3d.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -13612,10 +13612,10 @@ def add_scatter3d( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatter3d.Line` instance + :class:`plotly.graph_objs.scatter3d.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatter3d.Marker` instance + :class:`plotly.graph_objs.scatter3d.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -13646,7 +13646,7 @@ def add_scatter3d( opacity Sets the opacity of the trace. projection - :class:`plotly.graph_objects.scatter3d.Projection` + :class:`plotly.graph_objs.scatter3d.Projection` instance or dict with compatible properties scene Sets a reference between this trace's 3D coordinate @@ -13658,7 +13658,7 @@ def add_scatter3d( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatter3d.Stream` instance + :class:`plotly.graph_objs.scatter3d.Stream` instance or dict with compatible properties surfaceaxis If "-1", the scatter points are not fill with a surface @@ -13982,7 +13982,7 @@ def add_scattercarpet( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattercarpet.Hoverlabel` + :class:`plotly.graph_objs.scattercarpet.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -14026,7 +14026,7 @@ def add_scattercarpet( Sets hover text elements associated with each (a,b) point. If a single string, the same string appears over all the data points. If an array of strings, the items - are mapped in order to the the data points in (a,b). To + are mapped in order of the data points in (a,b). To be seen, trace `hoverinfo` must contain a "text" flag. hovertextsrc Sets the source reference on Chart Studio Cloud for @@ -14049,7 +14049,7 @@ def add_scattercarpet( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattercarpet.Legendgroupt + :class:`plotly.graph_objs.scattercarpet.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -14066,10 +14066,10 @@ def add_scattercarpet( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattercarpet.Line` + :class:`plotly.graph_objs.scattercarpet.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scattercarpet.Marker` + :class:`plotly.graph_objs.scattercarpet.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -14100,7 +14100,7 @@ def add_scattercarpet( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattercarpet.Selected` + :class:`plotly.graph_objs.scattercarpet.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -14113,13 +14113,13 @@ def add_scattercarpet( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattercarpet.Stream` + :class:`plotly.graph_objs.scattercarpet.Stream` instance or dict with compatible properties text Sets text elements associated with each (a,b) point. If a single string, the same string appears over all the data points. If an array of strings, the items are - mapped in order to the the data points in (a,b). If + mapped in order of the data points in (a,b). If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels. @@ -14177,7 +14177,7 @@ def add_scattercarpet( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattercarpet.Unselected` + :class:`plotly.graph_objs.scattercarpet.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -14396,7 +14396,7 @@ def add_scattergeo( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattergeo.Hoverlabel` + :class:`plotly.graph_objs.scattergeo.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -14463,7 +14463,7 @@ def add_scattergeo( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattergeo.Legendgrouptitl + :class:`plotly.graph_objs.scattergeo.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -14480,7 +14480,7 @@ def add_scattergeo( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattergeo.Line` instance + :class:`plotly.graph_objs.scattergeo.Line` instance or dict with compatible properties locationmode The library used by the *country names* `locationmode` @@ -14505,7 +14505,7 @@ def add_scattergeo( Sets the source reference on Chart Studio Cloud for `lon`. marker - :class:`plotly.graph_objects.scattergeo.Marker` + :class:`plotly.graph_objs.scattergeo.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -14536,7 +14536,7 @@ def add_scattergeo( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattergeo.Selected` + :class:`plotly.graph_objs.scattergeo.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -14549,7 +14549,7 @@ def add_scattergeo( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattergeo.Stream` + :class:`plotly.graph_objs.scattergeo.Stream` instance or dict with compatible properties text Sets text elements associated with each (lon,lat) pair @@ -14614,7 +14614,7 @@ def add_scattergeo( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattergeo.Unselected` + :class:`plotly.graph_objs.scattergeo.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -14790,10 +14790,10 @@ def add_scattergl( dy Sets the y coordinate step. See `y0` for more info. error_x - :class:`plotly.graph_objects.scattergl.ErrorX` instance + :class:`plotly.graph_objs.scattergl.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.scattergl.ErrorY` instance + :class:`plotly.graph_objs.scattergl.ErrorY` instance or dict with compatible properties fill Sets the area to fill with a solid color. Defaults to @@ -14831,7 +14831,7 @@ def add_scattergl( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattergl.Hoverlabel` + :class:`plotly.graph_objs.scattergl.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -14893,7 +14893,7 @@ def add_scattergl( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattergl.Legendgrouptitle + :class:`plotly.graph_objs.scattergl.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -14910,10 +14910,10 @@ def add_scattergl( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattergl.Line` instance + :class:`plotly.graph_objs.scattergl.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scattergl.Marker` instance + :class:`plotly.graph_objs.scattergl.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -14939,7 +14939,7 @@ def add_scattergl( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattergl.Selected` + :class:`plotly.graph_objs.scattergl.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -14952,7 +14952,7 @@ def add_scattergl( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattergl.Stream` instance + :class:`plotly.graph_objs.scattergl.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -15015,7 +15015,7 @@ def add_scattergl( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattergl.Unselected` + :class:`plotly.graph_objs.scattergl.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -15276,7 +15276,7 @@ def add_scattermap( base layers. To place the scattermap layers above every other layer, set `below` to "''". cluster - :class:`plotly.graph_objects.scattermap.Cluster` + :class:`plotly.graph_objs.scattermap.Cluster` instance or dict with compatible properties connectgaps Determines whether or not gaps (i.e. {nan} or missing @@ -15307,7 +15307,7 @@ def add_scattermap( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattermap.Hoverlabel` + :class:`plotly.graph_objs.scattermap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -15374,7 +15374,7 @@ def add_scattermap( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattermap.Legendgrouptitl + :class:`plotly.graph_objs.scattermap.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -15391,7 +15391,7 @@ def add_scattermap( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattermap.Line` instance + :class:`plotly.graph_objs.scattermap.Line` instance or dict with compatible properties lon Sets the longitude coordinates (in degrees East). @@ -15399,7 +15399,7 @@ def add_scattermap( Sets the source reference on Chart Studio Cloud for `lon`. marker - :class:`plotly.graph_objects.scattermap.Marker` + :class:`plotly.graph_objs.scattermap.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -15428,7 +15428,7 @@ def add_scattermap( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattermap.Selected` + :class:`plotly.graph_objs.scattermap.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -15441,7 +15441,7 @@ def add_scattermap( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattermap.Stream` + :class:`plotly.graph_objs.scattermap.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -15509,7 +15509,7 @@ def add_scattermap( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattermap.Unselected` + :class:`plotly.graph_objs.scattermap.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -15658,7 +15658,7 @@ def add_scattermapbox( the base layers. To place the scattermapbox layers above every other layer, set `below` to "''". cluster - :class:`plotly.graph_objects.scattermapbox.Cluster` + :class:`plotly.graph_objs.scattermapbox.Cluster` instance or dict with compatible properties connectgaps Determines whether or not gaps (i.e. {nan} or missing @@ -15689,7 +15689,7 @@ def add_scattermapbox( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattermapbox.Hoverlabel` + :class:`plotly.graph_objs.scattermapbox.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -15756,7 +15756,7 @@ def add_scattermapbox( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattermapbox.Legendgroupt + :class:`plotly.graph_objs.scattermapbox.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -15773,7 +15773,7 @@ def add_scattermapbox( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattermapbox.Line` + :class:`plotly.graph_objs.scattermapbox.Line` instance or dict with compatible properties lon Sets the longitude coordinates (in degrees East). @@ -15781,7 +15781,7 @@ def add_scattermapbox( Sets the source reference on Chart Studio Cloud for `lon`. marker - :class:`plotly.graph_objects.scattermapbox.Marker` + :class:`plotly.graph_objs.scattermapbox.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -15810,7 +15810,7 @@ def add_scattermapbox( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattermapbox.Selected` + :class:`plotly.graph_objs.scattermapbox.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -15823,7 +15823,7 @@ def add_scattermapbox( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattermapbox.Stream` + :class:`plotly.graph_objs.scattermapbox.Stream` instance or dict with compatible properties subplot mapbox subplots and traces are deprecated! Please @@ -15896,7 +15896,7 @@ def add_scattermapbox( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattermapbox.Unselected` + :class:`plotly.graph_objs.scattermapbox.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -16091,7 +16091,7 @@ def add_scatterpolar( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatterpolar.Hoverlabel` + :class:`plotly.graph_objs.scatterpolar.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -16159,7 +16159,7 @@ def add_scatterpolar( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatterpolar.Legendgroupti + :class:`plotly.graph_objs.scatterpolar.Legendgroupti tle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -16176,10 +16176,10 @@ def add_scatterpolar( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatterpolar.Line` + :class:`plotly.graph_objs.scatterpolar.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatterpolar.Marker` + :class:`plotly.graph_objs.scatterpolar.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -16219,7 +16219,7 @@ def add_scatterpolar( Sets the source reference on Chart Studio Cloud for `r`. selected - :class:`plotly.graph_objects.scatterpolar.Selected` + :class:`plotly.graph_objs.scatterpolar.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -16232,7 +16232,7 @@ def add_scatterpolar( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatterpolar.Stream` + :class:`plotly.graph_objs.scatterpolar.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -16313,7 +16313,7 @@ def add_scatterpolar( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatterpolar.Unselected` + :class:`plotly.graph_objs.scatterpolar.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -16517,7 +16517,7 @@ def add_scatterpolargl( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatterpolargl.Hoverlabel` + :class:`plotly.graph_objs.scatterpolargl.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -16579,7 +16579,7 @@ def add_scatterpolargl( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatterpolargl.Legendgroup + :class:`plotly.graph_objs.scatterpolargl.Legendgroup title` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -16596,10 +16596,10 @@ def add_scatterpolargl( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatterpolargl.Line` + :class:`plotly.graph_objs.scatterpolargl.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatterpolargl.Marker` + :class:`plotly.graph_objs.scatterpolargl.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -16639,7 +16639,7 @@ def add_scatterpolargl( Sets the source reference on Chart Studio Cloud for `r`. selected - :class:`plotly.graph_objects.scatterpolargl.Selected` + :class:`plotly.graph_objs.scatterpolargl.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -16652,7 +16652,7 @@ def add_scatterpolargl( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatterpolargl.Stream` + :class:`plotly.graph_objs.scatterpolargl.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -16733,7 +16733,7 @@ def add_scatterpolargl( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatterpolargl.Unselected` + :class:`plotly.graph_objs.scatterpolargl.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -16921,7 +16921,7 @@ def add_scattersmith( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattersmith.Hoverlabel` + :class:`plotly.graph_objs.scattersmith.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -16996,7 +16996,7 @@ def add_scattersmith( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattersmith.Legendgroupti + :class:`plotly.graph_objs.scattersmith.Legendgroupti tle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -17013,10 +17013,10 @@ def add_scattersmith( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattersmith.Line` + :class:`plotly.graph_objs.scattersmith.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scattersmith.Marker` + :class:`plotly.graph_objs.scattersmith.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -17054,7 +17054,7 @@ def add_scattersmith( Sets the source reference on Chart Studio Cloud for `real`. selected - :class:`plotly.graph_objects.scattersmith.Selected` + :class:`plotly.graph_objs.scattersmith.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -17067,7 +17067,7 @@ def add_scattersmith( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattersmith.Stream` + :class:`plotly.graph_objs.scattersmith.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -17136,7 +17136,7 @@ def add_scattersmith( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattersmith.Unselected` + :class:`plotly.graph_objs.scattersmith.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -17347,7 +17347,7 @@ def add_scatterternary( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatterternary.Hoverlabel` + :class:`plotly.graph_objs.scatterternary.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -17391,7 +17391,7 @@ def add_scatterternary( Sets hover text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items - are mapped in order to the the data points in (a,b,c). + are mapped in order of the data points in (a,b,c). To be seen, trace `hoverinfo` must contain a "text" flag. hovertextsrc @@ -17415,7 +17415,7 @@ def add_scatterternary( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatterternary.Legendgroup + :class:`plotly.graph_objs.scatterternary.Legendgroup title` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -17432,10 +17432,10 @@ def add_scatterternary( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatterternary.Line` + :class:`plotly.graph_objs.scatterternary.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatterternary.Marker` + :class:`plotly.graph_objs.scatterternary.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -17466,7 +17466,7 @@ def add_scatterternary( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scatterternary.Selected` + :class:`plotly.graph_objs.scatterternary.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -17479,7 +17479,7 @@ def add_scatterternary( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatterternary.Stream` + :class:`plotly.graph_objs.scatterternary.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -17497,7 +17497,7 @@ def add_scatterternary( Sets text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items are - mapped in order to the the data points in (a,b,c). If + mapped in order of the data points in (a,b,c). If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels. @@ -17555,7 +17555,7 @@ def add_scatterternary( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatterternary.Unselected` + :class:`plotly.graph_objs.scatterternary.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -17703,11 +17703,11 @@ def add_splom( Sets the source reference on Chart Studio Cloud for `customdata`. diagonal - :class:`plotly.graph_objects.splom.Diagonal` instance + :class:`plotly.graph_objs.splom.Diagonal` instance or dict with compatible properties dimensions A tuple of - :class:`plotly.graph_objects.splom.Dimension` instances + :class:`plotly.graph_objs.splom.Dimension` instances or dicts with compatible properties dimensiondefaults When used in a template (as @@ -17723,7 +17723,7 @@ def add_splom( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.splom.Hoverlabel` instance + :class:`plotly.graph_objs.splom.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -17780,7 +17780,7 @@ def add_splom( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.splom.Legendgrouptitle` + :class:`plotly.graph_objs.splom.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -17797,7 +17797,7 @@ def add_splom( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.splom.Marker` instance or + :class:`plotly.graph_objs.splom.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -17821,7 +17821,7 @@ def add_splom( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.splom.Selected` instance + :class:`plotly.graph_objs.splom.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -17840,7 +17840,7 @@ def add_splom( Determines whether or not subplots on the upper half from the diagonal are displayed. stream - :class:`plotly.graph_objects.splom.Stream` instance or + :class:`plotly.graph_objs.splom.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair to @@ -17874,7 +17874,7 @@ def add_splom( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.splom.Unselected` instance + :class:`plotly.graph_objs.splom.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -18098,7 +18098,7 @@ def add_streamtube( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.streamtube.ColorBar` + :class:`plotly.graph_objs.streamtube.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -18129,7 +18129,7 @@ def add_streamtube( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.streamtube.Hoverlabel` + :class:`plotly.graph_objs.streamtube.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -18186,7 +18186,7 @@ def add_streamtube( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.streamtube.Legendgrouptitl + :class:`plotly.graph_objs.streamtube.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -18203,10 +18203,10 @@ def add_streamtube( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.streamtube.Lighting` + :class:`plotly.graph_objs.streamtube.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.streamtube.Lightposition` + :class:`plotly.graph_objs.streamtube.Lightposition` instance or dict with compatible properties maxdisplayed The maximum number of displayed segments in a @@ -18259,10 +18259,10 @@ def add_streamtube( 1, which avoids two max divergence tubes from touching at adjacent starting positions. starts - :class:`plotly.graph_objects.streamtube.Starts` + :class:`plotly.graph_objs.streamtube.Starts` instance or dict with compatible properties stream - :class:`plotly.graph_objects.streamtube.Stream` + :class:`plotly.graph_objs.streamtube.Stream` instance or dict with compatible properties text Sets a text element associated with this trace. If @@ -18547,7 +18547,7 @@ def add_sunburst( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.sunburst.Domain` instance + :class:`plotly.graph_objs.sunburst.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -18558,7 +18558,7 @@ def add_sunburst( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.sunburst.Hoverlabel` + :class:`plotly.graph_objs.sunburst.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -18630,7 +18630,7 @@ def add_sunburst( Sets the source reference on Chart Studio Cloud for `labels`. leaf - :class:`plotly.graph_objects.sunburst.Leaf` instance or + :class:`plotly.graph_objs.sunburst.Leaf` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -18639,7 +18639,7 @@ def add_sunburst( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.sunburst.Legendgrouptitle` + :class:`plotly.graph_objs.sunburst.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -18662,7 +18662,7 @@ def add_sunburst( filled in, otherwise plotly attempts to find a matching item in `labels`. marker - :class:`plotly.graph_objects.sunburst.Marker` instance + :class:`plotly.graph_objs.sunburst.Marker` instance or dict with compatible properties maxdepth Sets the number of rendered sectors from any given @@ -18707,7 +18707,7 @@ def add_sunburst( Sets the source reference on Chart Studio Cloud for `parents`. root - :class:`plotly.graph_objects.sunburst.Root` instance or + :class:`plotly.graph_objs.sunburst.Root` instance or dict with compatible properties rotation Rotates the whole diagram counterclockwise by some @@ -18716,7 +18716,7 @@ def add_sunburst( Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.sunburst.Stream` instance + :class:`plotly.graph_objs.sunburst.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -18969,7 +18969,7 @@ def add_surface( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.surface.ColorBar` instance + :class:`plotly.graph_objs.surface.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -18987,7 +18987,7 @@ def add_surface( Determines whether or not gaps (i.e. {nan} or missing values) in the `z` data are filled in. contours - :class:`plotly.graph_objects.surface.Contours` instance + :class:`plotly.graph_objs.surface.Contours` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -19011,7 +19011,7 @@ def add_surface( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.surface.Hoverlabel` + :class:`plotly.graph_objs.surface.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -19068,7 +19068,7 @@ def add_surface( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.surface.Legendgrouptitle` + :class:`plotly.graph_objs.surface.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -19085,10 +19085,10 @@ def add_surface( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.surface.Lighting` instance + :class:`plotly.graph_objs.surface.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.surface.Lightposition` + :class:`plotly.graph_objs.surface.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -19145,7 +19145,7 @@ def add_surface( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.surface.Stream` instance + :class:`plotly.graph_objs.surface.Stream` instance or dict with compatible properties surfacecolor Sets the surface color values, used for setting a color @@ -19371,7 +19371,7 @@ def add_table( Parameters ---------- cells - :class:`plotly.graph_objects.table.Cells` instance or + :class:`plotly.graph_objs.table.Cells` instance or dict with compatible properties columnorder Specifies the rendered order of the data columns; for @@ -19397,10 +19397,10 @@ def add_table( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.table.Domain` instance or + :class:`plotly.graph_objs.table.Domain` instance or dict with compatible properties header - :class:`plotly.graph_objects.table.Header` instance or + :class:`plotly.graph_objs.table.Header` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -19411,7 +19411,7 @@ def add_table( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.table.Hoverlabel` instance + :class:`plotly.graph_objs.table.Hoverlabel` instance or dict with compatible properties ids Assigns id labels to each datum. These ids for object @@ -19427,7 +19427,7 @@ def add_table( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.table.Legendgrouptitle` + :class:`plotly.graph_objs.table.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -19463,7 +19463,7 @@ def add_table( Sets the trace name. The trace name appears as the legend item and on hover. stream - :class:`plotly.graph_objects.table.Stream` instance or + :class:`plotly.graph_objs.table.Stream` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -19623,7 +19623,7 @@ def add_treemap( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.treemap.Domain` instance + :class:`plotly.graph_objs.treemap.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -19634,7 +19634,7 @@ def add_treemap( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.treemap.Hoverlabel` + :class:`plotly.graph_objs.treemap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -19702,7 +19702,7 @@ def add_treemap( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.treemap.Legendgrouptitle` + :class:`plotly.graph_objs.treemap.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -19725,7 +19725,7 @@ def add_treemap( filled in, otherwise plotly attempts to find a matching item in `labels`. marker - :class:`plotly.graph_objects.treemap.Marker` instance + :class:`plotly.graph_objs.treemap.Marker` instance or dict with compatible properties maxdepth Sets the number of rendered sectors from any given @@ -19770,16 +19770,16 @@ def add_treemap( Sets the source reference on Chart Studio Cloud for `parents`. pathbar - :class:`plotly.graph_objects.treemap.Pathbar` instance + :class:`plotly.graph_objs.treemap.Pathbar` instance or dict with compatible properties root - :class:`plotly.graph_objects.treemap.Root` instance or + :class:`plotly.graph_objs.treemap.Root` instance or dict with compatible properties sort Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.treemap.Stream` instance + :class:`plotly.graph_objs.treemap.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -19819,7 +19819,7 @@ def add_treemap( Sets the source reference on Chart Studio Cloud for `texttemplate`. tiling - :class:`plotly.graph_objects.treemap.Tiling` instance + :class:`plotly.graph_objs.treemap.Tiling` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -20015,7 +20015,7 @@ def add_violin( estimate. By default, the bandwidth is determined by Silverman's rule of thumb. box - :class:`plotly.graph_objects.violin.Box` instance or + :class:`plotly.graph_objs.violin.Box` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -20038,7 +20038,7 @@ def add_violin( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.violin.Hoverlabel` + :class:`plotly.graph_objs.violin.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual violins or @@ -20104,7 +20104,7 @@ def add_violin( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.violin.Legendgrouptitle` + :class:`plotly.graph_objs.violin.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -20121,13 +20121,13 @@ def add_violin( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.violin.Line` instance or + :class:`plotly.graph_objs.violin.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.violin.Marker` instance or + :class:`plotly.graph_objs.violin.Marker` instance or dict with compatible properties meanline - :class:`plotly.graph_objects.violin.Meanline` instance + :class:`plotly.graph_objs.violin.Meanline` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -20209,7 +20209,7 @@ def add_violin( (max) width "count" means the violins are scaled by the number of sample points making up each violin. selected - :class:`plotly.graph_objects.violin.Selected` instance + :class:`plotly.graph_objs.violin.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -20241,7 +20241,7 @@ def add_violin( settings, use mode "manual" and fill in the `span` attribute. stream - :class:`plotly.graph_objects.violin.Stream` instance or + :class:`plotly.graph_objs.violin.Stream` instance or dict with compatible properties text Sets the text elements associated with each sample @@ -20276,7 +20276,7 @@ def add_violin( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.violin.Unselected` + :class:`plotly.graph_objs.violin.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -20529,7 +20529,7 @@ def add_volume( chosen according to whether numbers in the `color` array are all positive, all negative or mixed. caps - :class:`plotly.graph_objects.volume.Caps` instance or + :class:`plotly.graph_objs.volume.Caps` instance or dict with compatible properties cauto Determines whether or not the color domain is computed @@ -20557,7 +20557,7 @@ def add_volume( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.volume.ColorBar` instance + :class:`plotly.graph_objs.volume.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -20572,7 +20572,7 @@ def add_volume( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contour - :class:`plotly.graph_objects.volume.Contour` instance + :class:`plotly.graph_objs.volume.Contour` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -20595,7 +20595,7 @@ def add_volume( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.volume.Hoverlabel` + :class:`plotly.graph_objs.volume.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -20656,7 +20656,7 @@ def add_volume( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.volume.Legendgrouptitle` + :class:`plotly.graph_objs.volume.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -20673,10 +20673,10 @@ def add_volume( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.volume.Lighting` instance + :class:`plotly.graph_objs.volume.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.volume.Lightposition` + :class:`plotly.graph_objs.volume.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -20733,16 +20733,16 @@ def add_volume( Determines whether or not a colorbar is displayed for this trace. slices - :class:`plotly.graph_objects.volume.Slices` instance or + :class:`plotly.graph_objs.volume.Slices` instance or dict with compatible properties spaceframe - :class:`plotly.graph_objects.volume.Spaceframe` + :class:`plotly.graph_objs.volume.Spaceframe` instance or dict with compatible properties stream - :class:`plotly.graph_objects.volume.Stream` instance or + :class:`plotly.graph_objs.volume.Stream` instance or dict with compatible properties surface - :class:`plotly.graph_objects.volume.Surface` instance + :class:`plotly.graph_objs.volume.Surface` instance or dict with compatible properties text Sets the text elements associated with the vertices. If @@ -21033,7 +21033,7 @@ def add_waterfall( and tick labels, make sure to set `xaxis.layer` and `yaxis.layer` to *below traces*. connector - :class:`plotly.graph_objects.waterfall.Connector` + :class:`plotly.graph_objs.waterfall.Connector` instance or dict with compatible properties constraintext Constrain the size of text inside or outside a bar to @@ -21047,7 +21047,7 @@ def add_waterfall( Sets the source reference on Chart Studio Cloud for `customdata`. decreasing - :class:`plotly.graph_objects.waterfall.Decreasing` + :class:`plotly.graph_objs.waterfall.Decreasing` instance or dict with compatible properties dx Sets the x coordinate step. See `x0` for more info. @@ -21062,7 +21062,7 @@ def add_waterfall( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.waterfall.Hoverlabel` + :class:`plotly.graph_objs.waterfall.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -21116,7 +21116,7 @@ def add_waterfall( Sets the source reference on Chart Studio Cloud for `ids`. increasing - :class:`plotly.graph_objects.waterfall.Increasing` + :class:`plotly.graph_objs.waterfall.Increasing` instance or dict with compatible properties insidetextanchor Determines if texts are kept at center or start/end @@ -21134,7 +21134,7 @@ def add_waterfall( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.waterfall.Legendgrouptitle + :class:`plotly.graph_objs.waterfall.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -21209,7 +21209,7 @@ def add_waterfall( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.waterfall.Stream` instance + :class:`plotly.graph_objs.waterfall.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -21268,7 +21268,7 @@ def add_waterfall( Sets the source reference on Chart Studio Cloud for `texttemplate`. totals - :class:`plotly.graph_objects.waterfall.Totals` instance + :class:`plotly.graph_objs.waterfall.Totals` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -23129,7 +23129,7 @@ def add_annotation( (default) lets the text set the box height. Taller text will be clipped. hoverlabel - :class:`plotly.graph_objects.layout.annotation.Hoverlab + :class:`plotly.graph_objs.layout.annotation.Hoverlab el` instance or dict with compatible properties hovertext Sets text to appear when hovering over this annotation. @@ -23880,7 +23880,7 @@ def add_selection( instance of Selection or dict with compatible properties line - :class:`plotly.graph_objects.layout.selection.Line` + :class:`plotly.graph_objs.layout.selection.Line` instance or dict with compatible properties name When used in a template, named items are created in the @@ -24216,7 +24216,7 @@ def add_shape( https://developer.mozilla.org/en- US/docs/Web/SVG/Attribute/fill-rule label - :class:`plotly.graph_objects.layout.shape.Label` + :class:`plotly.graph_objs.layout.shape.Label` instance or dict with compatible properties layer Specifies whether shapes are drawn below gridlines @@ -24233,7 +24233,7 @@ def add_shape( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.layout.shape.Legendgroupti + :class:`plotly.graph_objs.layout.shape.Legendgroupti tle` instance or dict with compatible properties legendrank Sets the legend rank for this shape. Items and groups @@ -24250,7 +24250,7 @@ def add_shape( Sets the width (in px or fraction) of the legend for this shape. line - :class:`plotly.graph_objects.layout.shape.Line` + :class:`plotly.graph_objs.layout.shape.Line` instance or dict with compatible properties name When used in a template, named items are created in the diff --git a/plotly/graph_objs/_figurewidget.py b/plotly/graph_objs/_figurewidget.py index 9539aa5795..8b8ee5bcc4 100644 --- a/plotly/graph_objs/_figurewidget.py +++ b/plotly/graph_objs/_figurewidget.py @@ -775,10 +775,10 @@ def add_bar( dy Sets the y coordinate step. See `y0` for more info. error_x - :class:`plotly.graph_objects.bar.ErrorX` instance or + :class:`plotly.graph_objs.bar.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.bar.ErrorY` instance or + :class:`plotly.graph_objs.bar.ErrorY` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -789,7 +789,7 @@ def add_bar( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.bar.Hoverlabel` instance + :class:`plotly.graph_objs.bar.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -857,7 +857,7 @@ def add_bar( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.bar.Legendgrouptitle` + :class:`plotly.graph_objs.bar.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -874,7 +874,7 @@ def add_bar( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.bar.Marker` instance or + :class:`plotly.graph_objs.bar.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -916,7 +916,7 @@ def add_bar( outsidetextfont Sets the font used for `text` lying outside the bar. selected - :class:`plotly.graph_objects.bar.Selected` instance or + :class:`plotly.graph_objs.bar.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -929,7 +929,7 @@ def add_bar( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.bar.Stream` instance or + :class:`plotly.graph_objs.bar.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -1006,7 +1006,7 @@ def add_bar( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.bar.Unselected` instance + :class:`plotly.graph_objs.bar.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1310,7 +1310,7 @@ def add_barpolar( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.barpolar.Hoverlabel` + :class:`plotly.graph_objs.barpolar.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1367,7 +1367,7 @@ def add_barpolar( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.barpolar.Legendgrouptitle` + :class:`plotly.graph_objs.barpolar.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1384,7 +1384,7 @@ def add_barpolar( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.barpolar.Marker` instance + :class:`plotly.graph_objs.barpolar.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1423,7 +1423,7 @@ def add_barpolar( Sets the source reference on Chart Studio Cloud for `r`. selected - :class:`plotly.graph_objects.barpolar.Selected` + :class:`plotly.graph_objs.barpolar.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1436,7 +1436,7 @@ def add_barpolar( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.barpolar.Stream` instance + :class:`plotly.graph_objs.barpolar.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1486,7 +1486,7 @@ def add_barpolar( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.barpolar.Unselected` + :class:`plotly.graph_objs.barpolar.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1739,7 +1739,7 @@ def add_box( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.box.Hoverlabel` instance + :class:`plotly.graph_objs.box.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual boxes or @@ -1804,7 +1804,7 @@ def add_box( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.box.Legendgrouptitle` + :class:`plotly.graph_objs.box.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1821,7 +1821,7 @@ def add_box( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.box.Line` instance or dict + :class:`plotly.graph_objs.box.Line` instance or dict with compatible properties lowerfence Sets the lower fence values. There should be as many @@ -1834,7 +1834,7 @@ def add_box( Sets the source reference on Chart Studio Cloud for `lowerfence`. marker - :class:`plotly.graph_objects.box.Marker` instance or + :class:`plotly.graph_objs.box.Marker` instance or dict with compatible properties mean Sets the mean values. There should be as many items as @@ -1955,7 +1955,7 @@ def add_box( Sets the source reference on Chart Studio Cloud for `sd`. selected - :class:`plotly.graph_objects.box.Selected` instance or + :class:`plotly.graph_objs.box.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1978,7 +1978,7 @@ def add_box( sdmultiple (default 1) to scale the box size So it could be drawn 1-stddev, 3-stddev etc stream - :class:`plotly.graph_objects.box.Stream` instance or + :class:`plotly.graph_objs.box.Stream` instance or dict with compatible properties text Sets the text elements associated with each sample @@ -2013,7 +2013,7 @@ def add_box( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.box.Unselected` instance + :class:`plotly.graph_objs.box.Unselected` instance or dict with compatible properties upperfence Sets the upper fence values. There should be as many @@ -2338,7 +2338,7 @@ def add_candlestick( Sets the source reference on Chart Studio Cloud for `customdata`. decreasing - :class:`plotly.graph_objects.candlestick.Decreasing` + :class:`plotly.graph_objs.candlestick.Decreasing` instance or dict with compatible properties high Sets the high values. @@ -2354,7 +2354,7 @@ def add_candlestick( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.candlestick.Hoverlabel` + :class:`plotly.graph_objs.candlestick.Hoverlabel` instance or dict with compatible properties hovertext Same as `text`. @@ -2369,7 +2369,7 @@ def add_candlestick( Sets the source reference on Chart Studio Cloud for `ids`. increasing - :class:`plotly.graph_objects.candlestick.Increasing` + :class:`plotly.graph_objs.candlestick.Increasing` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -2382,7 +2382,7 @@ def add_candlestick( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.candlestick.Legendgrouptit + :class:`plotly.graph_objs.candlestick.Legendgrouptit le` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2399,7 +2399,7 @@ def add_candlestick( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.candlestick.Line` instance + :class:`plotly.graph_objs.candlestick.Line` instance or dict with compatible properties low Sets the low values. @@ -2443,7 +2443,7 @@ def add_candlestick( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.candlestick.Stream` + :class:`plotly.graph_objs.candlestick.Stream` instance or dict with compatible properties text Sets hover text elements associated with each sample @@ -2693,7 +2693,7 @@ def add_carpet( coordinates. Use with `da` where `a0` is the starting coordinate and `da` the step. aaxis - :class:`plotly.graph_objects.carpet.Aaxis` instance or + :class:`plotly.graph_objs.carpet.Aaxis` instance or dict with compatible properties asrc Sets the source reference on Chart Studio Cloud for @@ -2706,7 +2706,7 @@ def add_carpet( coordinates. Use with `db` where `b0` is the starting coordinate and `db` the step. baxis - :class:`plotly.graph_objects.carpet.Baxis` instance or + :class:`plotly.graph_objs.carpet.Baxis` instance or dict with compatible properties bsrc Sets the source reference on Chart Studio Cloud for @@ -2753,7 +2753,7 @@ def add_carpet( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.carpet.Legendgrouptitle` + :class:`plotly.graph_objs.carpet.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2791,7 +2791,7 @@ def add_carpet( opacity Sets the opacity of the trace. stream - :class:`plotly.graph_objects.carpet.Stream` instance or + :class:`plotly.graph_objs.carpet.Stream` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -2995,7 +2995,7 @@ def add_choropleth( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.choropleth.ColorBar` + :class:`plotly.graph_objs.choropleth.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -3044,7 +3044,7 @@ def add_choropleth( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.choropleth.Hoverlabel` + :class:`plotly.graph_objs.choropleth.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -3101,7 +3101,7 @@ def add_choropleth( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.choropleth.Legendgrouptitl + :class:`plotly.graph_objs.choropleth.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -3134,7 +3134,7 @@ def add_choropleth( Sets the source reference on Chart Studio Cloud for `locations`. marker - :class:`plotly.graph_objects.choropleth.Marker` + :class:`plotly.graph_objs.choropleth.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -3160,7 +3160,7 @@ def add_choropleth( will correspond to the last color in the array and `zmax` will correspond to the first color. selected - :class:`plotly.graph_objects.choropleth.Selected` + :class:`plotly.graph_objs.choropleth.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -3176,7 +3176,7 @@ def add_choropleth( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.choropleth.Stream` + :class:`plotly.graph_objs.choropleth.Stream` instance or dict with compatible properties text Sets the text elements associated with each location. @@ -3206,7 +3206,7 @@ def add_choropleth( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.choropleth.Unselected` + :class:`plotly.graph_objs.choropleth.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -3390,7 +3390,7 @@ def add_choroplethmap( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.choroplethmap.ColorBar` + :class:`plotly.graph_objs.choroplethmap.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -3431,7 +3431,7 @@ def add_choroplethmap( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.choroplethmap.Hoverlabel` + :class:`plotly.graph_objs.choroplethmap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -3489,7 +3489,7 @@ def add_choroplethmap( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.choroplethmap.Legendgroupt + :class:`plotly.graph_objs.choroplethmap.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -3512,7 +3512,7 @@ def add_choroplethmap( Sets the source reference on Chart Studio Cloud for `locations`. marker - :class:`plotly.graph_objects.choroplethmap.Marker` + :class:`plotly.graph_objs.choroplethmap.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -3538,7 +3538,7 @@ def add_choroplethmap( will correspond to the last color in the array and `zmax` will correspond to the first color. selected - :class:`plotly.graph_objects.choroplethmap.Selected` + :class:`plotly.graph_objs.choroplethmap.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -3554,7 +3554,7 @@ def add_choroplethmap( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.choroplethmap.Stream` + :class:`plotly.graph_objs.choroplethmap.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -3589,7 +3589,7 @@ def add_choroplethmap( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.choroplethmap.Unselected` + :class:`plotly.graph_objs.choroplethmap.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -3777,7 +3777,7 @@ def add_choroplethmapbox( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.choroplethmapbox.ColorBar` + :class:`plotly.graph_objs.choroplethmapbox.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -3818,7 +3818,7 @@ def add_choroplethmapbox( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.choroplethmapbox.Hoverlabe + :class:`plotly.graph_objs.choroplethmapbox.Hoverlabe l` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -3876,7 +3876,7 @@ def add_choroplethmapbox( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.choroplethmapbox.Legendgro + :class:`plotly.graph_objs.choroplethmapbox.Legendgro uptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -3899,7 +3899,7 @@ def add_choroplethmapbox( Sets the source reference on Chart Studio Cloud for `locations`. marker - :class:`plotly.graph_objects.choroplethmapbox.Marker` + :class:`plotly.graph_objs.choroplethmapbox.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -3925,7 +3925,7 @@ def add_choroplethmapbox( will correspond to the last color in the array and `zmax` will correspond to the first color. selected - :class:`plotly.graph_objects.choroplethmapbox.Selected` + :class:`plotly.graph_objs.choroplethmapbox.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -3941,7 +3941,7 @@ def add_choroplethmapbox( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.choroplethmapbox.Stream` + :class:`plotly.graph_objs.choroplethmapbox.Stream` instance or dict with compatible properties subplot mapbox subplots and traces are deprecated! Please @@ -3981,7 +3981,7 @@ def add_choroplethmapbox( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.choroplethmapbox.Unselecte + :class:`plotly.graph_objs.choroplethmapbox.Unselecte d` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -4195,7 +4195,7 @@ def add_cone( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.cone.ColorBar` instance or + :class:`plotly.graph_objs.cone.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -4226,7 +4226,7 @@ def add_cone( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.cone.Hoverlabel` instance + :class:`plotly.graph_objs.cone.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -4284,7 +4284,7 @@ def add_cone( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.cone.Legendgrouptitle` + :class:`plotly.graph_objs.cone.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -4301,10 +4301,10 @@ def add_cone( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.cone.Lighting` instance or + :class:`plotly.graph_objs.cone.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.cone.Lightposition` + :class:`plotly.graph_objs.cone.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -4369,7 +4369,7 @@ def add_cone( the same units as the u/v/w vector field, its the default value is half the sample's maximum vector norm. stream - :class:`plotly.graph_objects.cone.Stream` instance or + :class:`plotly.graph_objs.cone.Stream` instance or dict with compatible properties text Sets the text elements associated with the cones. If @@ -4692,7 +4692,7 @@ def add_contour( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.contour.ColorBar` instance + :class:`plotly.graph_objs.contour.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -4712,7 +4712,7 @@ def add_contour( to true if `z` is a one dimensional array otherwise it is defaulted to false. contours - :class:`plotly.graph_objects.contour.Contours` instance + :class:`plotly.graph_objs.contour.Contours` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -4740,7 +4740,7 @@ def add_contour( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.contour.Hoverlabel` + :class:`plotly.graph_objs.contour.Hoverlabel` instance or dict with compatible properties hoverongaps Determines whether or not gaps (i.e. {nan} or missing @@ -4801,7 +4801,7 @@ def add_contour( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.contour.Legendgrouptitle` + :class:`plotly.graph_objs.contour.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -4818,7 +4818,7 @@ def add_contour( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.contour.Line` instance or + :class:`plotly.graph_objs.contour.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -4858,7 +4858,7 @@ def add_contour( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.contour.Stream` instance + :class:`plotly.graph_objs.contour.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. @@ -5279,7 +5279,7 @@ def add_contourcarpet( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.contourcarpet.ColorBar` + :class:`plotly.graph_objs.contourcarpet.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -5294,7 +5294,7 @@ def add_contourcarpet( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contours - :class:`plotly.graph_objects.contourcarpet.Contours` + :class:`plotly.graph_objs.contourcarpet.Contours` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -5336,7 +5336,7 @@ def add_contourcarpet( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.contourcarpet.Legendgroupt + :class:`plotly.graph_objs.contourcarpet.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -5353,7 +5353,7 @@ def add_contourcarpet( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.contourcarpet.Line` + :class:`plotly.graph_objs.contourcarpet.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -5393,7 +5393,7 @@ def add_contourcarpet( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.contourcarpet.Stream` + :class:`plotly.graph_objs.contourcarpet.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. @@ -5636,7 +5636,7 @@ def add_densitymap( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.densitymap.ColorBar` + :class:`plotly.graph_objs.densitymap.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -5667,7 +5667,7 @@ def add_densitymap( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.densitymap.Hoverlabel` + :class:`plotly.graph_objs.densitymap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -5734,7 +5734,7 @@ def add_densitymap( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.densitymap.Legendgrouptitl + :class:`plotly.graph_objs.densitymap.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -5794,7 +5794,7 @@ def add_densitymap( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.densitymap.Stream` + :class:`plotly.graph_objs.densitymap.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -6020,7 +6020,7 @@ def add_densitymapbox( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.densitymapbox.ColorBar` + :class:`plotly.graph_objs.densitymapbox.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -6051,7 +6051,7 @@ def add_densitymapbox( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.densitymapbox.Hoverlabel` + :class:`plotly.graph_objs.densitymapbox.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -6118,7 +6118,7 @@ def add_densitymapbox( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.densitymapbox.Legendgroupt + :class:`plotly.graph_objs.densitymapbox.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -6178,7 +6178,7 @@ def add_densitymapbox( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.densitymapbox.Stream` + :class:`plotly.graph_objs.densitymapbox.Stream` instance or dict with compatible properties subplot mapbox subplots and traces are deprecated! Please @@ -6418,7 +6418,7 @@ def add_funnel( and tick labels, make sure to set `xaxis.layer` and `yaxis.layer` to *below traces*. connector - :class:`plotly.graph_objects.funnel.Connector` instance + :class:`plotly.graph_objs.funnel.Connector` instance or dict with compatible properties constraintext Constrain the size of text inside or outside a bar to @@ -6444,7 +6444,7 @@ def add_funnel( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.funnel.Hoverlabel` + :class:`plotly.graph_objs.funnel.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -6513,7 +6513,7 @@ def add_funnel( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.funnel.Legendgrouptitle` + :class:`plotly.graph_objs.funnel.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -6530,7 +6530,7 @@ def add_funnel( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.funnel.Marker` instance or + :class:`plotly.graph_objs.funnel.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -6583,7 +6583,7 @@ def add_funnel( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.funnel.Stream` instance or + :class:`plotly.graph_objs.funnel.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -6939,7 +6939,7 @@ def add_funnelarea( dlabel Sets the label step. See `label0` for more info. domain - :class:`plotly.graph_objects.funnelarea.Domain` + :class:`plotly.graph_objs.funnelarea.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -6950,7 +6950,7 @@ def add_funnelarea( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.funnelarea.Hoverlabel` + :class:`plotly.graph_objs.funnelarea.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -7029,7 +7029,7 @@ def add_funnelarea( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.funnelarea.Legendgrouptitl + :class:`plotly.graph_objs.funnelarea.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -7046,7 +7046,7 @@ def add_funnelarea( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.funnelarea.Marker` + :class:`plotly.graph_objs.funnelarea.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -7078,7 +7078,7 @@ def add_funnelarea( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.funnelarea.Stream` + :class:`plotly.graph_objs.funnelarea.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -7120,7 +7120,7 @@ def add_funnelarea( Sets the source reference on Chart Studio Cloud for `texttemplate`. title - :class:`plotly.graph_objects.funnelarea.Title` instance + :class:`plotly.graph_objs.funnelarea.Title` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -7339,7 +7339,7 @@ def add_heatmap( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.heatmap.ColorBar` instance + :class:`plotly.graph_objs.heatmap.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -7379,7 +7379,7 @@ def add_heatmap( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.heatmap.Hoverlabel` + :class:`plotly.graph_objs.heatmap.Hoverlabel` instance or dict with compatible properties hoverongaps Determines whether or not gaps (i.e. {nan} or missing @@ -7440,7 +7440,7 @@ def add_heatmap( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.heatmap.Legendgrouptitle` + :class:`plotly.graph_objs.heatmap.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -7488,7 +7488,7 @@ def add_heatmap( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.heatmap.Stream` instance + :class:`plotly.graph_objs.heatmap.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. @@ -7907,7 +7907,7 @@ def add_histogram( Constrain the size of text inside or outside a bar to be no larger than the bar itself. cumulative - :class:`plotly.graph_objects.histogram.Cumulative` + :class:`plotly.graph_objs.histogram.Cumulative` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -7918,10 +7918,10 @@ def add_histogram( Sets the source reference on Chart Studio Cloud for `customdata`. error_x - :class:`plotly.graph_objects.histogram.ErrorX` instance + :class:`plotly.graph_objs.histogram.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.histogram.ErrorY` instance + :class:`plotly.graph_objs.histogram.ErrorY` instance or dict with compatible properties histfunc Specifies the binning function used for this histogram @@ -7957,7 +7957,7 @@ def add_histogram( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.histogram.Hoverlabel` + :class:`plotly.graph_objs.histogram.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -8020,7 +8020,7 @@ def add_histogram( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.histogram.Legendgrouptitle + :class:`plotly.graph_objs.histogram.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -8037,7 +8037,7 @@ def add_histogram( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.histogram.Marker` instance + :class:`plotly.graph_objs.histogram.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -8083,7 +8083,7 @@ def add_histogram( outsidetextfont Sets the font used for `text` lying outside the bar. selected - :class:`plotly.graph_objects.histogram.Selected` + :class:`plotly.graph_objs.histogram.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -8096,7 +8096,7 @@ def add_histogram( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.histogram.Stream` instance + :class:`plotly.graph_objs.histogram.Stream` instance or dict with compatible properties text Sets hover text elements associated with each bar. If a @@ -8164,7 +8164,7 @@ def add_histogram( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.histogram.Unselected` + :class:`plotly.graph_objs.histogram.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -8179,7 +8179,7 @@ def add_histogram( x coordinates refer to `layout.xaxis`. If "x2", the x coordinates refer to `layout.xaxis2`, and so on. xbins - :class:`plotly.graph_objects.histogram.XBins` instance + :class:`plotly.graph_objs.histogram.XBins` instance or dict with compatible properties xcalendar Sets the calendar system to use with `x` date data. @@ -8207,7 +8207,7 @@ def add_histogram( y coordinates refer to `layout.yaxis`. If "y2", the y coordinates refer to `layout.yaxis2`, and so on. ybins - :class:`plotly.graph_objects.histogram.YBins` instance + :class:`plotly.graph_objs.histogram.YBins` instance or dict with compatible properties ycalendar Sets the calendar system to use with `y` date data. @@ -8444,7 +8444,7 @@ def add_histogram2d( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.histogram2d.ColorBar` + :class:`plotly.graph_objs.histogram2d.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -8500,7 +8500,7 @@ def add_histogram2d( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.histogram2d.Hoverlabel` + :class:`plotly.graph_objs.histogram2d.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -8553,7 +8553,7 @@ def add_histogram2d( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.histogram2d.Legendgrouptit + :class:`plotly.graph_objs.histogram2d.Legendgrouptit le` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -8570,7 +8570,7 @@ def add_histogram2d( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.histogram2d.Marker` + :class:`plotly.graph_objs.histogram2d.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -8616,7 +8616,7 @@ def add_histogram2d( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.histogram2d.Stream` + :class:`plotly.graph_objs.histogram2d.Stream` instance or dict with compatible properties textfont Sets the text font. @@ -8679,7 +8679,7 @@ def add_histogram2d( Note that the same `xbingroup` value can be used to set (1D) histogram `bingroup` xbins - :class:`plotly.graph_objects.histogram2d.XBins` + :class:`plotly.graph_objs.histogram2d.XBins` instance or dict with compatible properties xcalendar Sets the calendar system to use with `x` date data. @@ -8716,7 +8716,7 @@ def add_histogram2d( Note that the same `ybingroup` value can be used to set (1D) histogram `bingroup` ybins - :class:`plotly.graph_objects.histogram2d.YBins` + :class:`plotly.graph_objs.histogram2d.YBins` instance or dict with compatible properties ycalendar Sets the calendar system to use with `y` date data. @@ -8984,7 +8984,7 @@ def add_histogram2dcontour( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.histogram2dcontour.ColorBa + :class:`plotly.graph_objs.histogram2dcontour.ColorBa r` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -8999,7 +8999,7 @@ def add_histogram2dcontour( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contours - :class:`plotly.graph_objects.histogram2dcontour.Contour + :class:`plotly.graph_objs.histogram2dcontour.Contour s` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -9043,7 +9043,7 @@ def add_histogram2dcontour( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.histogram2dcontour.Hoverla + :class:`plotly.graph_objs.histogram2dcontour.Hoverla bel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -9096,7 +9096,7 @@ def add_histogram2dcontour( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.histogram2dcontour.Legendg + :class:`plotly.graph_objs.histogram2dcontour.Legendg rouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -9113,10 +9113,10 @@ def add_histogram2dcontour( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.histogram2dcontour.Line` + :class:`plotly.graph_objs.histogram2dcontour.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.histogram2dcontour.Marker` + :class:`plotly.graph_objs.histogram2dcontour.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -9168,7 +9168,7 @@ def add_histogram2dcontour( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.histogram2dcontour.Stream` + :class:`plotly.graph_objs.histogram2dcontour.Stream` instance or dict with compatible properties textfont For this trace it only has an effect if `coloring` is @@ -9233,7 +9233,7 @@ def add_histogram2dcontour( Note that the same `xbingroup` value can be used to set (1D) histogram `bingroup` xbins - :class:`plotly.graph_objects.histogram2dcontour.XBins` + :class:`plotly.graph_objs.histogram2dcontour.XBins` instance or dict with compatible properties xcalendar Sets the calendar system to use with `x` date data. @@ -9268,7 +9268,7 @@ def add_histogram2dcontour( Note that the same `ybingroup` value can be used to set (1D) histogram `bingroup` ybins - :class:`plotly.graph_objects.histogram2dcontour.YBins` + :class:`plotly.graph_objs.histogram2dcontour.YBins` instance or dict with compatible properties ycalendar Sets the calendar system to use with `y` date data. @@ -9497,7 +9497,7 @@ def add_icicle( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.icicle.Domain` instance or + :class:`plotly.graph_objs.icicle.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -9508,7 +9508,7 @@ def add_icicle( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.icicle.Hoverlabel` + :class:`plotly.graph_objs.icicle.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -9570,7 +9570,7 @@ def add_icicle( Sets the source reference on Chart Studio Cloud for `labels`. leaf - :class:`plotly.graph_objects.icicle.Leaf` instance or + :class:`plotly.graph_objs.icicle.Leaf` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -9579,7 +9579,7 @@ def add_icicle( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.icicle.Legendgrouptitle` + :class:`plotly.graph_objs.icicle.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -9602,7 +9602,7 @@ def add_icicle( filled in, otherwise plotly attempts to find a matching item in `labels`. marker - :class:`plotly.graph_objects.icicle.Marker` instance or + :class:`plotly.graph_objs.icicle.Marker` instance or dict with compatible properties maxdepth Sets the number of rendered sectors from any given @@ -9647,16 +9647,16 @@ def add_icicle( Sets the source reference on Chart Studio Cloud for `parents`. pathbar - :class:`plotly.graph_objects.icicle.Pathbar` instance + :class:`plotly.graph_objs.icicle.Pathbar` instance or dict with compatible properties root - :class:`plotly.graph_objects.icicle.Root` instance or + :class:`plotly.graph_objs.icicle.Root` instance or dict with compatible properties sort Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.icicle.Stream` instance or + :class:`plotly.graph_objs.icicle.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -9696,7 +9696,7 @@ def add_icicle( Sets the source reference on Chart Studio Cloud for `texttemplate`. tiling - :class:`plotly.graph_objects.icicle.Tiling` instance or + :class:`plotly.graph_objs.icicle.Tiling` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -9887,7 +9887,7 @@ def add_image( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.image.Hoverlabel` instance + :class:`plotly.graph_objs.image.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -9942,7 +9942,7 @@ def add_image( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.image.Legendgrouptitle` + :class:`plotly.graph_objs.image.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -9984,7 +9984,7 @@ def add_image( The URI consists of "data:image/[][;base64]," stream - :class:`plotly.graph_objects.image.Stream` instance or + :class:`plotly.graph_objs.image.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. @@ -10199,10 +10199,10 @@ def add_indicator( Sets the source reference on Chart Studio Cloud for `customdata`. delta - :class:`plotly.graph_objects.indicator.Delta` instance + :class:`plotly.graph_objs.indicator.Delta` instance or dict with compatible properties domain - :class:`plotly.graph_objects.indicator.Domain` instance + :class:`plotly.graph_objs.indicator.Domain` instance or dict with compatible properties gauge The gauge of the Indicator plot. @@ -10220,7 +10220,7 @@ def add_indicator( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.indicator.Legendgrouptitle + :class:`plotly.graph_objs.indicator.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -10262,13 +10262,13 @@ def add_indicator( Sets the trace name. The trace name appears as the legend item and on hover. number - :class:`plotly.graph_objects.indicator.Number` instance + :class:`plotly.graph_objs.indicator.Number` instance or dict with compatible properties stream - :class:`plotly.graph_objects.indicator.Stream` instance + :class:`plotly.graph_objs.indicator.Stream` instance or dict with compatible properties title - :class:`plotly.graph_objects.indicator.Title` instance + :class:`plotly.graph_objs.indicator.Title` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -10430,7 +10430,7 @@ def add_isosurface( chosen according to whether numbers in the `color` array are all positive, all negative or mixed. caps - :class:`plotly.graph_objects.isosurface.Caps` instance + :class:`plotly.graph_objs.isosurface.Caps` instance or dict with compatible properties cauto Determines whether or not the color domain is computed @@ -10458,7 +10458,7 @@ def add_isosurface( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.isosurface.ColorBar` + :class:`plotly.graph_objs.isosurface.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -10473,7 +10473,7 @@ def add_isosurface( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contour - :class:`plotly.graph_objects.isosurface.Contour` + :class:`plotly.graph_objs.isosurface.Contour` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -10496,7 +10496,7 @@ def add_isosurface( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.isosurface.Hoverlabel` + :class:`plotly.graph_objs.isosurface.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -10557,7 +10557,7 @@ def add_isosurface( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.isosurface.Legendgrouptitl + :class:`plotly.graph_objs.isosurface.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -10574,10 +10574,10 @@ def add_isosurface( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.isosurface.Lighting` + :class:`plotly.graph_objs.isosurface.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.isosurface.Lightposition` + :class:`plotly.graph_objs.isosurface.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -10623,16 +10623,16 @@ def add_isosurface( Determines whether or not a colorbar is displayed for this trace. slices - :class:`plotly.graph_objects.isosurface.Slices` + :class:`plotly.graph_objs.isosurface.Slices` instance or dict with compatible properties spaceframe - :class:`plotly.graph_objects.isosurface.Spaceframe` + :class:`plotly.graph_objs.isosurface.Spaceframe` instance or dict with compatible properties stream - :class:`plotly.graph_objects.isosurface.Stream` + :class:`plotly.graph_objs.isosurface.Stream` instance or dict with compatible properties surface - :class:`plotly.graph_objects.isosurface.Surface` + :class:`plotly.graph_objs.isosurface.Surface` instance or dict with compatible properties text Sets the text elements associated with the vertices. If @@ -10956,7 +10956,7 @@ def add_mesh3d( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.mesh3d.ColorBar` instance + :class:`plotly.graph_objs.mesh3d.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -10971,7 +10971,7 @@ def add_mesh3d( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contour - :class:`plotly.graph_objects.mesh3d.Contour` instance + :class:`plotly.graph_objs.mesh3d.Contour` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -11006,7 +11006,7 @@ def add_mesh3d( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.mesh3d.Hoverlabel` + :class:`plotly.graph_objs.mesh3d.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -11108,7 +11108,7 @@ def add_mesh3d( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.mesh3d.Legendgrouptitle` + :class:`plotly.graph_objs.mesh3d.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -11125,10 +11125,10 @@ def add_mesh3d( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.mesh3d.Lighting` instance + :class:`plotly.graph_objs.mesh3d.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.mesh3d.Lightposition` + :class:`plotly.graph_objs.mesh3d.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -11174,7 +11174,7 @@ def add_mesh3d( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.mesh3d.Stream` instance or + :class:`plotly.graph_objs.mesh3d.Stream` instance or dict with compatible properties text Sets the text elements associated with the vertices. If @@ -11462,7 +11462,7 @@ def add_ohlc( Sets the source reference on Chart Studio Cloud for `customdata`. decreasing - :class:`plotly.graph_objects.ohlc.Decreasing` instance + :class:`plotly.graph_objs.ohlc.Decreasing` instance or dict with compatible properties high Sets the high values. @@ -11478,7 +11478,7 @@ def add_ohlc( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.ohlc.Hoverlabel` instance + :class:`plotly.graph_objs.ohlc.Hoverlabel` instance or dict with compatible properties hovertext Same as `text`. @@ -11493,7 +11493,7 @@ def add_ohlc( Sets the source reference on Chart Studio Cloud for `ids`. increasing - :class:`plotly.graph_objects.ohlc.Increasing` instance + :class:`plotly.graph_objs.ohlc.Increasing` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -11506,7 +11506,7 @@ def add_ohlc( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.ohlc.Legendgrouptitle` + :class:`plotly.graph_objs.ohlc.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -11523,7 +11523,7 @@ def add_ohlc( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.ohlc.Line` instance or + :class:`plotly.graph_objs.ohlc.Line` instance or dict with compatible properties low Sets the low values. @@ -11567,7 +11567,7 @@ def add_ohlc( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.ohlc.Stream` instance or + :class:`plotly.graph_objs.ohlc.Stream` instance or dict with compatible properties text Sets hover text elements associated with each sample @@ -11816,7 +11816,7 @@ def add_parcats( the default property values to use for elements of parcats.dimensions domain - :class:`plotly.graph_objects.parcats.Domain` instance + :class:`plotly.graph_objs.parcats.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -11868,13 +11868,13 @@ def add_parcats( labelfont Sets the font for the `dimension` labels. legendgrouptitle - :class:`plotly.graph_objects.parcats.Legendgrouptitle` + :class:`plotly.graph_objs.parcats.Legendgrouptitle` instance or dict with compatible properties legendwidth Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.parcats.Line` instance or + :class:`plotly.graph_objs.parcats.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -11901,7 +11901,7 @@ def add_parcats( If `backward`, sort paths based on dimensions categories from right to left. stream - :class:`plotly.graph_objects.parcats.Stream` instance + :class:`plotly.graph_objs.parcats.Stream` instance or dict with compatible properties tickfont Sets the font for the `category` labels. @@ -12034,7 +12034,7 @@ def add_parcoords( the default property values to use for elements of parcoords.dimensions domain - :class:`plotly.graph_objects.parcoords.Domain` instance + :class:`plotly.graph_objs.parcoords.Domain` instance or dict with compatible properties ids Assigns id labels to each datum. These ids for object @@ -12064,7 +12064,7 @@ def add_parcoords( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.parcoords.Legendgrouptitle + :class:`plotly.graph_objs.parcoords.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -12081,7 +12081,7 @@ def add_parcoords( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.parcoords.Line` instance + :class:`plotly.graph_objs.parcoords.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -12105,7 +12105,7 @@ def add_parcoords( rangefont Sets the font for the `dimension` range values. stream - :class:`plotly.graph_objects.parcoords.Stream` instance + :class:`plotly.graph_objs.parcoords.Stream` instance or dict with compatible properties tickfont Sets the font for the `dimension` tick values. @@ -12132,7 +12132,7 @@ def add_parcoords( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.parcoords.Unselected` + :class:`plotly.graph_objs.parcoords.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -12271,7 +12271,7 @@ def add_pie( dlabel Sets the label step. See `label0` for more info. domain - :class:`plotly.graph_objects.pie.Domain` instance or + :class:`plotly.graph_objs.pie.Domain` instance or dict with compatible properties hole Sets the fraction of the radius to cut out of the pie. @@ -12285,7 +12285,7 @@ def add_pie( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.pie.Hoverlabel` instance + :class:`plotly.graph_objs.pie.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -12374,7 +12374,7 @@ def add_pie( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.pie.Legendgrouptitle` + :class:`plotly.graph_objs.pie.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -12391,7 +12391,7 @@ def add_pie( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.pie.Marker` instance or + :class:`plotly.graph_objs.pie.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -12440,7 +12440,7 @@ def add_pie( Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.pie.Stream` instance or + :class:`plotly.graph_objs.pie.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -12482,7 +12482,7 @@ def add_pie( Sets the source reference on Chart Studio Cloud for `texttemplate`. title - :class:`plotly.graph_objects.pie.Title` instance or + :class:`plotly.graph_objs.pie.Title` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -12651,7 +12651,7 @@ def add_sankey( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.sankey.Domain` instance or + :class:`plotly.graph_objs.sankey.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -12661,7 +12661,7 @@ def add_sankey( superseded by `node.hoverinfo` and `node.hoverinfo` for nodes and links respectively. hoverlabel - :class:`plotly.graph_objects.sankey.Hoverlabel` + :class:`plotly.graph_objs.sankey.Hoverlabel` instance or dict with compatible properties ids Assigns id labels to each datum. These ids for object @@ -12677,7 +12677,7 @@ def add_sankey( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.sankey.Legendgrouptitle` + :class:`plotly.graph_objs.sankey.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -12726,7 +12726,7 @@ def add_sankey( any other non-array values means no selection all where the `selected` and `unselected` styles have no effect. stream - :class:`plotly.graph_objects.sankey.Stream` instance or + :class:`plotly.graph_objs.sankey.Stream` instance or dict with compatible properties textfont Sets the font for node labels @@ -12934,10 +12934,10 @@ def add_scatter( dy Sets the y coordinate step. See `y0` for more info. error_x - :class:`plotly.graph_objects.scatter.ErrorX` instance + :class:`plotly.graph_objs.scatter.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.scatter.ErrorY` instance + :class:`plotly.graph_objs.scatter.ErrorY` instance or dict with compatible properties fill Sets the area to fill with a solid color. Defaults to @@ -12993,7 +12993,7 @@ def add_scatter( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatter.Hoverlabel` + :class:`plotly.graph_objs.scatter.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -13061,7 +13061,7 @@ def add_scatter( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatter.Legendgrouptitle` + :class:`plotly.graph_objs.scatter.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -13078,10 +13078,10 @@ def add_scatter( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatter.Line` instance or + :class:`plotly.graph_objs.scatter.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatter.Marker` instance + :class:`plotly.graph_objs.scatter.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -13125,7 +13125,7 @@ def add_scatter( subsequent traces are added. Also affects the default value of `fill`. selected - :class:`plotly.graph_objects.scatter.Selected` instance + :class:`plotly.graph_objs.scatter.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -13162,7 +13162,7 @@ def add_scatter( fill-linked traces are not already consecutive, the later ones will be pushed down in the drawing order. stream - :class:`plotly.graph_objects.scatter.Stream` instance + :class:`plotly.graph_objs.scatter.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -13225,7 +13225,7 @@ def add_scatter( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatter.Unselected` + :class:`plotly.graph_objs.scatter.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -13518,13 +13518,13 @@ def add_scatter3d( Sets the source reference on Chart Studio Cloud for `customdata`. error_x - :class:`plotly.graph_objects.scatter3d.ErrorX` instance + :class:`plotly.graph_objs.scatter3d.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.scatter3d.ErrorY` instance + :class:`plotly.graph_objs.scatter3d.ErrorY` instance or dict with compatible properties error_z - :class:`plotly.graph_objects.scatter3d.ErrorZ` instance + :class:`plotly.graph_objs.scatter3d.ErrorZ` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -13535,7 +13535,7 @@ def add_scatter3d( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatter3d.Hoverlabel` + :class:`plotly.graph_objs.scatter3d.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -13597,7 +13597,7 @@ def add_scatter3d( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatter3d.Legendgrouptitle + :class:`plotly.graph_objs.scatter3d.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -13614,10 +13614,10 @@ def add_scatter3d( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatter3d.Line` instance + :class:`plotly.graph_objs.scatter3d.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatter3d.Marker` instance + :class:`plotly.graph_objs.scatter3d.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -13648,7 +13648,7 @@ def add_scatter3d( opacity Sets the opacity of the trace. projection - :class:`plotly.graph_objects.scatter3d.Projection` + :class:`plotly.graph_objs.scatter3d.Projection` instance or dict with compatible properties scene Sets a reference between this trace's 3D coordinate @@ -13660,7 +13660,7 @@ def add_scatter3d( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatter3d.Stream` instance + :class:`plotly.graph_objs.scatter3d.Stream` instance or dict with compatible properties surfaceaxis If "-1", the scatter points are not fill with a surface @@ -13984,7 +13984,7 @@ def add_scattercarpet( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattercarpet.Hoverlabel` + :class:`plotly.graph_objs.scattercarpet.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -14028,7 +14028,7 @@ def add_scattercarpet( Sets hover text elements associated with each (a,b) point. If a single string, the same string appears over all the data points. If an array of strings, the items - are mapped in order to the the data points in (a,b). To + are mapped in order of the data points in (a,b). To be seen, trace `hoverinfo` must contain a "text" flag. hovertextsrc Sets the source reference on Chart Studio Cloud for @@ -14051,7 +14051,7 @@ def add_scattercarpet( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattercarpet.Legendgroupt + :class:`plotly.graph_objs.scattercarpet.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -14068,10 +14068,10 @@ def add_scattercarpet( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattercarpet.Line` + :class:`plotly.graph_objs.scattercarpet.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scattercarpet.Marker` + :class:`plotly.graph_objs.scattercarpet.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -14102,7 +14102,7 @@ def add_scattercarpet( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattercarpet.Selected` + :class:`plotly.graph_objs.scattercarpet.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -14115,13 +14115,13 @@ def add_scattercarpet( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattercarpet.Stream` + :class:`plotly.graph_objs.scattercarpet.Stream` instance or dict with compatible properties text Sets text elements associated with each (a,b) point. If a single string, the same string appears over all the data points. If an array of strings, the items are - mapped in order to the the data points in (a,b). If + mapped in order of the data points in (a,b). If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels. @@ -14179,7 +14179,7 @@ def add_scattercarpet( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattercarpet.Unselected` + :class:`plotly.graph_objs.scattercarpet.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -14398,7 +14398,7 @@ def add_scattergeo( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattergeo.Hoverlabel` + :class:`plotly.graph_objs.scattergeo.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -14465,7 +14465,7 @@ def add_scattergeo( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattergeo.Legendgrouptitl + :class:`plotly.graph_objs.scattergeo.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -14482,7 +14482,7 @@ def add_scattergeo( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattergeo.Line` instance + :class:`plotly.graph_objs.scattergeo.Line` instance or dict with compatible properties locationmode The library used by the *country names* `locationmode` @@ -14507,7 +14507,7 @@ def add_scattergeo( Sets the source reference on Chart Studio Cloud for `lon`. marker - :class:`plotly.graph_objects.scattergeo.Marker` + :class:`plotly.graph_objs.scattergeo.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -14538,7 +14538,7 @@ def add_scattergeo( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattergeo.Selected` + :class:`plotly.graph_objs.scattergeo.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -14551,7 +14551,7 @@ def add_scattergeo( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattergeo.Stream` + :class:`plotly.graph_objs.scattergeo.Stream` instance or dict with compatible properties text Sets text elements associated with each (lon,lat) pair @@ -14616,7 +14616,7 @@ def add_scattergeo( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattergeo.Unselected` + :class:`plotly.graph_objs.scattergeo.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -14792,10 +14792,10 @@ def add_scattergl( dy Sets the y coordinate step. See `y0` for more info. error_x - :class:`plotly.graph_objects.scattergl.ErrorX` instance + :class:`plotly.graph_objs.scattergl.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.scattergl.ErrorY` instance + :class:`plotly.graph_objs.scattergl.ErrorY` instance or dict with compatible properties fill Sets the area to fill with a solid color. Defaults to @@ -14833,7 +14833,7 @@ def add_scattergl( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattergl.Hoverlabel` + :class:`plotly.graph_objs.scattergl.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -14895,7 +14895,7 @@ def add_scattergl( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattergl.Legendgrouptitle + :class:`plotly.graph_objs.scattergl.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -14912,10 +14912,10 @@ def add_scattergl( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattergl.Line` instance + :class:`plotly.graph_objs.scattergl.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scattergl.Marker` instance + :class:`plotly.graph_objs.scattergl.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -14941,7 +14941,7 @@ def add_scattergl( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattergl.Selected` + :class:`plotly.graph_objs.scattergl.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -14954,7 +14954,7 @@ def add_scattergl( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattergl.Stream` instance + :class:`plotly.graph_objs.scattergl.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -15017,7 +15017,7 @@ def add_scattergl( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattergl.Unselected` + :class:`plotly.graph_objs.scattergl.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -15278,7 +15278,7 @@ def add_scattermap( base layers. To place the scattermap layers above every other layer, set `below` to "''". cluster - :class:`plotly.graph_objects.scattermap.Cluster` + :class:`plotly.graph_objs.scattermap.Cluster` instance or dict with compatible properties connectgaps Determines whether or not gaps (i.e. {nan} or missing @@ -15309,7 +15309,7 @@ def add_scattermap( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattermap.Hoverlabel` + :class:`plotly.graph_objs.scattermap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -15376,7 +15376,7 @@ def add_scattermap( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattermap.Legendgrouptitl + :class:`plotly.graph_objs.scattermap.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -15393,7 +15393,7 @@ def add_scattermap( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattermap.Line` instance + :class:`plotly.graph_objs.scattermap.Line` instance or dict with compatible properties lon Sets the longitude coordinates (in degrees East). @@ -15401,7 +15401,7 @@ def add_scattermap( Sets the source reference on Chart Studio Cloud for `lon`. marker - :class:`plotly.graph_objects.scattermap.Marker` + :class:`plotly.graph_objs.scattermap.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -15430,7 +15430,7 @@ def add_scattermap( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattermap.Selected` + :class:`plotly.graph_objs.scattermap.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -15443,7 +15443,7 @@ def add_scattermap( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattermap.Stream` + :class:`plotly.graph_objs.scattermap.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -15511,7 +15511,7 @@ def add_scattermap( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattermap.Unselected` + :class:`plotly.graph_objs.scattermap.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -15660,7 +15660,7 @@ def add_scattermapbox( the base layers. To place the scattermapbox layers above every other layer, set `below` to "''". cluster - :class:`plotly.graph_objects.scattermapbox.Cluster` + :class:`plotly.graph_objs.scattermapbox.Cluster` instance or dict with compatible properties connectgaps Determines whether or not gaps (i.e. {nan} or missing @@ -15691,7 +15691,7 @@ def add_scattermapbox( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattermapbox.Hoverlabel` + :class:`plotly.graph_objs.scattermapbox.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -15758,7 +15758,7 @@ def add_scattermapbox( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattermapbox.Legendgroupt + :class:`plotly.graph_objs.scattermapbox.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -15775,7 +15775,7 @@ def add_scattermapbox( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattermapbox.Line` + :class:`plotly.graph_objs.scattermapbox.Line` instance or dict with compatible properties lon Sets the longitude coordinates (in degrees East). @@ -15783,7 +15783,7 @@ def add_scattermapbox( Sets the source reference on Chart Studio Cloud for `lon`. marker - :class:`plotly.graph_objects.scattermapbox.Marker` + :class:`plotly.graph_objs.scattermapbox.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -15812,7 +15812,7 @@ def add_scattermapbox( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattermapbox.Selected` + :class:`plotly.graph_objs.scattermapbox.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -15825,7 +15825,7 @@ def add_scattermapbox( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattermapbox.Stream` + :class:`plotly.graph_objs.scattermapbox.Stream` instance or dict with compatible properties subplot mapbox subplots and traces are deprecated! Please @@ -15898,7 +15898,7 @@ def add_scattermapbox( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattermapbox.Unselected` + :class:`plotly.graph_objs.scattermapbox.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -16093,7 +16093,7 @@ def add_scatterpolar( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatterpolar.Hoverlabel` + :class:`plotly.graph_objs.scatterpolar.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -16161,7 +16161,7 @@ def add_scatterpolar( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatterpolar.Legendgroupti + :class:`plotly.graph_objs.scatterpolar.Legendgroupti tle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -16178,10 +16178,10 @@ def add_scatterpolar( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatterpolar.Line` + :class:`plotly.graph_objs.scatterpolar.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatterpolar.Marker` + :class:`plotly.graph_objs.scatterpolar.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -16221,7 +16221,7 @@ def add_scatterpolar( Sets the source reference on Chart Studio Cloud for `r`. selected - :class:`plotly.graph_objects.scatterpolar.Selected` + :class:`plotly.graph_objs.scatterpolar.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -16234,7 +16234,7 @@ def add_scatterpolar( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatterpolar.Stream` + :class:`plotly.graph_objs.scatterpolar.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -16315,7 +16315,7 @@ def add_scatterpolar( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatterpolar.Unselected` + :class:`plotly.graph_objs.scatterpolar.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -16519,7 +16519,7 @@ def add_scatterpolargl( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatterpolargl.Hoverlabel` + :class:`plotly.graph_objs.scatterpolargl.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -16581,7 +16581,7 @@ def add_scatterpolargl( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatterpolargl.Legendgroup + :class:`plotly.graph_objs.scatterpolargl.Legendgroup title` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -16598,10 +16598,10 @@ def add_scatterpolargl( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatterpolargl.Line` + :class:`plotly.graph_objs.scatterpolargl.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatterpolargl.Marker` + :class:`plotly.graph_objs.scatterpolargl.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -16641,7 +16641,7 @@ def add_scatterpolargl( Sets the source reference on Chart Studio Cloud for `r`. selected - :class:`plotly.graph_objects.scatterpolargl.Selected` + :class:`plotly.graph_objs.scatterpolargl.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -16654,7 +16654,7 @@ def add_scatterpolargl( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatterpolargl.Stream` + :class:`plotly.graph_objs.scatterpolargl.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -16735,7 +16735,7 @@ def add_scatterpolargl( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatterpolargl.Unselected` + :class:`plotly.graph_objs.scatterpolargl.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -16923,7 +16923,7 @@ def add_scattersmith( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattersmith.Hoverlabel` + :class:`plotly.graph_objs.scattersmith.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -16998,7 +16998,7 @@ def add_scattersmith( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattersmith.Legendgroupti + :class:`plotly.graph_objs.scattersmith.Legendgroupti tle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -17015,10 +17015,10 @@ def add_scattersmith( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattersmith.Line` + :class:`plotly.graph_objs.scattersmith.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scattersmith.Marker` + :class:`plotly.graph_objs.scattersmith.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -17056,7 +17056,7 @@ def add_scattersmith( Sets the source reference on Chart Studio Cloud for `real`. selected - :class:`plotly.graph_objects.scattersmith.Selected` + :class:`plotly.graph_objs.scattersmith.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -17069,7 +17069,7 @@ def add_scattersmith( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattersmith.Stream` + :class:`plotly.graph_objs.scattersmith.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -17138,7 +17138,7 @@ def add_scattersmith( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattersmith.Unselected` + :class:`plotly.graph_objs.scattersmith.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -17349,7 +17349,7 @@ def add_scatterternary( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatterternary.Hoverlabel` + :class:`plotly.graph_objs.scatterternary.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -17393,7 +17393,7 @@ def add_scatterternary( Sets hover text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items - are mapped in order to the the data points in (a,b,c). + are mapped in order of the data points in (a,b,c). To be seen, trace `hoverinfo` must contain a "text" flag. hovertextsrc @@ -17417,7 +17417,7 @@ def add_scatterternary( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatterternary.Legendgroup + :class:`plotly.graph_objs.scatterternary.Legendgroup title` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -17434,10 +17434,10 @@ def add_scatterternary( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatterternary.Line` + :class:`plotly.graph_objs.scatterternary.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatterternary.Marker` + :class:`plotly.graph_objs.scatterternary.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -17468,7 +17468,7 @@ def add_scatterternary( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scatterternary.Selected` + :class:`plotly.graph_objs.scatterternary.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -17481,7 +17481,7 @@ def add_scatterternary( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatterternary.Stream` + :class:`plotly.graph_objs.scatterternary.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -17499,7 +17499,7 @@ def add_scatterternary( Sets text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items are - mapped in order to the the data points in (a,b,c). If + mapped in order of the data points in (a,b,c). If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels. @@ -17557,7 +17557,7 @@ def add_scatterternary( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatterternary.Unselected` + :class:`plotly.graph_objs.scatterternary.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -17705,11 +17705,11 @@ def add_splom( Sets the source reference on Chart Studio Cloud for `customdata`. diagonal - :class:`plotly.graph_objects.splom.Diagonal` instance + :class:`plotly.graph_objs.splom.Diagonal` instance or dict with compatible properties dimensions A tuple of - :class:`plotly.graph_objects.splom.Dimension` instances + :class:`plotly.graph_objs.splom.Dimension` instances or dicts with compatible properties dimensiondefaults When used in a template (as @@ -17725,7 +17725,7 @@ def add_splom( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.splom.Hoverlabel` instance + :class:`plotly.graph_objs.splom.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -17782,7 +17782,7 @@ def add_splom( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.splom.Legendgrouptitle` + :class:`plotly.graph_objs.splom.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -17799,7 +17799,7 @@ def add_splom( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.splom.Marker` instance or + :class:`plotly.graph_objs.splom.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -17823,7 +17823,7 @@ def add_splom( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.splom.Selected` instance + :class:`plotly.graph_objs.splom.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -17842,7 +17842,7 @@ def add_splom( Determines whether or not subplots on the upper half from the diagonal are displayed. stream - :class:`plotly.graph_objects.splom.Stream` instance or + :class:`plotly.graph_objs.splom.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair to @@ -17876,7 +17876,7 @@ def add_splom( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.splom.Unselected` instance + :class:`plotly.graph_objs.splom.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -18100,7 +18100,7 @@ def add_streamtube( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.streamtube.ColorBar` + :class:`plotly.graph_objs.streamtube.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -18131,7 +18131,7 @@ def add_streamtube( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.streamtube.Hoverlabel` + :class:`plotly.graph_objs.streamtube.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -18188,7 +18188,7 @@ def add_streamtube( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.streamtube.Legendgrouptitl + :class:`plotly.graph_objs.streamtube.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -18205,10 +18205,10 @@ def add_streamtube( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.streamtube.Lighting` + :class:`plotly.graph_objs.streamtube.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.streamtube.Lightposition` + :class:`plotly.graph_objs.streamtube.Lightposition` instance or dict with compatible properties maxdisplayed The maximum number of displayed segments in a @@ -18261,10 +18261,10 @@ def add_streamtube( 1, which avoids two max divergence tubes from touching at adjacent starting positions. starts - :class:`plotly.graph_objects.streamtube.Starts` + :class:`plotly.graph_objs.streamtube.Starts` instance or dict with compatible properties stream - :class:`plotly.graph_objects.streamtube.Stream` + :class:`plotly.graph_objs.streamtube.Stream` instance or dict with compatible properties text Sets a text element associated with this trace. If @@ -18549,7 +18549,7 @@ def add_sunburst( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.sunburst.Domain` instance + :class:`plotly.graph_objs.sunburst.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -18560,7 +18560,7 @@ def add_sunburst( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.sunburst.Hoverlabel` + :class:`plotly.graph_objs.sunburst.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -18632,7 +18632,7 @@ def add_sunburst( Sets the source reference on Chart Studio Cloud for `labels`. leaf - :class:`plotly.graph_objects.sunburst.Leaf` instance or + :class:`plotly.graph_objs.sunburst.Leaf` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -18641,7 +18641,7 @@ def add_sunburst( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.sunburst.Legendgrouptitle` + :class:`plotly.graph_objs.sunburst.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -18664,7 +18664,7 @@ def add_sunburst( filled in, otherwise plotly attempts to find a matching item in `labels`. marker - :class:`plotly.graph_objects.sunburst.Marker` instance + :class:`plotly.graph_objs.sunburst.Marker` instance or dict with compatible properties maxdepth Sets the number of rendered sectors from any given @@ -18709,7 +18709,7 @@ def add_sunburst( Sets the source reference on Chart Studio Cloud for `parents`. root - :class:`plotly.graph_objects.sunburst.Root` instance or + :class:`plotly.graph_objs.sunburst.Root` instance or dict with compatible properties rotation Rotates the whole diagram counterclockwise by some @@ -18718,7 +18718,7 @@ def add_sunburst( Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.sunburst.Stream` instance + :class:`plotly.graph_objs.sunburst.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -18971,7 +18971,7 @@ def add_surface( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.surface.ColorBar` instance + :class:`plotly.graph_objs.surface.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -18989,7 +18989,7 @@ def add_surface( Determines whether or not gaps (i.e. {nan} or missing values) in the `z` data are filled in. contours - :class:`plotly.graph_objects.surface.Contours` instance + :class:`plotly.graph_objs.surface.Contours` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -19013,7 +19013,7 @@ def add_surface( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.surface.Hoverlabel` + :class:`plotly.graph_objs.surface.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -19070,7 +19070,7 @@ def add_surface( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.surface.Legendgrouptitle` + :class:`plotly.graph_objs.surface.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -19087,10 +19087,10 @@ def add_surface( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.surface.Lighting` instance + :class:`plotly.graph_objs.surface.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.surface.Lightposition` + :class:`plotly.graph_objs.surface.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -19147,7 +19147,7 @@ def add_surface( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.surface.Stream` instance + :class:`plotly.graph_objs.surface.Stream` instance or dict with compatible properties surfacecolor Sets the surface color values, used for setting a color @@ -19373,7 +19373,7 @@ def add_table( Parameters ---------- cells - :class:`plotly.graph_objects.table.Cells` instance or + :class:`plotly.graph_objs.table.Cells` instance or dict with compatible properties columnorder Specifies the rendered order of the data columns; for @@ -19399,10 +19399,10 @@ def add_table( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.table.Domain` instance or + :class:`plotly.graph_objs.table.Domain` instance or dict with compatible properties header - :class:`plotly.graph_objects.table.Header` instance or + :class:`plotly.graph_objs.table.Header` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -19413,7 +19413,7 @@ def add_table( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.table.Hoverlabel` instance + :class:`plotly.graph_objs.table.Hoverlabel` instance or dict with compatible properties ids Assigns id labels to each datum. These ids for object @@ -19429,7 +19429,7 @@ def add_table( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.table.Legendgrouptitle` + :class:`plotly.graph_objs.table.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -19465,7 +19465,7 @@ def add_table( Sets the trace name. The trace name appears as the legend item and on hover. stream - :class:`plotly.graph_objects.table.Stream` instance or + :class:`plotly.graph_objs.table.Stream` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -19625,7 +19625,7 @@ def add_treemap( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.treemap.Domain` instance + :class:`plotly.graph_objs.treemap.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -19636,7 +19636,7 @@ def add_treemap( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.treemap.Hoverlabel` + :class:`plotly.graph_objs.treemap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -19704,7 +19704,7 @@ def add_treemap( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.treemap.Legendgrouptitle` + :class:`plotly.graph_objs.treemap.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -19727,7 +19727,7 @@ def add_treemap( filled in, otherwise plotly attempts to find a matching item in `labels`. marker - :class:`plotly.graph_objects.treemap.Marker` instance + :class:`plotly.graph_objs.treemap.Marker` instance or dict with compatible properties maxdepth Sets the number of rendered sectors from any given @@ -19772,16 +19772,16 @@ def add_treemap( Sets the source reference on Chart Studio Cloud for `parents`. pathbar - :class:`plotly.graph_objects.treemap.Pathbar` instance + :class:`plotly.graph_objs.treemap.Pathbar` instance or dict with compatible properties root - :class:`plotly.graph_objects.treemap.Root` instance or + :class:`plotly.graph_objs.treemap.Root` instance or dict with compatible properties sort Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.treemap.Stream` instance + :class:`plotly.graph_objs.treemap.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -19821,7 +19821,7 @@ def add_treemap( Sets the source reference on Chart Studio Cloud for `texttemplate`. tiling - :class:`plotly.graph_objects.treemap.Tiling` instance + :class:`plotly.graph_objs.treemap.Tiling` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -20017,7 +20017,7 @@ def add_violin( estimate. By default, the bandwidth is determined by Silverman's rule of thumb. box - :class:`plotly.graph_objects.violin.Box` instance or + :class:`plotly.graph_objs.violin.Box` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -20040,7 +20040,7 @@ def add_violin( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.violin.Hoverlabel` + :class:`plotly.graph_objs.violin.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual violins or @@ -20106,7 +20106,7 @@ def add_violin( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.violin.Legendgrouptitle` + :class:`plotly.graph_objs.violin.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -20123,13 +20123,13 @@ def add_violin( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.violin.Line` instance or + :class:`plotly.graph_objs.violin.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.violin.Marker` instance or + :class:`plotly.graph_objs.violin.Marker` instance or dict with compatible properties meanline - :class:`plotly.graph_objects.violin.Meanline` instance + :class:`plotly.graph_objs.violin.Meanline` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -20211,7 +20211,7 @@ def add_violin( (max) width "count" means the violins are scaled by the number of sample points making up each violin. selected - :class:`plotly.graph_objects.violin.Selected` instance + :class:`plotly.graph_objs.violin.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -20243,7 +20243,7 @@ def add_violin( settings, use mode "manual" and fill in the `span` attribute. stream - :class:`plotly.graph_objects.violin.Stream` instance or + :class:`plotly.graph_objs.violin.Stream` instance or dict with compatible properties text Sets the text elements associated with each sample @@ -20278,7 +20278,7 @@ def add_violin( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.violin.Unselected` + :class:`plotly.graph_objs.violin.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -20531,7 +20531,7 @@ def add_volume( chosen according to whether numbers in the `color` array are all positive, all negative or mixed. caps - :class:`plotly.graph_objects.volume.Caps` instance or + :class:`plotly.graph_objs.volume.Caps` instance or dict with compatible properties cauto Determines whether or not the color domain is computed @@ -20559,7 +20559,7 @@ def add_volume( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.volume.ColorBar` instance + :class:`plotly.graph_objs.volume.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -20574,7 +20574,7 @@ def add_volume( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contour - :class:`plotly.graph_objects.volume.Contour` instance + :class:`plotly.graph_objs.volume.Contour` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -20597,7 +20597,7 @@ def add_volume( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.volume.Hoverlabel` + :class:`plotly.graph_objs.volume.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -20658,7 +20658,7 @@ def add_volume( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.volume.Legendgrouptitle` + :class:`plotly.graph_objs.volume.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -20675,10 +20675,10 @@ def add_volume( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.volume.Lighting` instance + :class:`plotly.graph_objs.volume.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.volume.Lightposition` + :class:`plotly.graph_objs.volume.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -20735,16 +20735,16 @@ def add_volume( Determines whether or not a colorbar is displayed for this trace. slices - :class:`plotly.graph_objects.volume.Slices` instance or + :class:`plotly.graph_objs.volume.Slices` instance or dict with compatible properties spaceframe - :class:`plotly.graph_objects.volume.Spaceframe` + :class:`plotly.graph_objs.volume.Spaceframe` instance or dict with compatible properties stream - :class:`plotly.graph_objects.volume.Stream` instance or + :class:`plotly.graph_objs.volume.Stream` instance or dict with compatible properties surface - :class:`plotly.graph_objects.volume.Surface` instance + :class:`plotly.graph_objs.volume.Surface` instance or dict with compatible properties text Sets the text elements associated with the vertices. If @@ -21035,7 +21035,7 @@ def add_waterfall( and tick labels, make sure to set `xaxis.layer` and `yaxis.layer` to *below traces*. connector - :class:`plotly.graph_objects.waterfall.Connector` + :class:`plotly.graph_objs.waterfall.Connector` instance or dict with compatible properties constraintext Constrain the size of text inside or outside a bar to @@ -21049,7 +21049,7 @@ def add_waterfall( Sets the source reference on Chart Studio Cloud for `customdata`. decreasing - :class:`plotly.graph_objects.waterfall.Decreasing` + :class:`plotly.graph_objs.waterfall.Decreasing` instance or dict with compatible properties dx Sets the x coordinate step. See `x0` for more info. @@ -21064,7 +21064,7 @@ def add_waterfall( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.waterfall.Hoverlabel` + :class:`plotly.graph_objs.waterfall.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -21118,7 +21118,7 @@ def add_waterfall( Sets the source reference on Chart Studio Cloud for `ids`. increasing - :class:`plotly.graph_objects.waterfall.Increasing` + :class:`plotly.graph_objs.waterfall.Increasing` instance or dict with compatible properties insidetextanchor Determines if texts are kept at center or start/end @@ -21136,7 +21136,7 @@ def add_waterfall( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.waterfall.Legendgrouptitle + :class:`plotly.graph_objs.waterfall.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -21211,7 +21211,7 @@ def add_waterfall( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.waterfall.Stream` instance + :class:`plotly.graph_objs.waterfall.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -21270,7 +21270,7 @@ def add_waterfall( Sets the source reference on Chart Studio Cloud for `texttemplate`. totals - :class:`plotly.graph_objects.waterfall.Totals` instance + :class:`plotly.graph_objs.waterfall.Totals` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -23133,7 +23133,7 @@ def add_annotation( (default) lets the text set the box height. Taller text will be clipped. hoverlabel - :class:`plotly.graph_objects.layout.annotation.Hoverlab + :class:`plotly.graph_objs.layout.annotation.Hoverlab el` instance or dict with compatible properties hovertext Sets text to appear when hovering over this annotation. @@ -23884,7 +23884,7 @@ def add_selection( instance of Selection or dict with compatible properties line - :class:`plotly.graph_objects.layout.selection.Line` + :class:`plotly.graph_objs.layout.selection.Line` instance or dict with compatible properties name When used in a template, named items are created in the @@ -24220,7 +24220,7 @@ def add_shape( https://developer.mozilla.org/en- US/docs/Web/SVG/Attribute/fill-rule label - :class:`plotly.graph_objects.layout.shape.Label` + :class:`plotly.graph_objs.layout.shape.Label` instance or dict with compatible properties layer Specifies whether shapes are drawn below gridlines @@ -24237,7 +24237,7 @@ def add_shape( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.layout.shape.Legendgroupti + :class:`plotly.graph_objs.layout.shape.Legendgroupti tle` instance or dict with compatible properties legendrank Sets the legend rank for this shape. Items and groups @@ -24254,7 +24254,7 @@ def add_shape( Sets the width (in px or fraction) of the legend for this shape. line - :class:`plotly.graph_objects.layout.shape.Line` + :class:`plotly.graph_objs.layout.shape.Line` instance or dict with compatible properties name When used in a template, named items are created in the diff --git a/plotly/graph_objs/_funnel.py b/plotly/graph_objs/_funnel.py index 6689f3092a..413bc2ccc2 100644 --- a/plotly/graph_objs/_funnel.py +++ b/plotly/graph_objs/_funnel.py @@ -1509,7 +1509,7 @@ def _prop_descriptions(self): and tick labels, make sure to set `xaxis.layer` and `yaxis.layer` to *below traces*. connector - :class:`plotly.graph_objects.funnel.Connector` instance + :class:`plotly.graph_objs.funnel.Connector` instance or dict with compatible properties constraintext Constrain the size of text inside or outside a bar to @@ -1535,7 +1535,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.funnel.Hoverlabel` + :class:`plotly.graph_objs.funnel.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1604,7 +1604,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.funnel.Legendgrouptitle` + :class:`plotly.graph_objs.funnel.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1621,7 +1621,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.funnel.Marker` instance or + :class:`plotly.graph_objs.funnel.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1674,7 +1674,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.funnel.Stream` instance or + :class:`plotly.graph_objs.funnel.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -1952,7 +1952,7 @@ def __init__( and tick labels, make sure to set `xaxis.layer` and `yaxis.layer` to *below traces*. connector - :class:`plotly.graph_objects.funnel.Connector` instance + :class:`plotly.graph_objs.funnel.Connector` instance or dict with compatible properties constraintext Constrain the size of text inside or outside a bar to @@ -1978,7 +1978,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.funnel.Hoverlabel` + :class:`plotly.graph_objs.funnel.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -2047,7 +2047,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.funnel.Legendgrouptitle` + :class:`plotly.graph_objs.funnel.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2064,7 +2064,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.funnel.Marker` instance or + :class:`plotly.graph_objs.funnel.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -2117,7 +2117,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.funnel.Stream` instance or + :class:`plotly.graph_objs.funnel.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If diff --git a/plotly/graph_objs/_funnelarea.py b/plotly/graph_objs/_funnelarea.py index 0d4d58b99d..8189f7365c 100644 --- a/plotly/graph_objs/_funnelarea.py +++ b/plotly/graph_objs/_funnelarea.py @@ -1049,7 +1049,7 @@ def _prop_descriptions(self): dlabel Sets the label step. See `label0` for more info. domain - :class:`plotly.graph_objects.funnelarea.Domain` + :class:`plotly.graph_objs.funnelarea.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -1060,7 +1060,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.funnelarea.Hoverlabel` + :class:`plotly.graph_objs.funnelarea.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1139,7 +1139,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.funnelarea.Legendgrouptitl + :class:`plotly.graph_objs.funnelarea.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1156,7 +1156,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.funnelarea.Marker` + :class:`plotly.graph_objs.funnelarea.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1188,7 +1188,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.funnelarea.Stream` + :class:`plotly.graph_objs.funnelarea.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -1230,7 +1230,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `texttemplate`. title - :class:`plotly.graph_objects.funnelarea.Title` instance + :class:`plotly.graph_objs.funnelarea.Title` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -1348,7 +1348,7 @@ def __init__( dlabel Sets the label step. See `label0` for more info. domain - :class:`plotly.graph_objects.funnelarea.Domain` + :class:`plotly.graph_objs.funnelarea.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -1359,7 +1359,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.funnelarea.Hoverlabel` + :class:`plotly.graph_objs.funnelarea.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1438,7 +1438,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.funnelarea.Legendgrouptitl + :class:`plotly.graph_objs.funnelarea.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1455,7 +1455,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.funnelarea.Marker` + :class:`plotly.graph_objs.funnelarea.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1487,7 +1487,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.funnelarea.Stream` + :class:`plotly.graph_objs.funnelarea.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -1529,7 +1529,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `texttemplate`. title - :class:`plotly.graph_objects.funnelarea.Title` instance + :class:`plotly.graph_objs.funnelarea.Title` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object diff --git a/plotly/graph_objs/_heatmap.py b/plotly/graph_objs/_heatmap.py index 45146b6495..3b01292a26 100644 --- a/plotly/graph_objs/_heatmap.py +++ b/plotly/graph_objs/_heatmap.py @@ -1619,7 +1619,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.heatmap.ColorBar` instance + :class:`plotly.graph_objs.heatmap.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1659,7 +1659,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.heatmap.Hoverlabel` + :class:`plotly.graph_objs.heatmap.Hoverlabel` instance or dict with compatible properties hoverongaps Determines whether or not gaps (i.e. {nan} or missing @@ -1720,7 +1720,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.heatmap.Legendgrouptitle` + :class:`plotly.graph_objs.heatmap.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1768,7 +1768,7 @@ def _prop_descriptions(self): Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.heatmap.Stream` instance + :class:`plotly.graph_objs.heatmap.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. @@ -2084,7 +2084,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.heatmap.ColorBar` instance + :class:`plotly.graph_objs.heatmap.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -2124,7 +2124,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.heatmap.Hoverlabel` + :class:`plotly.graph_objs.heatmap.Hoverlabel` instance or dict with compatible properties hoverongaps Determines whether or not gaps (i.e. {nan} or missing @@ -2185,7 +2185,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.heatmap.Legendgrouptitle` + :class:`plotly.graph_objs.heatmap.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2233,7 +2233,7 @@ def __init__( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.heatmap.Stream` instance + :class:`plotly.graph_objs.heatmap.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. diff --git a/plotly/graph_objs/_histogram.py b/plotly/graph_objs/_histogram.py index efa2fecfb7..4c94f9ff56 100644 --- a/plotly/graph_objs/_histogram.py +++ b/plotly/graph_objs/_histogram.py @@ -1549,7 +1549,7 @@ def _prop_descriptions(self): Constrain the size of text inside or outside a bar to be no larger than the bar itself. cumulative - :class:`plotly.graph_objects.histogram.Cumulative` + :class:`plotly.graph_objs.histogram.Cumulative` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -1560,10 +1560,10 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `customdata`. error_x - :class:`plotly.graph_objects.histogram.ErrorX` instance + :class:`plotly.graph_objs.histogram.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.histogram.ErrorY` instance + :class:`plotly.graph_objs.histogram.ErrorY` instance or dict with compatible properties histfunc Specifies the binning function used for this histogram @@ -1599,7 +1599,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.histogram.Hoverlabel` + :class:`plotly.graph_objs.histogram.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1662,7 +1662,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.histogram.Legendgrouptitle + :class:`plotly.graph_objs.histogram.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1679,7 +1679,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.histogram.Marker` instance + :class:`plotly.graph_objs.histogram.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1725,7 +1725,7 @@ def _prop_descriptions(self): outsidetextfont Sets the font used for `text` lying outside the bar. selected - :class:`plotly.graph_objects.histogram.Selected` + :class:`plotly.graph_objs.histogram.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1738,7 +1738,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.histogram.Stream` instance + :class:`plotly.graph_objs.histogram.Stream` instance or dict with compatible properties text Sets hover text elements associated with each bar. If a @@ -1806,7 +1806,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.histogram.Unselected` + :class:`plotly.graph_objs.histogram.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1821,7 +1821,7 @@ def _prop_descriptions(self): x coordinates refer to `layout.xaxis`. If "x2", the x coordinates refer to `layout.xaxis2`, and so on. xbins - :class:`plotly.graph_objects.histogram.XBins` instance + :class:`plotly.graph_objs.histogram.XBins` instance or dict with compatible properties xcalendar Sets the calendar system to use with `x` date data. @@ -1849,7 +1849,7 @@ def _prop_descriptions(self): y coordinates refer to `layout.yaxis`. If "y2", the y coordinates refer to `layout.yaxis2`, and so on. ybins - :class:`plotly.graph_objects.histogram.YBins` instance + :class:`plotly.graph_objs.histogram.YBins` instance or dict with compatible properties ycalendar Sets the calendar system to use with `y` date data. @@ -1996,7 +1996,7 @@ def __init__( Constrain the size of text inside or outside a bar to be no larger than the bar itself. cumulative - :class:`plotly.graph_objects.histogram.Cumulative` + :class:`plotly.graph_objs.histogram.Cumulative` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -2007,10 +2007,10 @@ def __init__( Sets the source reference on Chart Studio Cloud for `customdata`. error_x - :class:`plotly.graph_objects.histogram.ErrorX` instance + :class:`plotly.graph_objs.histogram.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.histogram.ErrorY` instance + :class:`plotly.graph_objs.histogram.ErrorY` instance or dict with compatible properties histfunc Specifies the binning function used for this histogram @@ -2046,7 +2046,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.histogram.Hoverlabel` + :class:`plotly.graph_objs.histogram.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -2109,7 +2109,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.histogram.Legendgrouptitle + :class:`plotly.graph_objs.histogram.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2126,7 +2126,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.histogram.Marker` instance + :class:`plotly.graph_objs.histogram.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -2172,7 +2172,7 @@ def __init__( outsidetextfont Sets the font used for `text` lying outside the bar. selected - :class:`plotly.graph_objects.histogram.Selected` + :class:`plotly.graph_objs.histogram.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -2185,7 +2185,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.histogram.Stream` instance + :class:`plotly.graph_objs.histogram.Stream` instance or dict with compatible properties text Sets hover text elements associated with each bar. If a @@ -2253,7 +2253,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.histogram.Unselected` + :class:`plotly.graph_objs.histogram.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -2268,7 +2268,7 @@ def __init__( x coordinates refer to `layout.xaxis`. If "x2", the x coordinates refer to `layout.xaxis2`, and so on. xbins - :class:`plotly.graph_objects.histogram.XBins` instance + :class:`plotly.graph_objs.histogram.XBins` instance or dict with compatible properties xcalendar Sets the calendar system to use with `x` date data. @@ -2296,7 +2296,7 @@ def __init__( y coordinates refer to `layout.yaxis`. If "y2", the y coordinates refer to `layout.yaxis2`, and so on. ybins - :class:`plotly.graph_objects.histogram.YBins` instance + :class:`plotly.graph_objs.histogram.YBins` instance or dict with compatible properties ycalendar Sets the calendar system to use with `y` date data. diff --git a/plotly/graph_objs/_histogram2d.py b/plotly/graph_objs/_histogram2d.py index 154861bcee..2410b70650 100644 --- a/plotly/graph_objs/_histogram2d.py +++ b/plotly/graph_objs/_histogram2d.py @@ -1503,7 +1503,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.histogram2d.ColorBar` + :class:`plotly.graph_objs.histogram2d.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1559,7 +1559,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.histogram2d.Hoverlabel` + :class:`plotly.graph_objs.histogram2d.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1612,7 +1612,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.histogram2d.Legendgrouptit + :class:`plotly.graph_objs.histogram2d.Legendgrouptit le` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1629,7 +1629,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.histogram2d.Marker` + :class:`plotly.graph_objs.histogram2d.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1675,7 +1675,7 @@ def _prop_descriptions(self): Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.histogram2d.Stream` + :class:`plotly.graph_objs.histogram2d.Stream` instance or dict with compatible properties textfont Sets the text font. @@ -1738,7 +1738,7 @@ def _prop_descriptions(self): Note that the same `xbingroup` value can be used to set (1D) histogram `bingroup` xbins - :class:`plotly.graph_objects.histogram2d.XBins` + :class:`plotly.graph_objs.histogram2d.XBins` instance or dict with compatible properties xcalendar Sets the calendar system to use with `x` date data. @@ -1775,7 +1775,7 @@ def _prop_descriptions(self): Note that the same `ybingroup` value can be used to set (1D) histogram `bingroup` ybins - :class:`plotly.graph_objects.histogram2d.YBins` + :class:`plotly.graph_objs.histogram2d.YBins` instance or dict with compatible properties ycalendar Sets the calendar system to use with `y` date data. @@ -1945,7 +1945,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.histogram2d.ColorBar` + :class:`plotly.graph_objs.histogram2d.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -2001,7 +2001,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.histogram2d.Hoverlabel` + :class:`plotly.graph_objs.histogram2d.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -2054,7 +2054,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.histogram2d.Legendgrouptit + :class:`plotly.graph_objs.histogram2d.Legendgrouptit le` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2071,7 +2071,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.histogram2d.Marker` + :class:`plotly.graph_objs.histogram2d.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -2117,7 +2117,7 @@ def __init__( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.histogram2d.Stream` + :class:`plotly.graph_objs.histogram2d.Stream` instance or dict with compatible properties textfont Sets the text font. @@ -2180,7 +2180,7 @@ def __init__( Note that the same `xbingroup` value can be used to set (1D) histogram `bingroup` xbins - :class:`plotly.graph_objects.histogram2d.XBins` + :class:`plotly.graph_objs.histogram2d.XBins` instance or dict with compatible properties xcalendar Sets the calendar system to use with `x` date data. @@ -2217,7 +2217,7 @@ def __init__( Note that the same `ybingroup` value can be used to set (1D) histogram `bingroup` ybins - :class:`plotly.graph_objects.histogram2d.YBins` + :class:`plotly.graph_objs.histogram2d.YBins` instance or dict with compatible properties ycalendar Sets the calendar system to use with `y` date data. diff --git a/plotly/graph_objs/_histogram2dcontour.py b/plotly/graph_objs/_histogram2dcontour.py index ae9e3762e0..fea53b461c 100644 --- a/plotly/graph_objs/_histogram2dcontour.py +++ b/plotly/graph_objs/_histogram2dcontour.py @@ -1538,7 +1538,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.histogram2dcontour.ColorBa + :class:`plotly.graph_objs.histogram2dcontour.ColorBa r` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1553,7 +1553,7 @@ def _prop_descriptions(self): ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contours - :class:`plotly.graph_objects.histogram2dcontour.Contour + :class:`plotly.graph_objs.histogram2dcontour.Contour s` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -1597,7 +1597,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.histogram2dcontour.Hoverla + :class:`plotly.graph_objs.histogram2dcontour.Hoverla bel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1650,7 +1650,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.histogram2dcontour.Legendg + :class:`plotly.graph_objs.histogram2dcontour.Legendg rouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1667,10 +1667,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.histogram2dcontour.Line` + :class:`plotly.graph_objs.histogram2dcontour.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.histogram2dcontour.Marker` + :class:`plotly.graph_objs.histogram2dcontour.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1722,7 +1722,7 @@ def _prop_descriptions(self): Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.histogram2dcontour.Stream` + :class:`plotly.graph_objs.histogram2dcontour.Stream` instance or dict with compatible properties textfont For this trace it only has an effect if `coloring` is @@ -1787,7 +1787,7 @@ def _prop_descriptions(self): Note that the same `xbingroup` value can be used to set (1D) histogram `bingroup` xbins - :class:`plotly.graph_objects.histogram2dcontour.XBins` + :class:`plotly.graph_objs.histogram2dcontour.XBins` instance or dict with compatible properties xcalendar Sets the calendar system to use with `x` date data. @@ -1822,7 +1822,7 @@ def _prop_descriptions(self): Note that the same `ybingroup` value can be used to set (1D) histogram `bingroup` ybins - :class:`plotly.graph_objects.histogram2dcontour.YBins` + :class:`plotly.graph_objs.histogram2dcontour.YBins` instance or dict with compatible properties ycalendar Sets the calendar system to use with `y` date data. @@ -1995,7 +1995,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.histogram2dcontour.ColorBa + :class:`plotly.graph_objs.histogram2dcontour.ColorBa r` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -2010,7 +2010,7 @@ def __init__( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contours - :class:`plotly.graph_objects.histogram2dcontour.Contour + :class:`plotly.graph_objs.histogram2dcontour.Contour s` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -2054,7 +2054,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.histogram2dcontour.Hoverla + :class:`plotly.graph_objs.histogram2dcontour.Hoverla bel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -2107,7 +2107,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.histogram2dcontour.Legendg + :class:`plotly.graph_objs.histogram2dcontour.Legendg rouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2124,10 +2124,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.histogram2dcontour.Line` + :class:`plotly.graph_objs.histogram2dcontour.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.histogram2dcontour.Marker` + :class:`plotly.graph_objs.histogram2dcontour.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -2179,7 +2179,7 @@ def __init__( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.histogram2dcontour.Stream` + :class:`plotly.graph_objs.histogram2dcontour.Stream` instance or dict with compatible properties textfont For this trace it only has an effect if `coloring` is @@ -2244,7 +2244,7 @@ def __init__( Note that the same `xbingroup` value can be used to set (1D) histogram `bingroup` xbins - :class:`plotly.graph_objects.histogram2dcontour.XBins` + :class:`plotly.graph_objs.histogram2dcontour.XBins` instance or dict with compatible properties xcalendar Sets the calendar system to use with `x` date data. @@ -2279,7 +2279,7 @@ def __init__( Note that the same `ybingroup` value can be used to set (1D) histogram `bingroup` ybins - :class:`plotly.graph_objects.histogram2dcontour.YBins` + :class:`plotly.graph_objs.histogram2dcontour.YBins` instance or dict with compatible properties ycalendar Sets the calendar system to use with `y` date data. diff --git a/plotly/graph_objs/_icicle.py b/plotly/graph_objs/_icicle.py index 7f657c17d8..cf16a70056 100644 --- a/plotly/graph_objs/_icicle.py +++ b/plotly/graph_objs/_icicle.py @@ -1128,7 +1128,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.icicle.Domain` instance or + :class:`plotly.graph_objs.icicle.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -1139,7 +1139,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.icicle.Hoverlabel` + :class:`plotly.graph_objs.icicle.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1201,7 +1201,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `labels`. leaf - :class:`plotly.graph_objects.icicle.Leaf` instance or + :class:`plotly.graph_objs.icicle.Leaf` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -1210,7 +1210,7 @@ def _prop_descriptions(self): the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.icicle.Legendgrouptitle` + :class:`plotly.graph_objs.icicle.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1233,7 +1233,7 @@ def _prop_descriptions(self): filled in, otherwise plotly attempts to find a matching item in `labels`. marker - :class:`plotly.graph_objects.icicle.Marker` instance or + :class:`plotly.graph_objs.icicle.Marker` instance or dict with compatible properties maxdepth Sets the number of rendered sectors from any given @@ -1278,16 +1278,16 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `parents`. pathbar - :class:`plotly.graph_objects.icicle.Pathbar` instance + :class:`plotly.graph_objs.icicle.Pathbar` instance or dict with compatible properties root - :class:`plotly.graph_objects.icicle.Root` instance or + :class:`plotly.graph_objs.icicle.Root` instance or dict with compatible properties sort Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.icicle.Stream` instance or + :class:`plotly.graph_objs.icicle.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -1327,7 +1327,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `texttemplate`. tiling - :class:`plotly.graph_objects.icicle.Tiling` instance or + :class:`plotly.graph_objs.icicle.Tiling` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -1451,7 +1451,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.icicle.Domain` instance or + :class:`plotly.graph_objs.icicle.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -1462,7 +1462,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.icicle.Hoverlabel` + :class:`plotly.graph_objs.icicle.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1524,7 +1524,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `labels`. leaf - :class:`plotly.graph_objects.icicle.Leaf` instance or + :class:`plotly.graph_objs.icicle.Leaf` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -1533,7 +1533,7 @@ def __init__( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.icicle.Legendgrouptitle` + :class:`plotly.graph_objs.icicle.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1556,7 +1556,7 @@ def __init__( filled in, otherwise plotly attempts to find a matching item in `labels`. marker - :class:`plotly.graph_objects.icicle.Marker` instance or + :class:`plotly.graph_objs.icicle.Marker` instance or dict with compatible properties maxdepth Sets the number of rendered sectors from any given @@ -1601,16 +1601,16 @@ def __init__( Sets the source reference on Chart Studio Cloud for `parents`. pathbar - :class:`plotly.graph_objects.icicle.Pathbar` instance + :class:`plotly.graph_objs.icicle.Pathbar` instance or dict with compatible properties root - :class:`plotly.graph_objects.icicle.Root` instance or + :class:`plotly.graph_objs.icicle.Root` instance or dict with compatible properties sort Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.icicle.Stream` instance or + :class:`plotly.graph_objs.icicle.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -1650,7 +1650,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `texttemplate`. tiling - :class:`plotly.graph_objects.icicle.Tiling` instance or + :class:`plotly.graph_objs.icicle.Tiling` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object diff --git a/plotly/graph_objs/_image.py b/plotly/graph_objs/_image.py index 0a6155dedf..fcf6602f23 100644 --- a/plotly/graph_objs/_image.py +++ b/plotly/graph_objs/_image.py @@ -926,7 +926,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.image.Hoverlabel` instance + :class:`plotly.graph_objs.image.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -981,7 +981,7 @@ def _prop_descriptions(self): the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.image.Legendgrouptitle` + :class:`plotly.graph_objs.image.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1023,7 +1023,7 @@ def _prop_descriptions(self): The URI consists of "data:image/[][;base64]," stream - :class:`plotly.graph_objects.image.Stream` instance or + :class:`plotly.graph_objs.image.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. @@ -1199,7 +1199,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.image.Hoverlabel` instance + :class:`plotly.graph_objs.image.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1254,7 +1254,7 @@ def __init__( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.image.Legendgrouptitle` + :class:`plotly.graph_objs.image.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1296,7 +1296,7 @@ def __init__( The URI consists of "data:image/[][;base64]," stream - :class:`plotly.graph_objects.image.Stream` instance or + :class:`plotly.graph_objs.image.Stream` instance or dict with compatible properties text Sets the text elements associated with each z value. diff --git a/plotly/graph_objs/_indicator.py b/plotly/graph_objs/_indicator.py index ae354501ef..be1d41ade6 100644 --- a/plotly/graph_objs/_indicator.py +++ b/plotly/graph_objs/_indicator.py @@ -534,10 +534,10 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `customdata`. delta - :class:`plotly.graph_objects.indicator.Delta` instance + :class:`plotly.graph_objs.indicator.Delta` instance or dict with compatible properties domain - :class:`plotly.graph_objects.indicator.Domain` instance + :class:`plotly.graph_objs.indicator.Domain` instance or dict with compatible properties gauge The gauge of the Indicator plot. @@ -555,7 +555,7 @@ def _prop_descriptions(self): the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.indicator.Legendgrouptitle + :class:`plotly.graph_objs.indicator.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -597,13 +597,13 @@ def _prop_descriptions(self): Sets the trace name. The trace name appears as the legend item and on hover. number - :class:`plotly.graph_objects.indicator.Number` instance + :class:`plotly.graph_objs.indicator.Number` instance or dict with compatible properties stream - :class:`plotly.graph_objects.indicator.Stream` instance + :class:`plotly.graph_objs.indicator.Stream` instance or dict with compatible properties title - :class:`plotly.graph_objects.indicator.Title` instance + :class:`plotly.graph_objs.indicator.Title` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -693,10 +693,10 @@ def __init__( Sets the source reference on Chart Studio Cloud for `customdata`. delta - :class:`plotly.graph_objects.indicator.Delta` instance + :class:`plotly.graph_objs.indicator.Delta` instance or dict with compatible properties domain - :class:`plotly.graph_objects.indicator.Domain` instance + :class:`plotly.graph_objs.indicator.Domain` instance or dict with compatible properties gauge The gauge of the Indicator plot. @@ -714,7 +714,7 @@ def __init__( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.indicator.Legendgrouptitle + :class:`plotly.graph_objs.indicator.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -756,13 +756,13 @@ def __init__( Sets the trace name. The trace name appears as the legend item and on hover. number - :class:`plotly.graph_objects.indicator.Number` instance + :class:`plotly.graph_objs.indicator.Number` instance or dict with compatible properties stream - :class:`plotly.graph_objects.indicator.Stream` instance + :class:`plotly.graph_objs.indicator.Stream` instance or dict with compatible properties title - :class:`plotly.graph_objects.indicator.Title` instance + :class:`plotly.graph_objs.indicator.Title` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object diff --git a/plotly/graph_objs/_isosurface.py b/plotly/graph_objs/_isosurface.py index 307bab664c..d675309c4d 100644 --- a/plotly/graph_objs/_isosurface.py +++ b/plotly/graph_objs/_isosurface.py @@ -1373,7 +1373,7 @@ def _prop_descriptions(self): chosen according to whether numbers in the `color` array are all positive, all negative or mixed. caps - :class:`plotly.graph_objects.isosurface.Caps` instance + :class:`plotly.graph_objs.isosurface.Caps` instance or dict with compatible properties cauto Determines whether or not the color domain is computed @@ -1401,7 +1401,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.isosurface.ColorBar` + :class:`plotly.graph_objs.isosurface.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1416,7 +1416,7 @@ def _prop_descriptions(self): ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contour - :class:`plotly.graph_objects.isosurface.Contour` + :class:`plotly.graph_objs.isosurface.Contour` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -1439,7 +1439,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.isosurface.Hoverlabel` + :class:`plotly.graph_objs.isosurface.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1500,7 +1500,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.isosurface.Legendgrouptitl + :class:`plotly.graph_objs.isosurface.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1517,10 +1517,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.isosurface.Lighting` + :class:`plotly.graph_objs.isosurface.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.isosurface.Lightposition` + :class:`plotly.graph_objs.isosurface.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1566,16 +1566,16 @@ def _prop_descriptions(self): Determines whether or not a colorbar is displayed for this trace. slices - :class:`plotly.graph_objects.isosurface.Slices` + :class:`plotly.graph_objs.isosurface.Slices` instance or dict with compatible properties spaceframe - :class:`plotly.graph_objects.isosurface.Spaceframe` + :class:`plotly.graph_objs.isosurface.Spaceframe` instance or dict with compatible properties stream - :class:`plotly.graph_objects.isosurface.Stream` + :class:`plotly.graph_objs.isosurface.Stream` instance or dict with compatible properties surface - :class:`plotly.graph_objects.isosurface.Surface` + :class:`plotly.graph_objs.isosurface.Surface` instance or dict with compatible properties text Sets the text elements associated with the vertices. If @@ -1767,7 +1767,7 @@ def __init__( chosen according to whether numbers in the `color` array are all positive, all negative or mixed. caps - :class:`plotly.graph_objects.isosurface.Caps` instance + :class:`plotly.graph_objs.isosurface.Caps` instance or dict with compatible properties cauto Determines whether or not the color domain is computed @@ -1795,7 +1795,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.isosurface.ColorBar` + :class:`plotly.graph_objs.isosurface.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1810,7 +1810,7 @@ def __init__( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contour - :class:`plotly.graph_objects.isosurface.Contour` + :class:`plotly.graph_objs.isosurface.Contour` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -1833,7 +1833,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.isosurface.Hoverlabel` + :class:`plotly.graph_objs.isosurface.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1894,7 +1894,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.isosurface.Legendgrouptitl + :class:`plotly.graph_objs.isosurface.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1911,10 +1911,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.isosurface.Lighting` + :class:`plotly.graph_objs.isosurface.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.isosurface.Lightposition` + :class:`plotly.graph_objs.isosurface.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1960,16 +1960,16 @@ def __init__( Determines whether or not a colorbar is displayed for this trace. slices - :class:`plotly.graph_objects.isosurface.Slices` + :class:`plotly.graph_objs.isosurface.Slices` instance or dict with compatible properties spaceframe - :class:`plotly.graph_objects.isosurface.Spaceframe` + :class:`plotly.graph_objs.isosurface.Spaceframe` instance or dict with compatible properties stream - :class:`plotly.graph_objects.isosurface.Stream` + :class:`plotly.graph_objs.isosurface.Stream` instance or dict with compatible properties surface - :class:`plotly.graph_objects.isosurface.Surface` + :class:`plotly.graph_objs.isosurface.Surface` instance or dict with compatible properties text Sets the text elements associated with the vertices. If diff --git a/plotly/graph_objs/_layout.py b/plotly/graph_objs/_layout.py index 2a08e494b4..4cb97682db 100644 --- a/plotly/graph_objs/_layout.py +++ b/plotly/graph_objs/_layout.py @@ -2196,14 +2196,14 @@ def yaxis(self, val): def _prop_descriptions(self): return """\ activeselection - :class:`plotly.graph_objects.layout.Activeselection` + :class:`plotly.graph_objs.layout.Activeselection` instance or dict with compatible properties activeshape - :class:`plotly.graph_objects.layout.Activeshape` + :class:`plotly.graph_objs.layout.Activeshape` instance or dict with compatible properties annotations A tuple of - :class:`plotly.graph_objects.layout.Annotation` + :class:`plotly.graph_objs.layout.Annotation` instances or dicts with compatible properties annotationdefaults When used in a template (as @@ -2285,10 +2285,10 @@ def _prop_descriptions(self): well. When the "event" flag is missing, `plotly_click` and `plotly_selected` events are not fired. coloraxis - :class:`plotly.graph_objects.layout.Coloraxis` instance + :class:`plotly.graph_objs.layout.Coloraxis` instance or dict with compatible properties colorscale - :class:`plotly.graph_objects.layout.Colorscale` + :class:`plotly.graph_objs.layout.Colorscale` instance or dict with compatible properties colorway Sets the default trace colors. @@ -2383,10 +2383,10 @@ def _prop_descriptions(self): over one another, you might need to reduce "opacity" to see multiple bars. geo - :class:`plotly.graph_objects.layout.Geo` instance or + :class:`plotly.graph_objs.layout.Geo` instance or dict with compatible properties grid - :class:`plotly.graph_objects.layout.Grid` instance or + :class:`plotly.graph_objs.layout.Grid` instance or dict with compatible properties height Sets the plot's height (in px). @@ -2415,7 +2415,7 @@ def _prop_descriptions(self): these objects will not supersede hover on point-like objects in case of conflict. hoverlabel - :class:`plotly.graph_objects.layout.Hoverlabel` + :class:`plotly.graph_objs.layout.Hoverlabel` instance or dict with compatible properties hovermode Determines the mode of hover interactions. If @@ -2446,23 +2446,23 @@ def _prop_descriptions(self): new list here it can still be extended with lighter and darker colors, see `extendiciclecolors`. images - A tuple of :class:`plotly.graph_objects.layout.Image` + A tuple of :class:`plotly.graph_objs.layout.Image` instances or dicts with compatible properties imagedefaults When used in a template (as layout.template.layout.imagedefaults), sets the default property values to use for elements of layout.images legend - :class:`plotly.graph_objects.layout.Legend` instance or + :class:`plotly.graph_objs.layout.Legend` instance or dict with compatible properties map - :class:`plotly.graph_objects.layout.Map` instance or + :class:`plotly.graph_objs.layout.Map` instance or dict with compatible properties mapbox - :class:`plotly.graph_objects.layout.Mapbox` instance or + :class:`plotly.graph_objs.layout.Mapbox` instance or dict with compatible properties margin - :class:`plotly.graph_objects.layout.Margin` instance or + :class:`plotly.graph_objs.layout.Margin` instance or dict with compatible properties meta Assigns extra meta information that can be used in @@ -2485,13 +2485,13 @@ def _prop_descriptions(self): Minimum width of the plot with margin.automargin applied (in px) modebar - :class:`plotly.graph_objects.layout.Modebar` instance + :class:`plotly.graph_objs.layout.Modebar` instance or dict with compatible properties newselection - :class:`plotly.graph_objects.layout.Newselection` + :class:`plotly.graph_objs.layout.Newselection` instance or dict with compatible properties newshape - :class:`plotly.graph_objects.layout.Newshape` instance + :class:`plotly.graph_objs.layout.Newshape` instance or dict with compatible properties paper_bgcolor Sets the background color of the paper where the graph @@ -2505,7 +2505,7 @@ def _prop_descriptions(self): Sets the background color of the plotting area in- between x and y axes. polar - :class:`plotly.graph_objects.layout.Polar` instance or + :class:`plotly.graph_objs.layout.Polar` instance or dict with compatible properties scattergap Sets the gap (in plot fraction) between scatter points @@ -2519,7 +2519,7 @@ def _prop_descriptions(self): might need to reduce "opacity" to see multiple scatter points. scene - :class:`plotly.graph_objects.layout.Scene` instance or + :class:`plotly.graph_objs.layout.Scene` instance or dict with compatible properties selectdirection When `dragmode` is set to "select", this limits the @@ -2532,7 +2532,7 @@ def _prop_descriptions(self): points from all traces. selections A tuple of - :class:`plotly.graph_objects.layout.Selection` + :class:`plotly.graph_objs.layout.Selection` instances or dicts with compatible properties selectiondefaults When used in a template (as @@ -2545,7 +2545,7 @@ def _prop_descriptions(self): thousands. In English locales, dflt is ".," but other locales may alter this default. shapes - A tuple of :class:`plotly.graph_objects.layout.Shape` + A tuple of :class:`plotly.graph_objs.layout.Shape` instances or dicts with compatible properties shapedefaults When used in a template (as @@ -2558,7 +2558,7 @@ def _prop_descriptions(self): legend. b) One pie trace is shown in the legend. c) One trace is explicitly given with `showlegend: true`. sliders - A tuple of :class:`plotly.graph_objects.layout.Slider` + A tuple of :class:`plotly.graph_objs.layout.Slider` instances or dicts with compatible properties sliderdefaults When used in a template (as @@ -2566,7 +2566,7 @@ def _prop_descriptions(self): default property values to use for elements of layout.sliders smith - :class:`plotly.graph_objects.layout.Smith` instance or + :class:`plotly.graph_objs.layout.Smith` instance or dict with compatible properties spikedistance Sets the default distance (in pixels) to look for data @@ -2604,10 +2604,10 @@ def _prop_descriptions(self): an item with matching `templateitemname` and `visible: false`. ternary - :class:`plotly.graph_objects.layout.Ternary` instance + :class:`plotly.graph_objs.layout.Ternary` instance or dict with compatible properties title - :class:`plotly.graph_objects.layout.Title` instance or + :class:`plotly.graph_objs.layout.Title` instance or dict with compatible properties transition Sets transition options used during Plotly.react @@ -2637,11 +2637,11 @@ def _prop_descriptions(self): and the y axis range will reset but the x axis range will retain any user-driven zoom. uniformtext - :class:`plotly.graph_objects.layout.Uniformtext` + :class:`plotly.graph_objs.layout.Uniformtext` instance or dict with compatible properties updatemenus A tuple of - :class:`plotly.graph_objects.layout.Updatemenu` + :class:`plotly.graph_objs.layout.Updatemenu` instances or dicts with compatible properties updatemenudefaults When used in a template (as @@ -2680,10 +2680,10 @@ def _prop_descriptions(self): width Sets the plot's width (in px). xaxis - :class:`plotly.graph_objects.layout.XAxis` instance or + :class:`plotly.graph_objs.layout.XAxis` instance or dict with compatible properties yaxis - :class:`plotly.graph_objects.layout.YAxis` instance or + :class:`plotly.graph_objs.layout.YAxis` instance or dict with compatible properties """ @@ -2796,14 +2796,14 @@ def __init__( dict of properties compatible with this constructor or an instance of :class:`plotly.graph_objs.Layout` activeselection - :class:`plotly.graph_objects.layout.Activeselection` + :class:`plotly.graph_objs.layout.Activeselection` instance or dict with compatible properties activeshape - :class:`plotly.graph_objects.layout.Activeshape` + :class:`plotly.graph_objs.layout.Activeshape` instance or dict with compatible properties annotations A tuple of - :class:`plotly.graph_objects.layout.Annotation` + :class:`plotly.graph_objs.layout.Annotation` instances or dicts with compatible properties annotationdefaults When used in a template (as @@ -2885,10 +2885,10 @@ def __init__( well. When the "event" flag is missing, `plotly_click` and `plotly_selected` events are not fired. coloraxis - :class:`plotly.graph_objects.layout.Coloraxis` instance + :class:`plotly.graph_objs.layout.Coloraxis` instance or dict with compatible properties colorscale - :class:`plotly.graph_objects.layout.Colorscale` + :class:`plotly.graph_objs.layout.Colorscale` instance or dict with compatible properties colorway Sets the default trace colors. @@ -2983,10 +2983,10 @@ def __init__( over one another, you might need to reduce "opacity" to see multiple bars. geo - :class:`plotly.graph_objects.layout.Geo` instance or + :class:`plotly.graph_objs.layout.Geo` instance or dict with compatible properties grid - :class:`plotly.graph_objects.layout.Grid` instance or + :class:`plotly.graph_objs.layout.Grid` instance or dict with compatible properties height Sets the plot's height (in px). @@ -3015,7 +3015,7 @@ def __init__( these objects will not supersede hover on point-like objects in case of conflict. hoverlabel - :class:`plotly.graph_objects.layout.Hoverlabel` + :class:`plotly.graph_objs.layout.Hoverlabel` instance or dict with compatible properties hovermode Determines the mode of hover interactions. If @@ -3046,23 +3046,23 @@ def __init__( new list here it can still be extended with lighter and darker colors, see `extendiciclecolors`. images - A tuple of :class:`plotly.graph_objects.layout.Image` + A tuple of :class:`plotly.graph_objs.layout.Image` instances or dicts with compatible properties imagedefaults When used in a template (as layout.template.layout.imagedefaults), sets the default property values to use for elements of layout.images legend - :class:`plotly.graph_objects.layout.Legend` instance or + :class:`plotly.graph_objs.layout.Legend` instance or dict with compatible properties map - :class:`plotly.graph_objects.layout.Map` instance or + :class:`plotly.graph_objs.layout.Map` instance or dict with compatible properties mapbox - :class:`plotly.graph_objects.layout.Mapbox` instance or + :class:`plotly.graph_objs.layout.Mapbox` instance or dict with compatible properties margin - :class:`plotly.graph_objects.layout.Margin` instance or + :class:`plotly.graph_objs.layout.Margin` instance or dict with compatible properties meta Assigns extra meta information that can be used in @@ -3085,13 +3085,13 @@ def __init__( Minimum width of the plot with margin.automargin applied (in px) modebar - :class:`plotly.graph_objects.layout.Modebar` instance + :class:`plotly.graph_objs.layout.Modebar` instance or dict with compatible properties newselection - :class:`plotly.graph_objects.layout.Newselection` + :class:`plotly.graph_objs.layout.Newselection` instance or dict with compatible properties newshape - :class:`plotly.graph_objects.layout.Newshape` instance + :class:`plotly.graph_objs.layout.Newshape` instance or dict with compatible properties paper_bgcolor Sets the background color of the paper where the graph @@ -3105,7 +3105,7 @@ def __init__( Sets the background color of the plotting area in- between x and y axes. polar - :class:`plotly.graph_objects.layout.Polar` instance or + :class:`plotly.graph_objs.layout.Polar` instance or dict with compatible properties scattergap Sets the gap (in plot fraction) between scatter points @@ -3119,7 +3119,7 @@ def __init__( might need to reduce "opacity" to see multiple scatter points. scene - :class:`plotly.graph_objects.layout.Scene` instance or + :class:`plotly.graph_objs.layout.Scene` instance or dict with compatible properties selectdirection When `dragmode` is set to "select", this limits the @@ -3132,7 +3132,7 @@ def __init__( points from all traces. selections A tuple of - :class:`plotly.graph_objects.layout.Selection` + :class:`plotly.graph_objs.layout.Selection` instances or dicts with compatible properties selectiondefaults When used in a template (as @@ -3145,7 +3145,7 @@ def __init__( thousands. In English locales, dflt is ".," but other locales may alter this default. shapes - A tuple of :class:`plotly.graph_objects.layout.Shape` + A tuple of :class:`plotly.graph_objs.layout.Shape` instances or dicts with compatible properties shapedefaults When used in a template (as @@ -3158,7 +3158,7 @@ def __init__( legend. b) One pie trace is shown in the legend. c) One trace is explicitly given with `showlegend: true`. sliders - A tuple of :class:`plotly.graph_objects.layout.Slider` + A tuple of :class:`plotly.graph_objs.layout.Slider` instances or dicts with compatible properties sliderdefaults When used in a template (as @@ -3166,7 +3166,7 @@ def __init__( default property values to use for elements of layout.sliders smith - :class:`plotly.graph_objects.layout.Smith` instance or + :class:`plotly.graph_objs.layout.Smith` instance or dict with compatible properties spikedistance Sets the default distance (in pixels) to look for data @@ -3204,10 +3204,10 @@ def __init__( an item with matching `templateitemname` and `visible: false`. ternary - :class:`plotly.graph_objects.layout.Ternary` instance + :class:`plotly.graph_objs.layout.Ternary` instance or dict with compatible properties title - :class:`plotly.graph_objects.layout.Title` instance or + :class:`plotly.graph_objs.layout.Title` instance or dict with compatible properties transition Sets transition options used during Plotly.react @@ -3237,11 +3237,11 @@ def __init__( and the y axis range will reset but the x axis range will retain any user-driven zoom. uniformtext - :class:`plotly.graph_objects.layout.Uniformtext` + :class:`plotly.graph_objs.layout.Uniformtext` instance or dict with compatible properties updatemenus A tuple of - :class:`plotly.graph_objects.layout.Updatemenu` + :class:`plotly.graph_objs.layout.Updatemenu` instances or dicts with compatible properties updatemenudefaults When used in a template (as @@ -3280,10 +3280,10 @@ def __init__( width Sets the plot's width (in px). xaxis - :class:`plotly.graph_objects.layout.XAxis` instance or + :class:`plotly.graph_objs.layout.XAxis` instance or dict with compatible properties yaxis - :class:`plotly.graph_objects.layout.YAxis` instance or + :class:`plotly.graph_objs.layout.YAxis` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/_mesh3d.py b/plotly/graph_objs/_mesh3d.py index cdc62e2689..9b44a102bd 100644 --- a/plotly/graph_objs/_mesh3d.py +++ b/plotly/graph_objs/_mesh3d.py @@ -1673,7 +1673,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.mesh3d.ColorBar` instance + :class:`plotly.graph_objs.mesh3d.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1688,7 +1688,7 @@ def _prop_descriptions(self): ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contour - :class:`plotly.graph_objects.mesh3d.Contour` instance + :class:`plotly.graph_objs.mesh3d.Contour` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -1723,7 +1723,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.mesh3d.Hoverlabel` + :class:`plotly.graph_objs.mesh3d.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1825,7 +1825,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.mesh3d.Legendgrouptitle` + :class:`plotly.graph_objs.mesh3d.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1842,10 +1842,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.mesh3d.Lighting` instance + :class:`plotly.graph_objs.mesh3d.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.mesh3d.Lightposition` + :class:`plotly.graph_objs.mesh3d.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1891,7 +1891,7 @@ def _prop_descriptions(self): Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.mesh3d.Stream` instance or + :class:`plotly.graph_objs.mesh3d.Stream` instance or dict with compatible properties text Sets the text elements associated with the vertices. If @@ -2147,7 +2147,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.mesh3d.ColorBar` instance + :class:`plotly.graph_objs.mesh3d.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -2162,7 +2162,7 @@ def __init__( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contour - :class:`plotly.graph_objects.mesh3d.Contour` instance + :class:`plotly.graph_objs.mesh3d.Contour` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -2197,7 +2197,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.mesh3d.Hoverlabel` + :class:`plotly.graph_objs.mesh3d.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -2299,7 +2299,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.mesh3d.Legendgrouptitle` + :class:`plotly.graph_objs.mesh3d.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2316,10 +2316,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.mesh3d.Lighting` instance + :class:`plotly.graph_objs.mesh3d.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.mesh3d.Lightposition` + :class:`plotly.graph_objs.mesh3d.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -2365,7 +2365,7 @@ def __init__( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.mesh3d.Stream` instance or + :class:`plotly.graph_objs.mesh3d.Stream` instance or dict with compatible properties text Sets the text elements associated with the vertices. If diff --git a/plotly/graph_objs/_ohlc.py b/plotly/graph_objs/_ohlc.py index 26f405a68b..180bea04b8 100644 --- a/plotly/graph_objs/_ohlc.py +++ b/plotly/graph_objs/_ohlc.py @@ -1087,7 +1087,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `customdata`. decreasing - :class:`plotly.graph_objects.ohlc.Decreasing` instance + :class:`plotly.graph_objs.ohlc.Decreasing` instance or dict with compatible properties high Sets the high values. @@ -1103,7 +1103,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.ohlc.Hoverlabel` instance + :class:`plotly.graph_objs.ohlc.Hoverlabel` instance or dict with compatible properties hovertext Same as `text`. @@ -1118,7 +1118,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `ids`. increasing - :class:`plotly.graph_objects.ohlc.Increasing` instance + :class:`plotly.graph_objs.ohlc.Increasing` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -1131,7 +1131,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.ohlc.Legendgrouptitle` + :class:`plotly.graph_objs.ohlc.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1148,7 +1148,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.ohlc.Line` instance or + :class:`plotly.graph_objs.ohlc.Line` instance or dict with compatible properties low Sets the low values. @@ -1192,7 +1192,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.ohlc.Stream` instance or + :class:`plotly.graph_objs.ohlc.Stream` instance or dict with compatible properties text Sets hover text elements associated with each sample @@ -1384,7 +1384,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `customdata`. decreasing - :class:`plotly.graph_objects.ohlc.Decreasing` instance + :class:`plotly.graph_objs.ohlc.Decreasing` instance or dict with compatible properties high Sets the high values. @@ -1400,7 +1400,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.ohlc.Hoverlabel` instance + :class:`plotly.graph_objs.ohlc.Hoverlabel` instance or dict with compatible properties hovertext Same as `text`. @@ -1415,7 +1415,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `ids`. increasing - :class:`plotly.graph_objects.ohlc.Increasing` instance + :class:`plotly.graph_objs.ohlc.Increasing` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -1428,7 +1428,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.ohlc.Legendgrouptitle` + :class:`plotly.graph_objs.ohlc.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1445,7 +1445,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.ohlc.Line` instance or + :class:`plotly.graph_objs.ohlc.Line` instance or dict with compatible properties low Sets the low values. @@ -1489,7 +1489,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.ohlc.Stream` instance or + :class:`plotly.graph_objs.ohlc.Stream` instance or dict with compatible properties text Sets hover text elements associated with each sample diff --git a/plotly/graph_objs/_parcats.py b/plotly/graph_objs/_parcats.py index 5f4919a8c2..1a751cd4cf 100644 --- a/plotly/graph_objs/_parcats.py +++ b/plotly/graph_objs/_parcats.py @@ -580,7 +580,7 @@ def _prop_descriptions(self): the default property values to use for elements of parcats.dimensions domain - :class:`plotly.graph_objects.parcats.Domain` instance + :class:`plotly.graph_objs.parcats.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -632,13 +632,13 @@ def _prop_descriptions(self): labelfont Sets the font for the `dimension` labels. legendgrouptitle - :class:`plotly.graph_objects.parcats.Legendgrouptitle` + :class:`plotly.graph_objs.parcats.Legendgrouptitle` instance or dict with compatible properties legendwidth Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.parcats.Line` instance or + :class:`plotly.graph_objs.parcats.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -665,7 +665,7 @@ def _prop_descriptions(self): If `backward`, sort paths based on dimensions categories from right to left. stream - :class:`plotly.graph_objects.parcats.Stream` instance + :class:`plotly.graph_objs.parcats.Stream` instance or dict with compatible properties tickfont Sets the font for the `category` labels. @@ -763,7 +763,7 @@ def __init__( the default property values to use for elements of parcats.dimensions domain - :class:`plotly.graph_objects.parcats.Domain` instance + :class:`plotly.graph_objs.parcats.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -815,13 +815,13 @@ def __init__( labelfont Sets the font for the `dimension` labels. legendgrouptitle - :class:`plotly.graph_objects.parcats.Legendgrouptitle` + :class:`plotly.graph_objs.parcats.Legendgrouptitle` instance or dict with compatible properties legendwidth Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.parcats.Line` instance or + :class:`plotly.graph_objs.parcats.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -848,7 +848,7 @@ def __init__( If `backward`, sort paths based on dimensions categories from right to left. stream - :class:`plotly.graph_objects.parcats.Stream` instance + :class:`plotly.graph_objs.parcats.Stream` instance or dict with compatible properties tickfont Sets the font for the `category` labels. diff --git a/plotly/graph_objs/_parcoords.py b/plotly/graph_objs/_parcoords.py index e3f2f9a264..31e7cf4a6d 100644 --- a/plotly/graph_objs/_parcoords.py +++ b/plotly/graph_objs/_parcoords.py @@ -591,7 +591,7 @@ def _prop_descriptions(self): the default property values to use for elements of parcoords.dimensions domain - :class:`plotly.graph_objects.parcoords.Domain` instance + :class:`plotly.graph_objs.parcoords.Domain` instance or dict with compatible properties ids Assigns id labels to each datum. These ids for object @@ -621,7 +621,7 @@ def _prop_descriptions(self): the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.parcoords.Legendgrouptitle + :class:`plotly.graph_objs.parcoords.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -638,7 +638,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.parcoords.Line` instance + :class:`plotly.graph_objs.parcoords.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -662,7 +662,7 @@ def _prop_descriptions(self): rangefont Sets the font for the `dimension` range values. stream - :class:`plotly.graph_objects.parcoords.Stream` instance + :class:`plotly.graph_objs.parcoords.Stream` instance or dict with compatible properties tickfont Sets the font for the `dimension` tick values. @@ -689,7 +689,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.parcoords.Unselected` + :class:`plotly.graph_objs.parcoords.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -757,7 +757,7 @@ def __init__( the default property values to use for elements of parcoords.dimensions domain - :class:`plotly.graph_objects.parcoords.Domain` instance + :class:`plotly.graph_objs.parcoords.Domain` instance or dict with compatible properties ids Assigns id labels to each datum. These ids for object @@ -787,7 +787,7 @@ def __init__( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.parcoords.Legendgrouptitle + :class:`plotly.graph_objs.parcoords.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -804,7 +804,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.parcoords.Line` instance + :class:`plotly.graph_objs.parcoords.Line` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -828,7 +828,7 @@ def __init__( rangefont Sets the font for the `dimension` range values. stream - :class:`plotly.graph_objects.parcoords.Stream` instance + :class:`plotly.graph_objs.parcoords.Stream` instance or dict with compatible properties tickfont Sets the font for the `dimension` tick values. @@ -855,7 +855,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.parcoords.Unselected` + :class:`plotly.graph_objs.parcoords.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_pie.py b/plotly/graph_objs/_pie.py index 615f719c72..c238e6855f 100644 --- a/plotly/graph_objs/_pie.py +++ b/plotly/graph_objs/_pie.py @@ -1205,7 +1205,7 @@ def _prop_descriptions(self): dlabel Sets the label step. See `label0` for more info. domain - :class:`plotly.graph_objects.pie.Domain` instance or + :class:`plotly.graph_objs.pie.Domain` instance or dict with compatible properties hole Sets the fraction of the radius to cut out of the pie. @@ -1219,7 +1219,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.pie.Hoverlabel` instance + :class:`plotly.graph_objs.pie.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1308,7 +1308,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.pie.Legendgrouptitle` + :class:`plotly.graph_objs.pie.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1325,7 +1325,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.pie.Marker` instance or + :class:`plotly.graph_objs.pie.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1374,7 +1374,7 @@ def _prop_descriptions(self): Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.pie.Stream` instance or + :class:`plotly.graph_objs.pie.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -1416,7 +1416,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `texttemplate`. title - :class:`plotly.graph_objects.pie.Title` instance or + :class:`plotly.graph_objs.pie.Title` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -1540,7 +1540,7 @@ def __init__( dlabel Sets the label step. See `label0` for more info. domain - :class:`plotly.graph_objects.pie.Domain` instance or + :class:`plotly.graph_objs.pie.Domain` instance or dict with compatible properties hole Sets the fraction of the radius to cut out of the pie. @@ -1554,7 +1554,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.pie.Hoverlabel` instance + :class:`plotly.graph_objs.pie.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1643,7 +1643,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.pie.Legendgrouptitle` + :class:`plotly.graph_objs.pie.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1660,7 +1660,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.pie.Marker` instance or + :class:`plotly.graph_objs.pie.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1709,7 +1709,7 @@ def __init__( Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.pie.Stream` instance or + :class:`plotly.graph_objs.pie.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -1751,7 +1751,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `texttemplate`. title - :class:`plotly.graph_objects.pie.Title` instance or + :class:`plotly.graph_objs.pie.Title` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object diff --git a/plotly/graph_objs/_sankey.py b/plotly/graph_objs/_sankey.py index 0190fcf034..3fc95eb408 100644 --- a/plotly/graph_objs/_sankey.py +++ b/plotly/graph_objs/_sankey.py @@ -615,7 +615,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.sankey.Domain` instance or + :class:`plotly.graph_objs.sankey.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -625,7 +625,7 @@ def _prop_descriptions(self): superseded by `node.hoverinfo` and `node.hoverinfo` for nodes and links respectively. hoverlabel - :class:`plotly.graph_objects.sankey.Hoverlabel` + :class:`plotly.graph_objs.sankey.Hoverlabel` instance or dict with compatible properties ids Assigns id labels to each datum. These ids for object @@ -641,7 +641,7 @@ def _prop_descriptions(self): the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.sankey.Legendgrouptitle` + :class:`plotly.graph_objs.sankey.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -690,7 +690,7 @@ def _prop_descriptions(self): any other non-array values means no selection all where the `selected` and `unselected` styles have no effect. stream - :class:`plotly.graph_objects.sankey.Stream` instance or + :class:`plotly.graph_objs.sankey.Stream` instance or dict with compatible properties textfont Sets the font for node labels @@ -793,7 +793,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.sankey.Domain` instance or + :class:`plotly.graph_objs.sankey.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -803,7 +803,7 @@ def __init__( superseded by `node.hoverinfo` and `node.hoverinfo` for nodes and links respectively. hoverlabel - :class:`plotly.graph_objects.sankey.Hoverlabel` + :class:`plotly.graph_objs.sankey.Hoverlabel` instance or dict with compatible properties ids Assigns id labels to each datum. These ids for object @@ -819,7 +819,7 @@ def __init__( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.sankey.Legendgrouptitle` + :class:`plotly.graph_objs.sankey.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -868,7 +868,7 @@ def __init__( any other non-array values means no selection all where the `selected` and `unselected` styles have no effect. stream - :class:`plotly.graph_objects.sankey.Stream` instance or + :class:`plotly.graph_objs.sankey.Stream` instance or dict with compatible properties textfont Sets the font for node labels diff --git a/plotly/graph_objs/_scatter.py b/plotly/graph_objs/_scatter.py index b9b6bf210f..75793745a2 100644 --- a/plotly/graph_objs/_scatter.py +++ b/plotly/graph_objs/_scatter.py @@ -1737,10 +1737,10 @@ def _prop_descriptions(self): dy Sets the y coordinate step. See `y0` for more info. error_x - :class:`plotly.graph_objects.scatter.ErrorX` instance + :class:`plotly.graph_objs.scatter.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.scatter.ErrorY` instance + :class:`plotly.graph_objs.scatter.ErrorY` instance or dict with compatible properties fill Sets the area to fill with a solid color. Defaults to @@ -1796,7 +1796,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatter.Hoverlabel` + :class:`plotly.graph_objs.scatter.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -1864,7 +1864,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatter.Legendgrouptitle` + :class:`plotly.graph_objs.scatter.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1881,10 +1881,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatter.Line` instance or + :class:`plotly.graph_objs.scatter.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatter.Marker` instance + :class:`plotly.graph_objs.scatter.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1928,7 +1928,7 @@ def _prop_descriptions(self): subsequent traces are added. Also affects the default value of `fill`. selected - :class:`plotly.graph_objects.scatter.Selected` instance + :class:`plotly.graph_objs.scatter.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1965,7 +1965,7 @@ def _prop_descriptions(self): fill-linked traces are not already consecutive, the later ones will be pushed down in the drawing order. stream - :class:`plotly.graph_objects.scatter.Stream` instance + :class:`plotly.graph_objs.scatter.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -2028,7 +2028,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatter.Unselected` + :class:`plotly.graph_objs.scatter.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -2253,10 +2253,10 @@ def __init__( dy Sets the y coordinate step. See `y0` for more info. error_x - :class:`plotly.graph_objects.scatter.ErrorX` instance + :class:`plotly.graph_objs.scatter.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.scatter.ErrorY` instance + :class:`plotly.graph_objs.scatter.ErrorY` instance or dict with compatible properties fill Sets the area to fill with a solid color. Defaults to @@ -2312,7 +2312,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatter.Hoverlabel` + :class:`plotly.graph_objs.scatter.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -2380,7 +2380,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatter.Legendgrouptitle` + :class:`plotly.graph_objs.scatter.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2397,10 +2397,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatter.Line` instance or + :class:`plotly.graph_objs.scatter.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatter.Marker` instance + :class:`plotly.graph_objs.scatter.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -2444,7 +2444,7 @@ def __init__( subsequent traces are added. Also affects the default value of `fill`. selected - :class:`plotly.graph_objects.scatter.Selected` instance + :class:`plotly.graph_objs.scatter.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -2481,7 +2481,7 @@ def __init__( fill-linked traces are not already consecutive, the later ones will be pushed down in the drawing order. stream - :class:`plotly.graph_objects.scatter.Stream` instance + :class:`plotly.graph_objs.scatter.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -2544,7 +2544,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatter.Unselected` + :class:`plotly.graph_objs.scatter.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_scatter3d.py b/plotly/graph_objs/_scatter3d.py index ed6889b427..10cfa829f2 100644 --- a/plotly/graph_objs/_scatter3d.py +++ b/plotly/graph_objs/_scatter3d.py @@ -1271,13 +1271,13 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `customdata`. error_x - :class:`plotly.graph_objects.scatter3d.ErrorX` instance + :class:`plotly.graph_objs.scatter3d.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.scatter3d.ErrorY` instance + :class:`plotly.graph_objs.scatter3d.ErrorY` instance or dict with compatible properties error_z - :class:`plotly.graph_objects.scatter3d.ErrorZ` instance + :class:`plotly.graph_objs.scatter3d.ErrorZ` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -1288,7 +1288,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatter3d.Hoverlabel` + :class:`plotly.graph_objs.scatter3d.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1350,7 +1350,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatter3d.Legendgrouptitle + :class:`plotly.graph_objs.scatter3d.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1367,10 +1367,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatter3d.Line` instance + :class:`plotly.graph_objs.scatter3d.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatter3d.Marker` instance + :class:`plotly.graph_objs.scatter3d.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1401,7 +1401,7 @@ def _prop_descriptions(self): opacity Sets the opacity of the trace. projection - :class:`plotly.graph_objects.scatter3d.Projection` + :class:`plotly.graph_objs.scatter3d.Projection` instance or dict with compatible properties scene Sets a reference between this trace's 3D coordinate @@ -1413,7 +1413,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatter3d.Stream` instance + :class:`plotly.graph_objs.scatter3d.Stream` instance or dict with compatible properties surfaceaxis If "-1", the scatter points are not fill with a surface @@ -1635,13 +1635,13 @@ def __init__( Sets the source reference on Chart Studio Cloud for `customdata`. error_x - :class:`plotly.graph_objects.scatter3d.ErrorX` instance + :class:`plotly.graph_objs.scatter3d.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.scatter3d.ErrorY` instance + :class:`plotly.graph_objs.scatter3d.ErrorY` instance or dict with compatible properties error_z - :class:`plotly.graph_objects.scatter3d.ErrorZ` instance + :class:`plotly.graph_objs.scatter3d.ErrorZ` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -1652,7 +1652,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatter3d.Hoverlabel` + :class:`plotly.graph_objs.scatter3d.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1714,7 +1714,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatter3d.Legendgrouptitle + :class:`plotly.graph_objs.scatter3d.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1731,10 +1731,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatter3d.Line` instance + :class:`plotly.graph_objs.scatter3d.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatter3d.Marker` instance + :class:`plotly.graph_objs.scatter3d.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1765,7 +1765,7 @@ def __init__( opacity Sets the opacity of the trace. projection - :class:`plotly.graph_objects.scatter3d.Projection` + :class:`plotly.graph_objs.scatter3d.Projection` instance or dict with compatible properties scene Sets a reference between this trace's 3D coordinate @@ -1777,7 +1777,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatter3d.Stream` instance + :class:`plotly.graph_objs.scatter3d.Stream` instance or dict with compatible properties surfaceaxis If "-1", the scatter points are not fill with a surface diff --git a/plotly/graph_objs/_scattercarpet.py b/plotly/graph_objs/_scattercarpet.py index a06c597f30..4e7da92d84 100644 --- a/plotly/graph_objs/_scattercarpet.py +++ b/plotly/graph_objs/_scattercarpet.py @@ -417,7 +417,7 @@ def hovertext(self): Sets hover text elements associated with each (a,b) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order - to the the data points in (a,b). To be seen, trace `hoverinfo` + of the data points in (a,b). To be seen, trace `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: @@ -830,7 +830,7 @@ def text(self): Sets text elements associated with each (a,b) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order - to the the data points in (a,b). If trace `hoverinfo` contains + of the data points in (a,b). If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels. @@ -1195,7 +1195,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattercarpet.Hoverlabel` + :class:`plotly.graph_objs.scattercarpet.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -1239,7 +1239,7 @@ def _prop_descriptions(self): Sets hover text elements associated with each (a,b) point. If a single string, the same string appears over all the data points. If an array of strings, the items - are mapped in order to the the data points in (a,b). To + are mapped in order of the data points in (a,b). To be seen, trace `hoverinfo` must contain a "text" flag. hovertextsrc Sets the source reference on Chart Studio Cloud for @@ -1262,7 +1262,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattercarpet.Legendgroupt + :class:`plotly.graph_objs.scattercarpet.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1279,10 +1279,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattercarpet.Line` + :class:`plotly.graph_objs.scattercarpet.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scattercarpet.Marker` + :class:`plotly.graph_objs.scattercarpet.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1313,7 +1313,7 @@ def _prop_descriptions(self): opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattercarpet.Selected` + :class:`plotly.graph_objs.scattercarpet.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1326,13 +1326,13 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattercarpet.Stream` + :class:`plotly.graph_objs.scattercarpet.Stream` instance or dict with compatible properties text Sets text elements associated with each (a,b) point. If a single string, the same string appears over all the data points. If an array of strings, the items are - mapped in order to the the data points in (a,b). If + mapped in order of the data points in (a,b). If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels. @@ -1390,7 +1390,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattercarpet.Unselected` + :class:`plotly.graph_objs.scattercarpet.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1529,7 +1529,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattercarpet.Hoverlabel` + :class:`plotly.graph_objs.scattercarpet.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -1573,7 +1573,7 @@ def __init__( Sets hover text elements associated with each (a,b) point. If a single string, the same string appears over all the data points. If an array of strings, the items - are mapped in order to the the data points in (a,b). To + are mapped in order of the data points in (a,b). To be seen, trace `hoverinfo` must contain a "text" flag. hovertextsrc Sets the source reference on Chart Studio Cloud for @@ -1596,7 +1596,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattercarpet.Legendgroupt + :class:`plotly.graph_objs.scattercarpet.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1613,10 +1613,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattercarpet.Line` + :class:`plotly.graph_objs.scattercarpet.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scattercarpet.Marker` + :class:`plotly.graph_objs.scattercarpet.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1647,7 +1647,7 @@ def __init__( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattercarpet.Selected` + :class:`plotly.graph_objs.scattercarpet.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1660,13 +1660,13 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattercarpet.Stream` + :class:`plotly.graph_objs.scattercarpet.Stream` instance or dict with compatible properties text Sets text elements associated with each (a,b) point. If a single string, the same string appears over all the data points. If an array of strings, the items are - mapped in order to the the data points in (a,b). If + mapped in order of the data points in (a,b). If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels. @@ -1724,7 +1724,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattercarpet.Unselected` + :class:`plotly.graph_objs.scattercarpet.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_scattergeo.py b/plotly/graph_objs/_scattergeo.py index 3ad12c0a50..c15eff76a5 100644 --- a/plotly/graph_objs/_scattergeo.py +++ b/plotly/graph_objs/_scattergeo.py @@ -1214,7 +1214,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattergeo.Hoverlabel` + :class:`plotly.graph_objs.scattergeo.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1281,7 +1281,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattergeo.Legendgrouptitl + :class:`plotly.graph_objs.scattergeo.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1298,7 +1298,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattergeo.Line` instance + :class:`plotly.graph_objs.scattergeo.Line` instance or dict with compatible properties locationmode The library used by the *country names* `locationmode` @@ -1323,7 +1323,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `lon`. marker - :class:`plotly.graph_objects.scattergeo.Marker` + :class:`plotly.graph_objs.scattergeo.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1354,7 +1354,7 @@ def _prop_descriptions(self): opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattergeo.Selected` + :class:`plotly.graph_objs.scattergeo.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1367,7 +1367,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattergeo.Stream` + :class:`plotly.graph_objs.scattergeo.Stream` instance or dict with compatible properties text Sets text elements associated with each (lon,lat) pair @@ -1432,7 +1432,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattergeo.Unselected` + :class:`plotly.graph_objs.scattergeo.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1558,7 +1558,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattergeo.Hoverlabel` + :class:`plotly.graph_objs.scattergeo.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1625,7 +1625,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattergeo.Legendgrouptitl + :class:`plotly.graph_objs.scattergeo.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1642,7 +1642,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattergeo.Line` instance + :class:`plotly.graph_objs.scattergeo.Line` instance or dict with compatible properties locationmode The library used by the *country names* `locationmode` @@ -1667,7 +1667,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `lon`. marker - :class:`plotly.graph_objects.scattergeo.Marker` + :class:`plotly.graph_objs.scattergeo.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1698,7 +1698,7 @@ def __init__( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattergeo.Selected` + :class:`plotly.graph_objs.scattergeo.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1711,7 +1711,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattergeo.Stream` + :class:`plotly.graph_objs.scattergeo.Stream` instance or dict with compatible properties text Sets text elements associated with each (lon,lat) pair @@ -1776,7 +1776,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattergeo.Unselected` + :class:`plotly.graph_objs.scattergeo.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_scattergl.py b/plotly/graph_objs/_scattergl.py index d81af3ed35..f9d43f51ae 100644 --- a/plotly/graph_objs/_scattergl.py +++ b/plotly/graph_objs/_scattergl.py @@ -1451,10 +1451,10 @@ def _prop_descriptions(self): dy Sets the y coordinate step. See `y0` for more info. error_x - :class:`plotly.graph_objects.scattergl.ErrorX` instance + :class:`plotly.graph_objs.scattergl.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.scattergl.ErrorY` instance + :class:`plotly.graph_objs.scattergl.ErrorY` instance or dict with compatible properties fill Sets the area to fill with a solid color. Defaults to @@ -1492,7 +1492,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattergl.Hoverlabel` + :class:`plotly.graph_objs.scattergl.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1554,7 +1554,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattergl.Legendgrouptitle + :class:`plotly.graph_objs.scattergl.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1571,10 +1571,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattergl.Line` instance + :class:`plotly.graph_objs.scattergl.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scattergl.Marker` instance + :class:`plotly.graph_objs.scattergl.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1600,7 +1600,7 @@ def _prop_descriptions(self): opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattergl.Selected` + :class:`plotly.graph_objs.scattergl.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1613,7 +1613,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattergl.Stream` instance + :class:`plotly.graph_objs.scattergl.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -1676,7 +1676,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattergl.Unselected` + :class:`plotly.graph_objs.scattergl.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1872,10 +1872,10 @@ def __init__( dy Sets the y coordinate step. See `y0` for more info. error_x - :class:`plotly.graph_objects.scattergl.ErrorX` instance + :class:`plotly.graph_objs.scattergl.ErrorX` instance or dict with compatible properties error_y - :class:`plotly.graph_objects.scattergl.ErrorY` instance + :class:`plotly.graph_objs.scattergl.ErrorY` instance or dict with compatible properties fill Sets the area to fill with a solid color. Defaults to @@ -1913,7 +1913,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattergl.Hoverlabel` + :class:`plotly.graph_objs.scattergl.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1975,7 +1975,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattergl.Legendgrouptitle + :class:`plotly.graph_objs.scattergl.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1992,10 +1992,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattergl.Line` instance + :class:`plotly.graph_objs.scattergl.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scattergl.Marker` instance + :class:`plotly.graph_objs.scattergl.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -2021,7 +2021,7 @@ def __init__( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattergl.Selected` + :class:`plotly.graph_objs.scattergl.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -2034,7 +2034,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattergl.Stream` instance + :class:`plotly.graph_objs.scattergl.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -2097,7 +2097,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattergl.Unselected` + :class:`plotly.graph_objs.scattergl.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_scattermap.py b/plotly/graph_objs/_scattermap.py index ad47dfc273..74f46c1ac6 100644 --- a/plotly/graph_objs/_scattermap.py +++ b/plotly/graph_objs/_scattermap.py @@ -1078,7 +1078,7 @@ def _prop_descriptions(self): base layers. To place the scattermap layers above every other layer, set `below` to "''". cluster - :class:`plotly.graph_objects.scattermap.Cluster` + :class:`plotly.graph_objs.scattermap.Cluster` instance or dict with compatible properties connectgaps Determines whether or not gaps (i.e. {nan} or missing @@ -1109,7 +1109,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattermap.Hoverlabel` + :class:`plotly.graph_objs.scattermap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1176,7 +1176,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattermap.Legendgrouptitl + :class:`plotly.graph_objs.scattermap.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1193,7 +1193,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattermap.Line` instance + :class:`plotly.graph_objs.scattermap.Line` instance or dict with compatible properties lon Sets the longitude coordinates (in degrees East). @@ -1201,7 +1201,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `lon`. marker - :class:`plotly.graph_objects.scattermap.Marker` + :class:`plotly.graph_objs.scattermap.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1230,7 +1230,7 @@ def _prop_descriptions(self): opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattermap.Selected` + :class:`plotly.graph_objs.scattermap.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1243,7 +1243,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattermap.Stream` + :class:`plotly.graph_objs.scattermap.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1311,7 +1311,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattermap.Unselected` + :class:`plotly.graph_objs.scattermap.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1391,7 +1391,7 @@ def __init__( base layers. To place the scattermap layers above every other layer, set `below` to "''". cluster - :class:`plotly.graph_objects.scattermap.Cluster` + :class:`plotly.graph_objs.scattermap.Cluster` instance or dict with compatible properties connectgaps Determines whether or not gaps (i.e. {nan} or missing @@ -1422,7 +1422,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattermap.Hoverlabel` + :class:`plotly.graph_objs.scattermap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1489,7 +1489,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattermap.Legendgrouptitl + :class:`plotly.graph_objs.scattermap.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1506,7 +1506,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattermap.Line` instance + :class:`plotly.graph_objs.scattermap.Line` instance or dict with compatible properties lon Sets the longitude coordinates (in degrees East). @@ -1514,7 +1514,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `lon`. marker - :class:`plotly.graph_objects.scattermap.Marker` + :class:`plotly.graph_objs.scattermap.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1543,7 +1543,7 @@ def __init__( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattermap.Selected` + :class:`plotly.graph_objs.scattermap.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1556,7 +1556,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattermap.Stream` + :class:`plotly.graph_objs.scattermap.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1624,7 +1624,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattermap.Unselected` + :class:`plotly.graph_objs.scattermap.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_scattermapbox.py b/plotly/graph_objs/_scattermapbox.py index c23b9bb831..057f3ba45e 100644 --- a/plotly/graph_objs/_scattermapbox.py +++ b/plotly/graph_objs/_scattermapbox.py @@ -1084,7 +1084,7 @@ def _prop_descriptions(self): the base layers. To place the scattermapbox layers above every other layer, set `below` to "''". cluster - :class:`plotly.graph_objects.scattermapbox.Cluster` + :class:`plotly.graph_objs.scattermapbox.Cluster` instance or dict with compatible properties connectgaps Determines whether or not gaps (i.e. {nan} or missing @@ -1115,7 +1115,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattermapbox.Hoverlabel` + :class:`plotly.graph_objs.scattermapbox.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1182,7 +1182,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattermapbox.Legendgroupt + :class:`plotly.graph_objs.scattermapbox.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1199,7 +1199,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattermapbox.Line` + :class:`plotly.graph_objs.scattermapbox.Line` instance or dict with compatible properties lon Sets the longitude coordinates (in degrees East). @@ -1207,7 +1207,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `lon`. marker - :class:`plotly.graph_objects.scattermapbox.Marker` + :class:`plotly.graph_objs.scattermapbox.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1236,7 +1236,7 @@ def _prop_descriptions(self): opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattermapbox.Selected` + :class:`plotly.graph_objs.scattermapbox.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1249,7 +1249,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattermapbox.Stream` + :class:`plotly.graph_objs.scattermapbox.Stream` instance or dict with compatible properties subplot mapbox subplots and traces are deprecated! Please @@ -1322,7 +1322,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattermapbox.Unselected` + :class:`plotly.graph_objs.scattermapbox.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1406,7 +1406,7 @@ def __init__( the base layers. To place the scattermapbox layers above every other layer, set `below` to "''". cluster - :class:`plotly.graph_objects.scattermapbox.Cluster` + :class:`plotly.graph_objs.scattermapbox.Cluster` instance or dict with compatible properties connectgaps Determines whether or not gaps (i.e. {nan} or missing @@ -1437,7 +1437,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattermapbox.Hoverlabel` + :class:`plotly.graph_objs.scattermapbox.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1504,7 +1504,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattermapbox.Legendgroupt + :class:`plotly.graph_objs.scattermapbox.Legendgroupt itle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1521,7 +1521,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattermapbox.Line` + :class:`plotly.graph_objs.scattermapbox.Line` instance or dict with compatible properties lon Sets the longitude coordinates (in degrees East). @@ -1529,7 +1529,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `lon`. marker - :class:`plotly.graph_objects.scattermapbox.Marker` + :class:`plotly.graph_objs.scattermapbox.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1558,7 +1558,7 @@ def __init__( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scattermapbox.Selected` + :class:`plotly.graph_objs.scattermapbox.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1571,7 +1571,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattermapbox.Stream` + :class:`plotly.graph_objs.scattermapbox.Stream` instance or dict with compatible properties subplot mapbox subplots and traces are deprecated! Please @@ -1644,7 +1644,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattermapbox.Unselected` + :class:`plotly.graph_objs.scattermapbox.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_scatterpolar.py b/plotly/graph_objs/_scatterpolar.py index 34d6328bf0..0d77a48c41 100644 --- a/plotly/graph_objs/_scatterpolar.py +++ b/plotly/graph_objs/_scatterpolar.py @@ -1249,7 +1249,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatterpolar.Hoverlabel` + :class:`plotly.graph_objs.scatterpolar.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -1317,7 +1317,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatterpolar.Legendgroupti + :class:`plotly.graph_objs.scatterpolar.Legendgroupti tle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1334,10 +1334,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatterpolar.Line` + :class:`plotly.graph_objs.scatterpolar.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatterpolar.Marker` + :class:`plotly.graph_objs.scatterpolar.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1377,7 +1377,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `r`. selected - :class:`plotly.graph_objects.scatterpolar.Selected` + :class:`plotly.graph_objs.scatterpolar.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1390,7 +1390,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatterpolar.Stream` + :class:`plotly.graph_objs.scatterpolar.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1471,7 +1471,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatterpolar.Unselected` + :class:`plotly.graph_objs.scatterpolar.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1601,7 +1601,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatterpolar.Hoverlabel` + :class:`plotly.graph_objs.scatterpolar.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -1669,7 +1669,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatterpolar.Legendgroupti + :class:`plotly.graph_objs.scatterpolar.Legendgroupti tle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1686,10 +1686,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatterpolar.Line` + :class:`plotly.graph_objs.scatterpolar.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatterpolar.Marker` + :class:`plotly.graph_objs.scatterpolar.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1729,7 +1729,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `r`. selected - :class:`plotly.graph_objects.scatterpolar.Selected` + :class:`plotly.graph_objs.scatterpolar.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1742,7 +1742,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatterpolar.Stream` + :class:`plotly.graph_objs.scatterpolar.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1823,7 +1823,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatterpolar.Unselected` + :class:`plotly.graph_objs.scatterpolar.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_scatterpolargl.py b/plotly/graph_objs/_scatterpolargl.py index 781030c5ec..a405cc15be 100644 --- a/plotly/graph_objs/_scatterpolargl.py +++ b/plotly/graph_objs/_scatterpolargl.py @@ -1220,7 +1220,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatterpolargl.Hoverlabel` + :class:`plotly.graph_objs.scatterpolargl.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1282,7 +1282,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatterpolargl.Legendgroup + :class:`plotly.graph_objs.scatterpolargl.Legendgroup title` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1299,10 +1299,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatterpolargl.Line` + :class:`plotly.graph_objs.scatterpolargl.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatterpolargl.Marker` + :class:`plotly.graph_objs.scatterpolargl.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1342,7 +1342,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `r`. selected - :class:`plotly.graph_objects.scatterpolargl.Selected` + :class:`plotly.graph_objs.scatterpolargl.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1355,7 +1355,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatterpolargl.Stream` + :class:`plotly.graph_objs.scatterpolargl.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1436,7 +1436,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatterpolargl.Unselected` + :class:`plotly.graph_objs.scatterpolargl.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1570,7 +1570,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatterpolargl.Hoverlabel` + :class:`plotly.graph_objs.scatterpolargl.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1632,7 +1632,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatterpolargl.Legendgroup + :class:`plotly.graph_objs.scatterpolargl.Legendgroup title` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1649,10 +1649,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatterpolargl.Line` + :class:`plotly.graph_objs.scatterpolargl.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatterpolargl.Marker` + :class:`plotly.graph_objs.scatterpolargl.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1692,7 +1692,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `r`. selected - :class:`plotly.graph_objects.scatterpolargl.Selected` + :class:`plotly.graph_objs.scatterpolargl.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1705,7 +1705,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatterpolargl.Stream` + :class:`plotly.graph_objs.scatterpolargl.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1786,7 +1786,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatterpolargl.Unselected` + :class:`plotly.graph_objs.scatterpolargl.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_scattersmith.py b/plotly/graph_objs/_scattersmith.py index a38d4cd3f2..8104d02aad 100644 --- a/plotly/graph_objs/_scattersmith.py +++ b/plotly/graph_objs/_scattersmith.py @@ -1145,7 +1145,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattersmith.Hoverlabel` + :class:`plotly.graph_objs.scattersmith.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -1220,7 +1220,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattersmith.Legendgroupti + :class:`plotly.graph_objs.scattersmith.Legendgroupti tle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1237,10 +1237,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattersmith.Line` + :class:`plotly.graph_objs.scattersmith.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scattersmith.Marker` + :class:`plotly.graph_objs.scattersmith.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1278,7 +1278,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `real`. selected - :class:`plotly.graph_objects.scattersmith.Selected` + :class:`plotly.graph_objs.scattersmith.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1291,7 +1291,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattersmith.Stream` + :class:`plotly.graph_objs.scattersmith.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1360,7 +1360,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattersmith.Unselected` + :class:`plotly.graph_objs.scattersmith.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1479,7 +1479,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scattersmith.Hoverlabel` + :class:`plotly.graph_objs.scattersmith.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -1554,7 +1554,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scattersmith.Legendgroupti + :class:`plotly.graph_objs.scattersmith.Legendgroupti tle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1571,10 +1571,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scattersmith.Line` + :class:`plotly.graph_objs.scattersmith.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scattersmith.Marker` + :class:`plotly.graph_objs.scattersmith.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1612,7 +1612,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `real`. selected - :class:`plotly.graph_objects.scattersmith.Selected` + :class:`plotly.graph_objs.scattersmith.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1625,7 +1625,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scattersmith.Stream` + :class:`plotly.graph_objs.scattersmith.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1694,7 +1694,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scattersmith.Unselected` + :class:`plotly.graph_objs.scattersmith.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_scatterternary.py b/plotly/graph_objs/_scatterternary.py index b0b3ca3fcf..670dff6cd7 100644 --- a/plotly/graph_objs/_scatterternary.py +++ b/plotly/graph_objs/_scatterternary.py @@ -463,7 +463,7 @@ def hovertext(self): Sets hover text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order - to the the data points in (a,b,c). To be seen, trace + of the data points in (a,b,c). To be seen, trace `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: @@ -921,7 +921,7 @@ def text(self): Sets text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items are mapped in order - to the the data points in (a,b,c). If trace `hoverinfo` + of the data points in (a,b,c). If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels. @@ -1239,7 +1239,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatterternary.Hoverlabel` + :class:`plotly.graph_objs.scatterternary.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -1283,7 +1283,7 @@ def _prop_descriptions(self): Sets hover text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items - are mapped in order to the the data points in (a,b,c). + are mapped in order of the data points in (a,b,c). To be seen, trace `hoverinfo` must contain a "text" flag. hovertextsrc @@ -1307,7 +1307,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatterternary.Legendgroup + :class:`plotly.graph_objs.scatterternary.Legendgroup title` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1324,10 +1324,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatterternary.Line` + :class:`plotly.graph_objs.scatterternary.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatterternary.Marker` + :class:`plotly.graph_objs.scatterternary.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1358,7 +1358,7 @@ def _prop_descriptions(self): opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scatterternary.Selected` + :class:`plotly.graph_objs.scatterternary.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1371,7 +1371,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatterternary.Stream` + :class:`plotly.graph_objs.scatterternary.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1389,7 +1389,7 @@ def _prop_descriptions(self): Sets text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items are - mapped in order to the the data points in (a,b,c). If + mapped in order of the data points in (a,b,c). If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels. @@ -1447,7 +1447,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatterternary.Unselected` + :class:`plotly.graph_objs.scatterternary.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1593,7 +1593,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.scatterternary.Hoverlabel` + :class:`plotly.graph_objs.scatterternary.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual points @@ -1637,7 +1637,7 @@ def __init__( Sets hover text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items - are mapped in order to the the data points in (a,b,c). + are mapped in order of the data points in (a,b,c). To be seen, trace `hoverinfo` must contain a "text" flag. hovertextsrc @@ -1661,7 +1661,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.scatterternary.Legendgroup + :class:`plotly.graph_objs.scatterternary.Legendgroup title` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1678,10 +1678,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.scatterternary.Line` + :class:`plotly.graph_objs.scatterternary.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.scatterternary.Marker` + :class:`plotly.graph_objs.scatterternary.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1712,7 +1712,7 @@ def __init__( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.scatterternary.Selected` + :class:`plotly.graph_objs.scatterternary.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1725,7 +1725,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.scatterternary.Stream` + :class:`plotly.graph_objs.scatterternary.Stream` instance or dict with compatible properties subplot Sets a reference between this trace's data coordinates @@ -1743,7 +1743,7 @@ def __init__( Sets text elements associated with each (a,b,c) point. If a single string, the same string appears over all the data points. If an array of strings, the items are - mapped in order to the the data points in (a,b,c). If + mapped in order of the data points in (a,b,c). If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels. @@ -1801,7 +1801,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.scatterternary.Unselected` + :class:`plotly.graph_objs.scatterternary.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_splom.py b/plotly/graph_objs/_splom.py index 803f9cd234..c51f0f4ec5 100644 --- a/plotly/graph_objs/_splom.py +++ b/plotly/graph_objs/_splom.py @@ -938,11 +938,11 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `customdata`. diagonal - :class:`plotly.graph_objects.splom.Diagonal` instance + :class:`plotly.graph_objs.splom.Diagonal` instance or dict with compatible properties dimensions A tuple of - :class:`plotly.graph_objects.splom.Dimension` instances + :class:`plotly.graph_objs.splom.Dimension` instances or dicts with compatible properties dimensiondefaults When used in a template (as @@ -958,7 +958,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.splom.Hoverlabel` instance + :class:`plotly.graph_objs.splom.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1015,7 +1015,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.splom.Legendgrouptitle` + :class:`plotly.graph_objs.splom.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1032,7 +1032,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.splom.Marker` instance or + :class:`plotly.graph_objs.splom.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1056,7 +1056,7 @@ def _prop_descriptions(self): opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.splom.Selected` instance + :class:`plotly.graph_objs.splom.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1075,7 +1075,7 @@ def _prop_descriptions(self): Determines whether or not subplots on the upper half from the diagonal are displayed. stream - :class:`plotly.graph_objects.splom.Stream` instance or + :class:`plotly.graph_objs.splom.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair to @@ -1109,7 +1109,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.splom.Unselected` instance + :class:`plotly.graph_objs.splom.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1230,11 +1230,11 @@ def __init__( Sets the source reference on Chart Studio Cloud for `customdata`. diagonal - :class:`plotly.graph_objects.splom.Diagonal` instance + :class:`plotly.graph_objs.splom.Diagonal` instance or dict with compatible properties dimensions A tuple of - :class:`plotly.graph_objects.splom.Dimension` instances + :class:`plotly.graph_objs.splom.Dimension` instances or dicts with compatible properties dimensiondefaults When used in a template (as @@ -1250,7 +1250,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.splom.Hoverlabel` instance + :class:`plotly.graph_objs.splom.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1307,7 +1307,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.splom.Legendgrouptitle` + :class:`plotly.graph_objs.splom.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1324,7 +1324,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. marker - :class:`plotly.graph_objects.splom.Marker` instance or + :class:`plotly.graph_objs.splom.Marker` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1348,7 +1348,7 @@ def __init__( opacity Sets the opacity of the trace. selected - :class:`plotly.graph_objects.splom.Selected` instance + :class:`plotly.graph_objs.splom.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1367,7 +1367,7 @@ def __init__( Determines whether or not subplots on the upper half from the diagonal are displayed. stream - :class:`plotly.graph_objects.splom.Stream` instance or + :class:`plotly.graph_objs.splom.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair to @@ -1401,7 +1401,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.splom.Unselected` instance + :class:`plotly.graph_objs.splom.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_streamtube.py b/plotly/graph_objs/_streamtube.py index fba538c29c..376a11179c 100644 --- a/plotly/graph_objs/_streamtube.py +++ b/plotly/graph_objs/_streamtube.py @@ -1390,7 +1390,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.streamtube.ColorBar` + :class:`plotly.graph_objs.streamtube.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1421,7 +1421,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.streamtube.Hoverlabel` + :class:`plotly.graph_objs.streamtube.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1478,7 +1478,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.streamtube.Legendgrouptitl + :class:`plotly.graph_objs.streamtube.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1495,10 +1495,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.streamtube.Lighting` + :class:`plotly.graph_objs.streamtube.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.streamtube.Lightposition` + :class:`plotly.graph_objs.streamtube.Lightposition` instance or dict with compatible properties maxdisplayed The maximum number of displayed segments in a @@ -1551,10 +1551,10 @@ def _prop_descriptions(self): 1, which avoids two max divergence tubes from touching at adjacent starting positions. starts - :class:`plotly.graph_objects.streamtube.Starts` + :class:`plotly.graph_objs.streamtube.Starts` instance or dict with compatible properties stream - :class:`plotly.graph_objects.streamtube.Stream` + :class:`plotly.graph_objs.streamtube.Stream` instance or dict with compatible properties text Sets a text element associated with this trace. If @@ -1792,7 +1792,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.streamtube.ColorBar` + :class:`plotly.graph_objs.streamtube.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1823,7 +1823,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.streamtube.Hoverlabel` + :class:`plotly.graph_objs.streamtube.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1880,7 +1880,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.streamtube.Legendgrouptitl + :class:`plotly.graph_objs.streamtube.Legendgrouptitl e` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1897,10 +1897,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.streamtube.Lighting` + :class:`plotly.graph_objs.streamtube.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.streamtube.Lightposition` + :class:`plotly.graph_objs.streamtube.Lightposition` instance or dict with compatible properties maxdisplayed The maximum number of displayed segments in a @@ -1953,10 +1953,10 @@ def __init__( 1, which avoids two max divergence tubes from touching at adjacent starting positions. starts - :class:`plotly.graph_objects.streamtube.Starts` + :class:`plotly.graph_objs.streamtube.Starts` instance or dict with compatible properties stream - :class:`plotly.graph_objects.streamtube.Stream` + :class:`plotly.graph_objs.streamtube.Stream` instance or dict with compatible properties text Sets a text element associated with this trace. If diff --git a/plotly/graph_objs/_sunburst.py b/plotly/graph_objs/_sunburst.py index 7e3000fa81..5218b22175 100644 --- a/plotly/graph_objs/_sunburst.py +++ b/plotly/graph_objs/_sunburst.py @@ -1115,7 +1115,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.sunburst.Domain` instance + :class:`plotly.graph_objs.sunburst.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -1126,7 +1126,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.sunburst.Hoverlabel` + :class:`plotly.graph_objs.sunburst.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1198,7 +1198,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `labels`. leaf - :class:`plotly.graph_objects.sunburst.Leaf` instance or + :class:`plotly.graph_objs.sunburst.Leaf` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -1207,7 +1207,7 @@ def _prop_descriptions(self): the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.sunburst.Legendgrouptitle` + :class:`plotly.graph_objs.sunburst.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1230,7 +1230,7 @@ def _prop_descriptions(self): filled in, otherwise plotly attempts to find a matching item in `labels`. marker - :class:`plotly.graph_objects.sunburst.Marker` instance + :class:`plotly.graph_objs.sunburst.Marker` instance or dict with compatible properties maxdepth Sets the number of rendered sectors from any given @@ -1275,7 +1275,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `parents`. root - :class:`plotly.graph_objects.sunburst.Root` instance or + :class:`plotly.graph_objs.sunburst.Root` instance or dict with compatible properties rotation Rotates the whole diagram counterclockwise by some @@ -1284,7 +1284,7 @@ def _prop_descriptions(self): Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.sunburst.Stream` instance + :class:`plotly.graph_objs.sunburst.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -1442,7 +1442,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.sunburst.Domain` instance + :class:`plotly.graph_objs.sunburst.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -1453,7 +1453,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.sunburst.Hoverlabel` + :class:`plotly.graph_objs.sunburst.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1525,7 +1525,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `labels`. leaf - :class:`plotly.graph_objects.sunburst.Leaf` instance or + :class:`plotly.graph_objs.sunburst.Leaf` instance or dict with compatible properties legend Sets the reference to a legend to show this trace in. @@ -1534,7 +1534,7 @@ def __init__( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.sunburst.Legendgrouptitle` + :class:`plotly.graph_objs.sunburst.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1557,7 +1557,7 @@ def __init__( filled in, otherwise plotly attempts to find a matching item in `labels`. marker - :class:`plotly.graph_objects.sunburst.Marker` instance + :class:`plotly.graph_objs.sunburst.Marker` instance or dict with compatible properties maxdepth Sets the number of rendered sectors from any given @@ -1602,7 +1602,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `parents`. root - :class:`plotly.graph_objects.sunburst.Root` instance or + :class:`plotly.graph_objs.sunburst.Root` instance or dict with compatible properties rotation Rotates the whole diagram counterclockwise by some @@ -1611,7 +1611,7 @@ def __init__( Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.sunburst.Stream` instance + :class:`plotly.graph_objs.sunburst.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If diff --git a/plotly/graph_objs/_surface.py b/plotly/graph_objs/_surface.py index 12ea2060ad..73efdfa5c4 100644 --- a/plotly/graph_objs/_surface.py +++ b/plotly/graph_objs/_surface.py @@ -1376,7 +1376,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.surface.ColorBar` instance + :class:`plotly.graph_objs.surface.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1394,7 +1394,7 @@ def _prop_descriptions(self): Determines whether or not gaps (i.e. {nan} or missing values) in the `z` data are filled in. contours - :class:`plotly.graph_objects.surface.Contours` instance + :class:`plotly.graph_objs.surface.Contours` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -1418,7 +1418,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.surface.Hoverlabel` + :class:`plotly.graph_objs.surface.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1475,7 +1475,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.surface.Legendgrouptitle` + :class:`plotly.graph_objs.surface.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1492,10 +1492,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.surface.Lighting` instance + :class:`plotly.graph_objs.surface.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.surface.Lightposition` + :class:`plotly.graph_objs.surface.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1552,7 +1552,7 @@ def _prop_descriptions(self): Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.surface.Stream` instance + :class:`plotly.graph_objs.surface.Stream` instance or dict with compatible properties surfacecolor Sets the surface color values, used for setting a color @@ -1771,7 +1771,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.surface.ColorBar` instance + :class:`plotly.graph_objs.surface.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1789,7 +1789,7 @@ def __init__( Determines whether or not gaps (i.e. {nan} or missing values) in the `z` data are filled in. contours - :class:`plotly.graph_objects.surface.Contours` instance + :class:`plotly.graph_objs.surface.Contours` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -1813,7 +1813,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.surface.Hoverlabel` + :class:`plotly.graph_objs.surface.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1870,7 +1870,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.surface.Legendgrouptitle` + :class:`plotly.graph_objs.surface.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1887,10 +1887,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.surface.Lighting` instance + :class:`plotly.graph_objs.surface.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.surface.Lightposition` + :class:`plotly.graph_objs.surface.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1947,7 +1947,7 @@ def __init__( Determines whether or not a colorbar is displayed for this trace. stream - :class:`plotly.graph_objects.surface.Stream` instance + :class:`plotly.graph_objs.surface.Stream` instance or dict with compatible properties surfacecolor Sets the surface color values, used for setting a color diff --git a/plotly/graph_objs/_table.py b/plotly/graph_objs/_table.py index 3bf76e1c76..46ffe7761e 100644 --- a/plotly/graph_objs/_table.py +++ b/plotly/graph_objs/_table.py @@ -562,7 +562,7 @@ def type(self): def _prop_descriptions(self): return """\ cells - :class:`plotly.graph_objects.table.Cells` instance or + :class:`plotly.graph_objs.table.Cells` instance or dict with compatible properties columnorder Specifies the rendered order of the data columns; for @@ -588,10 +588,10 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.table.Domain` instance or + :class:`plotly.graph_objs.table.Domain` instance or dict with compatible properties header - :class:`plotly.graph_objects.table.Header` instance or + :class:`plotly.graph_objs.table.Header` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -602,7 +602,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.table.Hoverlabel` instance + :class:`plotly.graph_objs.table.Hoverlabel` instance or dict with compatible properties ids Assigns id labels to each datum. These ids for object @@ -618,7 +618,7 @@ def _prop_descriptions(self): the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.table.Legendgrouptitle` + :class:`plotly.graph_objs.table.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -654,7 +654,7 @@ def _prop_descriptions(self): Sets the trace name. The trace name appears as the legend item and on hover. stream - :class:`plotly.graph_objects.table.Stream` instance or + :class:`plotly.graph_objs.table.Stream` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -730,7 +730,7 @@ def __init__( dict of properties compatible with this constructor or an instance of :class:`plotly.graph_objs.Table` cells - :class:`plotly.graph_objects.table.Cells` instance or + :class:`plotly.graph_objs.table.Cells` instance or dict with compatible properties columnorder Specifies the rendered order of the data columns; for @@ -756,10 +756,10 @@ def __init__( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.table.Domain` instance or + :class:`plotly.graph_objs.table.Domain` instance or dict with compatible properties header - :class:`plotly.graph_objects.table.Header` instance or + :class:`plotly.graph_objs.table.Header` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -770,7 +770,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.table.Hoverlabel` instance + :class:`plotly.graph_objs.table.Hoverlabel` instance or dict with compatible properties ids Assigns id labels to each datum. These ids for object @@ -786,7 +786,7 @@ def __init__( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.table.Legendgrouptitle` + :class:`plotly.graph_objs.table.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -822,7 +822,7 @@ def __init__( Sets the trace name. The trace name appears as the legend item and on hover. stream - :class:`plotly.graph_objects.table.Stream` instance or + :class:`plotly.graph_objs.table.Stream` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object diff --git a/plotly/graph_objs/_treemap.py b/plotly/graph_objs/_treemap.py index f6df8010ae..6c3f8e357b 100644 --- a/plotly/graph_objs/_treemap.py +++ b/plotly/graph_objs/_treemap.py @@ -1108,7 +1108,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.treemap.Domain` instance + :class:`plotly.graph_objs.treemap.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -1119,7 +1119,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.treemap.Hoverlabel` + :class:`plotly.graph_objs.treemap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1187,7 +1187,7 @@ def _prop_descriptions(self): the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.treemap.Legendgrouptitle` + :class:`plotly.graph_objs.treemap.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1210,7 +1210,7 @@ def _prop_descriptions(self): filled in, otherwise plotly attempts to find a matching item in `labels`. marker - :class:`plotly.graph_objects.treemap.Marker` instance + :class:`plotly.graph_objs.treemap.Marker` instance or dict with compatible properties maxdepth Sets the number of rendered sectors from any given @@ -1255,16 +1255,16 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `parents`. pathbar - :class:`plotly.graph_objects.treemap.Pathbar` instance + :class:`plotly.graph_objs.treemap.Pathbar` instance or dict with compatible properties root - :class:`plotly.graph_objects.treemap.Root` instance or + :class:`plotly.graph_objs.treemap.Root` instance or dict with compatible properties sort Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.treemap.Stream` instance + :class:`plotly.graph_objs.treemap.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -1304,7 +1304,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `texttemplate`. tiling - :class:`plotly.graph_objects.treemap.Tiling` instance + :class:`plotly.graph_objs.treemap.Tiling` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -1428,7 +1428,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `customdata`. domain - :class:`plotly.graph_objects.treemap.Domain` instance + :class:`plotly.graph_objs.treemap.Domain` instance or dict with compatible properties hoverinfo Determines which trace information appear on hover. If @@ -1439,7 +1439,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.treemap.Hoverlabel` + :class:`plotly.graph_objs.treemap.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1507,7 +1507,7 @@ def __init__( the layout, under `layout.legend`, `layout.legend2`, etc. legendgrouptitle - :class:`plotly.graph_objects.treemap.Legendgrouptitle` + :class:`plotly.graph_objs.treemap.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1530,7 +1530,7 @@ def __init__( filled in, otherwise plotly attempts to find a matching item in `labels`. marker - :class:`plotly.graph_objects.treemap.Marker` instance + :class:`plotly.graph_objs.treemap.Marker` instance or dict with compatible properties maxdepth Sets the number of rendered sectors from any given @@ -1575,16 +1575,16 @@ def __init__( Sets the source reference on Chart Studio Cloud for `parents`. pathbar - :class:`plotly.graph_objects.treemap.Pathbar` instance + :class:`plotly.graph_objs.treemap.Pathbar` instance or dict with compatible properties root - :class:`plotly.graph_objects.treemap.Root` instance or + :class:`plotly.graph_objs.treemap.Root` instance or dict with compatible properties sort Determines whether or not the sectors are reordered from largest to smallest. stream - :class:`plotly.graph_objects.treemap.Stream` instance + :class:`plotly.graph_objs.treemap.Stream` instance or dict with compatible properties text Sets text elements associated with each sector. If @@ -1624,7 +1624,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `texttemplate`. tiling - :class:`plotly.graph_objects.treemap.Tiling` instance + :class:`plotly.graph_objs.treemap.Tiling` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object diff --git a/plotly/graph_objs/_violin.py b/plotly/graph_objs/_violin.py index 3e83919e91..8b2423c37c 100644 --- a/plotly/graph_objs/_violin.py +++ b/plotly/graph_objs/_violin.py @@ -1412,7 +1412,7 @@ def _prop_descriptions(self): estimate. By default, the bandwidth is determined by Silverman's rule of thumb. box - :class:`plotly.graph_objects.violin.Box` instance or + :class:`plotly.graph_objs.violin.Box` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -1435,7 +1435,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.violin.Hoverlabel` + :class:`plotly.graph_objs.violin.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual violins or @@ -1501,7 +1501,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.violin.Legendgrouptitle` + :class:`plotly.graph_objs.violin.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1518,13 +1518,13 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.violin.Line` instance or + :class:`plotly.graph_objs.violin.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.violin.Marker` instance or + :class:`plotly.graph_objs.violin.Marker` instance or dict with compatible properties meanline - :class:`plotly.graph_objects.violin.Meanline` instance + :class:`plotly.graph_objs.violin.Meanline` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1606,7 +1606,7 @@ def _prop_descriptions(self): (max) width "count" means the violins are scaled by the number of sample points making up each violin. selected - :class:`plotly.graph_objects.violin.Selected` instance + :class:`plotly.graph_objs.violin.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -1638,7 +1638,7 @@ def _prop_descriptions(self): settings, use mode "manual" and fill in the `span` attribute. stream - :class:`plotly.graph_objects.violin.Stream` instance or + :class:`plotly.graph_objs.violin.Stream` instance or dict with compatible properties text Sets the text elements associated with each sample @@ -1673,7 +1673,7 @@ def _prop_descriptions(self): preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.violin.Unselected` + :class:`plotly.graph_objs.violin.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If @@ -1839,7 +1839,7 @@ def __init__( estimate. By default, the bandwidth is determined by Silverman's rule of thumb. box - :class:`plotly.graph_objects.violin.Box` instance or + :class:`plotly.graph_objs.violin.Box` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -1862,7 +1862,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.violin.Hoverlabel` + :class:`plotly.graph_objs.violin.Hoverlabel` instance or dict with compatible properties hoveron Do the hover effects highlight individual violins or @@ -1928,7 +1928,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.violin.Legendgrouptitle` + :class:`plotly.graph_objs.violin.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1945,13 +1945,13 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. line - :class:`plotly.graph_objects.violin.Line` instance or + :class:`plotly.graph_objs.violin.Line` instance or dict with compatible properties marker - :class:`plotly.graph_objects.violin.Marker` instance or + :class:`plotly.graph_objs.violin.Marker` instance or dict with compatible properties meanline - :class:`plotly.graph_objects.violin.Meanline` instance + :class:`plotly.graph_objs.violin.Meanline` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -2033,7 +2033,7 @@ def __init__( (max) width "count" means the violins are scaled by the number of sample points making up each violin. selected - :class:`plotly.graph_objects.violin.Selected` instance + :class:`plotly.graph_objs.violin.Selected` instance or dict with compatible properties selectedpoints Array containing integer indices of selected points. @@ -2065,7 +2065,7 @@ def __init__( settings, use mode "manual" and fill in the `span` attribute. stream - :class:`plotly.graph_objects.violin.Stream` instance or + :class:`plotly.graph_objs.violin.Stream` instance or dict with compatible properties text Sets the text elements associated with each sample @@ -2100,7 +2100,7 @@ def __init__( preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. unselected - :class:`plotly.graph_objects.violin.Unselected` + :class:`plotly.graph_objs.violin.Unselected` instance or dict with compatible properties visible Determines whether or not this trace is visible. If diff --git a/plotly/graph_objs/_volume.py b/plotly/graph_objs/_volume.py index 8e77cfba55..0a677fe2a2 100644 --- a/plotly/graph_objs/_volume.py +++ b/plotly/graph_objs/_volume.py @@ -1399,7 +1399,7 @@ def _prop_descriptions(self): chosen according to whether numbers in the `color` array are all positive, all negative or mixed. caps - :class:`plotly.graph_objects.volume.Caps` instance or + :class:`plotly.graph_objs.volume.Caps` instance or dict with compatible properties cauto Determines whether or not the color domain is computed @@ -1427,7 +1427,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.volume.ColorBar` instance + :class:`plotly.graph_objs.volume.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1442,7 +1442,7 @@ def _prop_descriptions(self): ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contour - :class:`plotly.graph_objects.volume.Contour` instance + :class:`plotly.graph_objs.volume.Contour` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -1465,7 +1465,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.volume.Hoverlabel` + :class:`plotly.graph_objs.volume.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1526,7 +1526,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.volume.Legendgrouptitle` + :class:`plotly.graph_objs.volume.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1543,10 +1543,10 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.volume.Lighting` instance + :class:`plotly.graph_objs.volume.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.volume.Lightposition` + :class:`plotly.graph_objs.volume.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -1603,16 +1603,16 @@ def _prop_descriptions(self): Determines whether or not a colorbar is displayed for this trace. slices - :class:`plotly.graph_objects.volume.Slices` instance or + :class:`plotly.graph_objs.volume.Slices` instance or dict with compatible properties spaceframe - :class:`plotly.graph_objects.volume.Spaceframe` + :class:`plotly.graph_objs.volume.Spaceframe` instance or dict with compatible properties stream - :class:`plotly.graph_objects.volume.Stream` instance or + :class:`plotly.graph_objs.volume.Stream` instance or dict with compatible properties surface - :class:`plotly.graph_objects.volume.Surface` instance + :class:`plotly.graph_objs.volume.Surface` instance or dict with compatible properties text Sets the text elements associated with the vertices. If @@ -1805,7 +1805,7 @@ def __init__( chosen according to whether numbers in the `color` array are all positive, all negative or mixed. caps - :class:`plotly.graph_objects.volume.Caps` instance or + :class:`plotly.graph_objs.volume.Caps` instance or dict with compatible properties cauto Determines whether or not the color domain is computed @@ -1833,7 +1833,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.volume.ColorBar` instance + :class:`plotly.graph_objs.volume.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -1848,7 +1848,7 @@ def __init__( ividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portl and,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd. contour - :class:`plotly.graph_objects.volume.Contour` instance + :class:`plotly.graph_objs.volume.Contour` instance or dict with compatible properties customdata Assigns extra data each datum. This may be useful when @@ -1871,7 +1871,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.volume.Hoverlabel` + :class:`plotly.graph_objs.volume.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1932,7 +1932,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.volume.Legendgrouptitle` + :class:`plotly.graph_objs.volume.Legendgrouptitle` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1949,10 +1949,10 @@ def __init__( Sets the width (in px or fraction) of the legend for this trace. lighting - :class:`plotly.graph_objects.volume.Lighting` instance + :class:`plotly.graph_objs.volume.Lighting` instance or dict with compatible properties lightposition - :class:`plotly.graph_objects.volume.Lightposition` + :class:`plotly.graph_objs.volume.Lightposition` instance or dict with compatible properties meta Assigns extra meta information associated with this @@ -2009,16 +2009,16 @@ def __init__( Determines whether or not a colorbar is displayed for this trace. slices - :class:`plotly.graph_objects.volume.Slices` instance or + :class:`plotly.graph_objs.volume.Slices` instance or dict with compatible properties spaceframe - :class:`plotly.graph_objects.volume.Spaceframe` + :class:`plotly.graph_objs.volume.Spaceframe` instance or dict with compatible properties stream - :class:`plotly.graph_objects.volume.Stream` instance or + :class:`plotly.graph_objs.volume.Stream` instance or dict with compatible properties surface - :class:`plotly.graph_objects.volume.Surface` instance + :class:`plotly.graph_objs.volume.Surface` instance or dict with compatible properties text Sets the text elements associated with the vertices. If diff --git a/plotly/graph_objs/_waterfall.py b/plotly/graph_objs/_waterfall.py index c37283badb..fecb646e76 100644 --- a/plotly/graph_objs/_waterfall.py +++ b/plotly/graph_objs/_waterfall.py @@ -1648,7 +1648,7 @@ def _prop_descriptions(self): and tick labels, make sure to set `xaxis.layer` and `yaxis.layer` to *below traces*. connector - :class:`plotly.graph_objects.waterfall.Connector` + :class:`plotly.graph_objs.waterfall.Connector` instance or dict with compatible properties constraintext Constrain the size of text inside or outside a bar to @@ -1662,7 +1662,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `customdata`. decreasing - :class:`plotly.graph_objects.waterfall.Decreasing` + :class:`plotly.graph_objs.waterfall.Decreasing` instance or dict with compatible properties dx Sets the x coordinate step. See `x0` for more info. @@ -1677,7 +1677,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.waterfall.Hoverlabel` + :class:`plotly.graph_objs.waterfall.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -1731,7 +1731,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `ids`. increasing - :class:`plotly.graph_objects.waterfall.Increasing` + :class:`plotly.graph_objs.waterfall.Increasing` instance or dict with compatible properties insidetextanchor Determines if texts are kept at center or start/end @@ -1749,7 +1749,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.waterfall.Legendgrouptitle + :class:`plotly.graph_objs.waterfall.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -1824,7 +1824,7 @@ def _prop_descriptions(self): Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.waterfall.Stream` instance + :class:`plotly.graph_objs.waterfall.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -1883,7 +1883,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `texttemplate`. totals - :class:`plotly.graph_objects.waterfall.Totals` instance + :class:`plotly.graph_objs.waterfall.Totals` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object @@ -2117,7 +2117,7 @@ def __init__( and tick labels, make sure to set `xaxis.layer` and `yaxis.layer` to *below traces*. connector - :class:`plotly.graph_objects.waterfall.Connector` + :class:`plotly.graph_objs.waterfall.Connector` instance or dict with compatible properties constraintext Constrain the size of text inside or outside a bar to @@ -2131,7 +2131,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `customdata`. decreasing - :class:`plotly.graph_objects.waterfall.Decreasing` + :class:`plotly.graph_objs.waterfall.Decreasing` instance or dict with compatible properties dx Sets the x coordinate step. See `x0` for more info. @@ -2146,7 +2146,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `hoverinfo`. hoverlabel - :class:`plotly.graph_objects.waterfall.Hoverlabel` + :class:`plotly.graph_objs.waterfall.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -2200,7 +2200,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `ids`. increasing - :class:`plotly.graph_objects.waterfall.Increasing` + :class:`plotly.graph_objs.waterfall.Increasing` instance or dict with compatible properties insidetextanchor Determines if texts are kept at center or start/end @@ -2218,7 +2218,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.waterfall.Legendgrouptitle + :class:`plotly.graph_objs.waterfall.Legendgrouptitle ` instance or dict with compatible properties legendrank Sets the legend rank for this trace. Items and groups @@ -2293,7 +2293,7 @@ def __init__( Determines whether or not an item corresponding to this trace is shown in the legend. stream - :class:`plotly.graph_objects.waterfall.Stream` instance + :class:`plotly.graph_objs.waterfall.Stream` instance or dict with compatible properties text Sets text elements associated with each (x,y) pair. If @@ -2352,7 +2352,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `texttemplate`. totals - :class:`plotly.graph_objects.waterfall.Totals` instance + :class:`plotly.graph_objs.waterfall.Totals` instance or dict with compatible properties uid Assign an id to this trace, Use this to provide object diff --git a/plotly/graph_objs/bar/_marker.py b/plotly/graph_objs/bar/_marker.py index a80880ea56..4beed8bcbc 100644 --- a/plotly/graph_objs/bar/_marker.py +++ b/plotly/graph_objs/bar/_marker.py @@ -470,7 +470,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.bar.marker.ColorBar` + :class:`plotly.graph_objs.bar.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -496,7 +496,7 @@ def _prop_descriptions(self): stack or relative barmode, the first trace to set cornerradius is used for the whole stack. line - :class:`plotly.graph_objects.bar.marker.Line` instance + :class:`plotly.graph_objs.bar.marker.Line` instance or dict with compatible properties opacity Sets the opacity of the bars. @@ -594,7 +594,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.bar.marker.ColorBar` + :class:`plotly.graph_objs.bar.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -620,7 +620,7 @@ def __init__( stack or relative barmode, the first trace to set cornerradius is used for the whole stack. line - :class:`plotly.graph_objects.bar.marker.Line` instance + :class:`plotly.graph_objs.bar.marker.Line` instance or dict with compatible properties opacity Sets the opacity of the bars. diff --git a/plotly/graph_objs/bar/_selected.py b/plotly/graph_objs/bar/_selected.py index df30936a7b..1295132780 100644 --- a/plotly/graph_objs/bar/_selected.py +++ b/plotly/graph_objs/bar/_selected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.bar.selected.Marker` + :class:`plotly.graph_objs.bar.selected.Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.bar.selected.Textfont` + :class:`plotly.graph_objs.bar.selected.Textfont` instance or dict with compatible properties """ @@ -69,10 +69,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): dict of properties compatible with this constructor or an instance of :class:`plotly.graph_objs.bar.Selected` marker - :class:`plotly.graph_objects.bar.selected.Marker` + :class:`plotly.graph_objs.bar.selected.Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.bar.selected.Textfont` + :class:`plotly.graph_objs.bar.selected.Textfont` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/bar/_unselected.py b/plotly/graph_objs/bar/_unselected.py index 9bd645d47c..8de779a0a0 100644 --- a/plotly/graph_objs/bar/_unselected.py +++ b/plotly/graph_objs/bar/_unselected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.bar.unselected.Marker` + :class:`plotly.graph_objs.bar.unselected.Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.bar.unselected.Textfont` + :class:`plotly.graph_objs.bar.unselected.Textfont` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.bar.Unselected` marker - :class:`plotly.graph_objects.bar.unselected.Marker` + :class:`plotly.graph_objs.bar.unselected.Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.bar.unselected.Textfont` + :class:`plotly.graph_objs.bar.unselected.Textfont` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/bar/marker/_colorbar.py b/plotly/graph_objs/bar/marker/_colorbar.py index 529a71438c..4a69a3466e 100644 --- a/plotly/graph_objs/bar/marker/_colorbar.py +++ b/plotly/graph_objs/bar/marker/_colorbar.py @@ -1231,7 +1231,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.bar.marker.colo + A tuple of :class:`plotly.graph_objs.bar.marker.colo rbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1294,7 +1294,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.bar.marker.colorbar.Title` + :class:`plotly.graph_objs.bar.marker.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1534,7 +1534,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.bar.marker.colo + A tuple of :class:`plotly.graph_objs.bar.marker.colo rbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1597,7 +1597,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.bar.marker.colorbar.Title` + :class:`plotly.graph_objs.bar.marker.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/barpolar/_marker.py b/plotly/graph_objs/barpolar/_marker.py index 5015e40df1..5384118ad8 100644 --- a/plotly/graph_objs/barpolar/_marker.py +++ b/plotly/graph_objs/barpolar/_marker.py @@ -448,7 +448,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.barpolar.marker.ColorBar` + :class:`plotly.graph_objs.barpolar.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -468,7 +468,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `color`. line - :class:`plotly.graph_objects.barpolar.marker.Line` + :class:`plotly.graph_objs.barpolar.marker.Line` instance or dict with compatible properties opacity Sets the opacity of the bars. @@ -566,7 +566,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.barpolar.marker.ColorBar` + :class:`plotly.graph_objs.barpolar.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -586,7 +586,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `color`. line - :class:`plotly.graph_objects.barpolar.marker.Line` + :class:`plotly.graph_objs.barpolar.marker.Line` instance or dict with compatible properties opacity Sets the opacity of the bars. diff --git a/plotly/graph_objs/barpolar/_selected.py b/plotly/graph_objs/barpolar/_selected.py index 60132e32cd..81f19f3215 100644 --- a/plotly/graph_objs/barpolar/_selected.py +++ b/plotly/graph_objs/barpolar/_selected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.barpolar.selected.Marker` + :class:`plotly.graph_objs.barpolar.selected.Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.barpolar.selected.Textfont + :class:`plotly.graph_objs.barpolar.selected.Textfont ` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.barpolar.Selected` marker - :class:`plotly.graph_objects.barpolar.selected.Marker` + :class:`plotly.graph_objs.barpolar.selected.Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.barpolar.selected.Textfont + :class:`plotly.graph_objs.barpolar.selected.Textfont ` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/barpolar/_unselected.py b/plotly/graph_objs/barpolar/_unselected.py index ef4cde928b..364cd67678 100644 --- a/plotly/graph_objs/barpolar/_unselected.py +++ b/plotly/graph_objs/barpolar/_unselected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.barpolar.unselected.Marker + :class:`plotly.graph_objs.barpolar.unselected.Marker ` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.barpolar.unselected.Textfo + :class:`plotly.graph_objs.barpolar.unselected.Textfo nt` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.barpolar.Unselected` marker - :class:`plotly.graph_objects.barpolar.unselected.Marker + :class:`plotly.graph_objs.barpolar.unselected.Marker ` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.barpolar.unselected.Textfo + :class:`plotly.graph_objs.barpolar.unselected.Textfo nt` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/barpolar/marker/_colorbar.py b/plotly/graph_objs/barpolar/marker/_colorbar.py index 112445da01..cf3c483022 100644 --- a/plotly/graph_objs/barpolar/marker/_colorbar.py +++ b/plotly/graph_objs/barpolar/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.barpolar.marker + A tuple of :class:`plotly.graph_objs.barpolar.marker .colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.barpolar.marker.colorbar.T + :class:`plotly.graph_objs.barpolar.marker.colorbar.T itle` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.barpolar.marker + A tuple of :class:`plotly.graph_objs.barpolar.marker .colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.barpolar.marker.colorbar.T + :class:`plotly.graph_objs.barpolar.marker.colorbar.T itle` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/box/_marker.py b/plotly/graph_objs/box/_marker.py index eaf4f80d4f..4fe9bc9ef9 100644 --- a/plotly/graph_objs/box/_marker.py +++ b/plotly/graph_objs/box/_marker.py @@ -262,7 +262,7 @@ def _prop_descriptions(self): array or relative to `marker.cmin` and `marker.cmax` if set. line - :class:`plotly.graph_objects.box.marker.Line` instance + :class:`plotly.graph_objs.box.marker.Line` instance or dict with compatible properties opacity Sets the marker opacity. @@ -307,7 +307,7 @@ def __init__( array or relative to `marker.cmin` and `marker.cmax` if set. line - :class:`plotly.graph_objects.box.marker.Line` instance + :class:`plotly.graph_objs.box.marker.Line` instance or dict with compatible properties opacity Sets the marker opacity. diff --git a/plotly/graph_objs/box/_selected.py b/plotly/graph_objs/box/_selected.py index cb94773b85..b632e7d875 100644 --- a/plotly/graph_objs/box/_selected.py +++ b/plotly/graph_objs/box/_selected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.box.selected.Marker` + :class:`plotly.graph_objs.box.selected.Marker` instance or dict with compatible properties """ @@ -47,7 +47,7 @@ def __init__(self, arg=None, marker=None, **kwargs): dict of properties compatible with this constructor or an instance of :class:`plotly.graph_objs.box.Selected` marker - :class:`plotly.graph_objects.box.selected.Marker` + :class:`plotly.graph_objs.box.selected.Marker` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/box/_unselected.py b/plotly/graph_objs/box/_unselected.py index 9db72eb450..dd0f329345 100644 --- a/plotly/graph_objs/box/_unselected.py +++ b/plotly/graph_objs/box/_unselected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.box.unselected.Marker` + :class:`plotly.graph_objs.box.unselected.Marker` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.box.Unselected` marker - :class:`plotly.graph_objects.box.unselected.Marker` + :class:`plotly.graph_objs.box.unselected.Marker` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/candlestick/_decreasing.py b/plotly/graph_objs/candlestick/_decreasing.py index c801692156..cf30bc66aa 100644 --- a/plotly/graph_objs/candlestick/_decreasing.py +++ b/plotly/graph_objs/candlestick/_decreasing.py @@ -61,7 +61,7 @@ def _prop_descriptions(self): variant of the line color, marker color, or marker line color, whichever is available. line - :class:`plotly.graph_objects.candlestick.decreasing.Lin + :class:`plotly.graph_objs.candlestick.decreasing.Lin e` instance or dict with compatible properties """ @@ -80,7 +80,7 @@ def __init__(self, arg=None, fillcolor=None, line=None, **kwargs): variant of the line color, marker color, or marker line color, whichever is available. line - :class:`plotly.graph_objects.candlestick.decreasing.Lin + :class:`plotly.graph_objs.candlestick.decreasing.Lin e` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/candlestick/_increasing.py b/plotly/graph_objs/candlestick/_increasing.py index 547e846a99..b4707aad9d 100644 --- a/plotly/graph_objs/candlestick/_increasing.py +++ b/plotly/graph_objs/candlestick/_increasing.py @@ -61,7 +61,7 @@ def _prop_descriptions(self): variant of the line color, marker color, or marker line color, whichever is available. line - :class:`plotly.graph_objects.candlestick.increasing.Lin + :class:`plotly.graph_objs.candlestick.increasing.Lin e` instance or dict with compatible properties """ @@ -80,7 +80,7 @@ def __init__(self, arg=None, fillcolor=None, line=None, **kwargs): variant of the line color, marker color, or marker line color, whichever is available. line - :class:`plotly.graph_objects.candlestick.increasing.Lin + :class:`plotly.graph_objs.candlestick.increasing.Lin e` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/carpet/_aaxis.py b/plotly/graph_objs/carpet/_aaxis.py index f10597ef65..30befacab7 100644 --- a/plotly/graph_objs/carpet/_aaxis.py +++ b/plotly/graph_objs/carpet/_aaxis.py @@ -1439,7 +1439,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.carpet.aaxis.Ti + A tuple of :class:`plotly.graph_objs.carpet.aaxis.Ti ckformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1468,7 +1468,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `tickvals`. title - :class:`plotly.graph_objects.carpet.aaxis.Title` + :class:`plotly.graph_objs.carpet.aaxis.Title` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to @@ -1728,7 +1728,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.carpet.aaxis.Ti + A tuple of :class:`plotly.graph_objs.carpet.aaxis.Ti ckformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1757,7 +1757,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `tickvals`. title - :class:`plotly.graph_objects.carpet.aaxis.Title` + :class:`plotly.graph_objs.carpet.aaxis.Title` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to diff --git a/plotly/graph_objs/carpet/_baxis.py b/plotly/graph_objs/carpet/_baxis.py index f268f69833..76e84aa328 100644 --- a/plotly/graph_objs/carpet/_baxis.py +++ b/plotly/graph_objs/carpet/_baxis.py @@ -1439,7 +1439,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.carpet.baxis.Ti + A tuple of :class:`plotly.graph_objs.carpet.baxis.Ti ckformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1468,7 +1468,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `tickvals`. title - :class:`plotly.graph_objects.carpet.baxis.Title` + :class:`plotly.graph_objs.carpet.baxis.Title` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to @@ -1728,7 +1728,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.carpet.baxis.Ti + A tuple of :class:`plotly.graph_objs.carpet.baxis.Ti ckformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1757,7 +1757,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `tickvals`. title - :class:`plotly.graph_objects.carpet.baxis.Title` + :class:`plotly.graph_objs.carpet.baxis.Title` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to diff --git a/plotly/graph_objs/choropleth/_colorbar.py b/plotly/graph_objs/choropleth/_colorbar.py index 615e866b48..3e2ec6e27a 100644 --- a/plotly/graph_objs/choropleth/_colorbar.py +++ b/plotly/graph_objs/choropleth/_colorbar.py @@ -1231,7 +1231,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.choropleth.colo + A tuple of :class:`plotly.graph_objs.choropleth.colo rbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1294,7 +1294,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.choropleth.colorbar.Title` + :class:`plotly.graph_objs.choropleth.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1534,7 +1534,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.choropleth.colo + A tuple of :class:`plotly.graph_objs.choropleth.colo rbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1597,7 +1597,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.choropleth.colorbar.Title` + :class:`plotly.graph_objs.choropleth.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/choropleth/_marker.py b/plotly/graph_objs/choropleth/_marker.py index 212bde1253..a7a5739062 100644 --- a/plotly/graph_objs/choropleth/_marker.py +++ b/plotly/graph_objs/choropleth/_marker.py @@ -70,7 +70,7 @@ def opacitysrc(self, val): def _prop_descriptions(self): return """\ line - :class:`plotly.graph_objects.choropleth.marker.Line` + :class:`plotly.graph_objs.choropleth.marker.Line` instance or dict with compatible properties opacity Sets the opacity of the locations. @@ -90,7 +90,7 @@ def __init__(self, arg=None, line=None, opacity=None, opacitysrc=None, **kwargs) an instance of :class:`plotly.graph_objs.choropleth.Marker` line - :class:`plotly.graph_objects.choropleth.marker.Line` + :class:`plotly.graph_objs.choropleth.marker.Line` instance or dict with compatible properties opacity Sets the opacity of the locations. diff --git a/plotly/graph_objs/choropleth/_selected.py b/plotly/graph_objs/choropleth/_selected.py index ff0cafd515..4d21d2956a 100644 --- a/plotly/graph_objs/choropleth/_selected.py +++ b/plotly/graph_objs/choropleth/_selected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.choropleth.selected.Marker + :class:`plotly.graph_objs.choropleth.selected.Marker ` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.choropleth.Selected` marker - :class:`plotly.graph_objects.choropleth.selected.Marker + :class:`plotly.graph_objs.choropleth.selected.Marker ` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/choropleth/_unselected.py b/plotly/graph_objs/choropleth/_unselected.py index 68ef597c4b..fe1bd3c7f0 100644 --- a/plotly/graph_objs/choropleth/_unselected.py +++ b/plotly/graph_objs/choropleth/_unselected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.choropleth.unselected.Mark + :class:`plotly.graph_objs.choropleth.unselected.Mark er` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.choropleth.Unselected` marker - :class:`plotly.graph_objects.choropleth.unselected.Mark + :class:`plotly.graph_objs.choropleth.unselected.Mark er` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/choroplethmap/_colorbar.py b/plotly/graph_objs/choroplethmap/_colorbar.py index 1a40618937..051fdb1c71 100644 --- a/plotly/graph_objs/choroplethmap/_colorbar.py +++ b/plotly/graph_objs/choroplethmap/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.choroplethmap.c + A tuple of :class:`plotly.graph_objs.choroplethmap.c olorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.choroplethmap.colorbar.Tit + :class:`plotly.graph_objs.choroplethmap.colorbar.Tit le` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.choroplethmap.c + A tuple of :class:`plotly.graph_objs.choroplethmap.c olorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.choroplethmap.colorbar.Tit + :class:`plotly.graph_objs.choroplethmap.colorbar.Tit le` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/choroplethmap/_marker.py b/plotly/graph_objs/choroplethmap/_marker.py index 0f7f498b92..32ac9b0022 100644 --- a/plotly/graph_objs/choroplethmap/_marker.py +++ b/plotly/graph_objs/choroplethmap/_marker.py @@ -70,7 +70,7 @@ def opacitysrc(self, val): def _prop_descriptions(self): return """\ line - :class:`plotly.graph_objects.choroplethmap.marker.Line` + :class:`plotly.graph_objs.choroplethmap.marker.Line` instance or dict with compatible properties opacity Sets the opacity of the locations. @@ -90,7 +90,7 @@ def __init__(self, arg=None, line=None, opacity=None, opacitysrc=None, **kwargs) an instance of :class:`plotly.graph_objs.choroplethmap.Marker` line - :class:`plotly.graph_objects.choroplethmap.marker.Line` + :class:`plotly.graph_objs.choroplethmap.marker.Line` instance or dict with compatible properties opacity Sets the opacity of the locations. diff --git a/plotly/graph_objs/choroplethmap/_selected.py b/plotly/graph_objs/choroplethmap/_selected.py index e68c38fe48..727e380eab 100644 --- a/plotly/graph_objs/choroplethmap/_selected.py +++ b/plotly/graph_objs/choroplethmap/_selected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.choroplethmap.selected.Mar + :class:`plotly.graph_objs.choroplethmap.selected.Mar ker` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.choroplethmap.Selected` marker - :class:`plotly.graph_objects.choroplethmap.selected.Mar + :class:`plotly.graph_objs.choroplethmap.selected.Mar ker` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/choroplethmap/_unselected.py b/plotly/graph_objs/choroplethmap/_unselected.py index fcbf6a8fb8..410860d2d6 100644 --- a/plotly/graph_objs/choroplethmap/_unselected.py +++ b/plotly/graph_objs/choroplethmap/_unselected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.choroplethmap.unselected.M + :class:`plotly.graph_objs.choroplethmap.unselected.M arker` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.choroplethmap.Unselected` marker - :class:`plotly.graph_objects.choroplethmap.unselected.M + :class:`plotly.graph_objs.choroplethmap.unselected.M arker` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/choroplethmapbox/_colorbar.py b/plotly/graph_objs/choroplethmapbox/_colorbar.py index 135c8518ac..0a27e6a6de 100644 --- a/plotly/graph_objs/choroplethmapbox/_colorbar.py +++ b/plotly/graph_objs/choroplethmapbox/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.choroplethmapbo + A tuple of :class:`plotly.graph_objs.choroplethmapbo x.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.choroplethmapbox.colorbar. + :class:`plotly.graph_objs.choroplethmapbox.colorbar. Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.choroplethmapbo + A tuple of :class:`plotly.graph_objs.choroplethmapbo x.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.choroplethmapbox.colorbar. + :class:`plotly.graph_objs.choroplethmapbox.colorbar. Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/choroplethmapbox/_marker.py b/plotly/graph_objs/choroplethmapbox/_marker.py index d4b24d4d30..4fe101c1cc 100644 --- a/plotly/graph_objs/choroplethmapbox/_marker.py +++ b/plotly/graph_objs/choroplethmapbox/_marker.py @@ -70,7 +70,7 @@ def opacitysrc(self, val): def _prop_descriptions(self): return """\ line - :class:`plotly.graph_objects.choroplethmapbox.marker.Li + :class:`plotly.graph_objs.choroplethmapbox.marker.Li ne` instance or dict with compatible properties opacity Sets the opacity of the locations. @@ -90,7 +90,7 @@ def __init__(self, arg=None, line=None, opacity=None, opacitysrc=None, **kwargs) an instance of :class:`plotly.graph_objs.choroplethmapbox.Marker` line - :class:`plotly.graph_objects.choroplethmapbox.marker.Li + :class:`plotly.graph_objs.choroplethmapbox.marker.Li ne` instance or dict with compatible properties opacity Sets the opacity of the locations. diff --git a/plotly/graph_objs/choroplethmapbox/_selected.py b/plotly/graph_objs/choroplethmapbox/_selected.py index d7c4b13009..5fe893b6c2 100644 --- a/plotly/graph_objs/choroplethmapbox/_selected.py +++ b/plotly/graph_objs/choroplethmapbox/_selected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.choroplethmapbox.selected. + :class:`plotly.graph_objs.choroplethmapbox.selected. Marker` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.choroplethmapbox.Selected` marker - :class:`plotly.graph_objects.choroplethmapbox.selected. + :class:`plotly.graph_objs.choroplethmapbox.selected. Marker` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/choroplethmapbox/_unselected.py b/plotly/graph_objs/choroplethmapbox/_unselected.py index ad22ba4cda..89bf06aab7 100644 --- a/plotly/graph_objs/choroplethmapbox/_unselected.py +++ b/plotly/graph_objs/choroplethmapbox/_unselected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.choroplethmapbox.unselecte + :class:`plotly.graph_objs.choroplethmapbox.unselecte d.Marker` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.choroplethmapbox.Unselected` marker - :class:`plotly.graph_objects.choroplethmapbox.unselecte + :class:`plotly.graph_objs.choroplethmapbox.unselecte d.Marker` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/cone/_colorbar.py b/plotly/graph_objs/cone/_colorbar.py index 8fa81054c5..fa61736a12 100644 --- a/plotly/graph_objs/cone/_colorbar.py +++ b/plotly/graph_objs/cone/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.cone.colorbar.T + A tuple of :class:`plotly.graph_objs.cone.colorbar.T ickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.cone.colorbar.Title` + :class:`plotly.graph_objs.cone.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1534,7 +1534,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.cone.colorbar.T + A tuple of :class:`plotly.graph_objs.cone.colorbar.T ickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1597,7 +1597,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.cone.colorbar.Title` + :class:`plotly.graph_objs.cone.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/contour/_colorbar.py b/plotly/graph_objs/contour/_colorbar.py index 6c36df4d5c..4755c16336 100644 --- a/plotly/graph_objs/contour/_colorbar.py +++ b/plotly/graph_objs/contour/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.contour.colorba + A tuple of :class:`plotly.graph_objs.contour.colorba r.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.contour.colorbar.Title` + :class:`plotly.graph_objs.contour.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.contour.colorba + A tuple of :class:`plotly.graph_objs.contour.colorba r.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.contour.colorbar.Title` + :class:`plotly.graph_objs.contour.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/contourcarpet/_colorbar.py b/plotly/graph_objs/contourcarpet/_colorbar.py index 0ae312257b..db4715ac1e 100644 --- a/plotly/graph_objs/contourcarpet/_colorbar.py +++ b/plotly/graph_objs/contourcarpet/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.contourcarpet.c + A tuple of :class:`plotly.graph_objs.contourcarpet.c olorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.contourcarpet.colorbar.Tit + :class:`plotly.graph_objs.contourcarpet.colorbar.Tit le` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.contourcarpet.c + A tuple of :class:`plotly.graph_objs.contourcarpet.c olorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.contourcarpet.colorbar.Tit + :class:`plotly.graph_objs.contourcarpet.colorbar.Tit le` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/densitymap/_colorbar.py b/plotly/graph_objs/densitymap/_colorbar.py index 750416e7f2..6d3c9c6d37 100644 --- a/plotly/graph_objs/densitymap/_colorbar.py +++ b/plotly/graph_objs/densitymap/_colorbar.py @@ -1231,7 +1231,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.densitymap.colo + A tuple of :class:`plotly.graph_objs.densitymap.colo rbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1294,7 +1294,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.densitymap.colorbar.Title` + :class:`plotly.graph_objs.densitymap.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1534,7 +1534,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.densitymap.colo + A tuple of :class:`plotly.graph_objs.densitymap.colo rbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1597,7 +1597,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.densitymap.colorbar.Title` + :class:`plotly.graph_objs.densitymap.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/densitymapbox/_colorbar.py b/plotly/graph_objs/densitymapbox/_colorbar.py index a6c1f873d8..1a5572efe0 100644 --- a/plotly/graph_objs/densitymapbox/_colorbar.py +++ b/plotly/graph_objs/densitymapbox/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.densitymapbox.c + A tuple of :class:`plotly.graph_objs.densitymapbox.c olorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.densitymapbox.colorbar.Tit + :class:`plotly.graph_objs.densitymapbox.colorbar.Tit le` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.densitymapbox.c + A tuple of :class:`plotly.graph_objs.densitymapbox.c olorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.densitymapbox.colorbar.Tit + :class:`plotly.graph_objs.densitymapbox.colorbar.Tit le` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/funnel/_connector.py b/plotly/graph_objs/funnel/_connector.py index c19f43133b..2290e12325 100644 --- a/plotly/graph_objs/funnel/_connector.py +++ b/plotly/graph_objs/funnel/_connector.py @@ -75,7 +75,7 @@ def _prop_descriptions(self): fillcolor Sets the fill color. line - :class:`plotly.graph_objects.funnel.connector.Line` + :class:`plotly.graph_objs.funnel.connector.Line` instance or dict with compatible properties visible Determines if connector regions and lines are drawn. @@ -94,7 +94,7 @@ def __init__(self, arg=None, fillcolor=None, line=None, visible=None, **kwargs): fillcolor Sets the fill color. line - :class:`plotly.graph_objects.funnel.connector.Line` + :class:`plotly.graph_objs.funnel.connector.Line` instance or dict with compatible properties visible Determines if connector regions and lines are drawn. diff --git a/plotly/graph_objs/funnel/_marker.py b/plotly/graph_objs/funnel/_marker.py index 631cc28fdb..71e669b0e2 100644 --- a/plotly/graph_objs/funnel/_marker.py +++ b/plotly/graph_objs/funnel/_marker.py @@ -426,7 +426,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.funnel.marker.ColorBar` + :class:`plotly.graph_objs.funnel.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -446,7 +446,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `color`. line - :class:`plotly.graph_objects.funnel.marker.Line` + :class:`plotly.graph_objs.funnel.marker.Line` instance or dict with compatible properties opacity Sets the opacity of the bars. @@ -540,7 +540,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.funnel.marker.ColorBar` + :class:`plotly.graph_objs.funnel.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -560,7 +560,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `color`. line - :class:`plotly.graph_objects.funnel.marker.Line` + :class:`plotly.graph_objs.funnel.marker.Line` instance or dict with compatible properties opacity Sets the opacity of the bars. diff --git a/plotly/graph_objs/funnel/marker/_colorbar.py b/plotly/graph_objs/funnel/marker/_colorbar.py index 9db280e9fe..3819b57f95 100644 --- a/plotly/graph_objs/funnel/marker/_colorbar.py +++ b/plotly/graph_objs/funnel/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.funnel.marker.c + A tuple of :class:`plotly.graph_objs.funnel.marker.c olorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.funnel.marker.colorbar.Tit + :class:`plotly.graph_objs.funnel.marker.colorbar.Tit le` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.funnel.marker.c + A tuple of :class:`plotly.graph_objs.funnel.marker.c olorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.funnel.marker.colorbar.Tit + :class:`plotly.graph_objs.funnel.marker.colorbar.Tit le` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/funnelarea/_marker.py b/plotly/graph_objs/funnelarea/_marker.py index ca38cf7751..ec50b39970 100644 --- a/plotly/graph_objs/funnelarea/_marker.py +++ b/plotly/graph_objs/funnelarea/_marker.py @@ -98,7 +98,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `colors`. line - :class:`plotly.graph_objects.funnelarea.marker.Line` + :class:`plotly.graph_objs.funnelarea.marker.Line` instance or dict with compatible properties pattern Sets the pattern within the marker. @@ -124,7 +124,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `colors`. line - :class:`plotly.graph_objects.funnelarea.marker.Line` + :class:`plotly.graph_objs.funnelarea.marker.Line` instance or dict with compatible properties pattern Sets the pattern within the marker. diff --git a/plotly/graph_objs/heatmap/_colorbar.py b/plotly/graph_objs/heatmap/_colorbar.py index c75db3860f..66a276e06f 100644 --- a/plotly/graph_objs/heatmap/_colorbar.py +++ b/plotly/graph_objs/heatmap/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.heatmap.colorba + A tuple of :class:`plotly.graph_objs.heatmap.colorba r.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.heatmap.colorbar.Title` + :class:`plotly.graph_objs.heatmap.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.heatmap.colorba + A tuple of :class:`plotly.graph_objs.heatmap.colorba r.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.heatmap.colorbar.Title` + :class:`plotly.graph_objs.heatmap.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/histogram/_marker.py b/plotly/graph_objs/histogram/_marker.py index 4606fa6602..9d5ef2336f 100644 --- a/plotly/graph_objs/histogram/_marker.py +++ b/plotly/graph_objs/histogram/_marker.py @@ -470,7 +470,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.histogram.marker.ColorBar` + :class:`plotly.graph_objs.histogram.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -496,7 +496,7 @@ def _prop_descriptions(self): stack or relative barmode, the first trace to set cornerradius is used for the whole stack. line - :class:`plotly.graph_objects.histogram.marker.Line` + :class:`plotly.graph_objs.histogram.marker.Line` instance or dict with compatible properties opacity Sets the opacity of the bars. @@ -595,7 +595,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.histogram.marker.ColorBar` + :class:`plotly.graph_objs.histogram.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -621,7 +621,7 @@ def __init__( stack or relative barmode, the first trace to set cornerradius is used for the whole stack. line - :class:`plotly.graph_objects.histogram.marker.Line` + :class:`plotly.graph_objs.histogram.marker.Line` instance or dict with compatible properties opacity Sets the opacity of the bars. diff --git a/plotly/graph_objs/histogram/_selected.py b/plotly/graph_objs/histogram/_selected.py index b99df320d2..95ad097dfc 100644 --- a/plotly/graph_objs/histogram/_selected.py +++ b/plotly/graph_objs/histogram/_selected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.histogram.selected.Marker` + :class:`plotly.graph_objs.histogram.selected.Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.histogram.selected.Textfon + :class:`plotly.graph_objs.histogram.selected.Textfon t` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.histogram.Selected` marker - :class:`plotly.graph_objects.histogram.selected.Marker` + :class:`plotly.graph_objs.histogram.selected.Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.histogram.selected.Textfon + :class:`plotly.graph_objs.histogram.selected.Textfon t` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/histogram/_unselected.py b/plotly/graph_objs/histogram/_unselected.py index a9e93418ce..8a3aee5f13 100644 --- a/plotly/graph_objs/histogram/_unselected.py +++ b/plotly/graph_objs/histogram/_unselected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.histogram.unselected.Marke + :class:`plotly.graph_objs.histogram.unselected.Marke r` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.histogram.unselected.Textf + :class:`plotly.graph_objs.histogram.unselected.Textf ont` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.histogram.Unselected` marker - :class:`plotly.graph_objects.histogram.unselected.Marke + :class:`plotly.graph_objs.histogram.unselected.Marke r` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.histogram.unselected.Textf + :class:`plotly.graph_objs.histogram.unselected.Textf ont` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/histogram/marker/_colorbar.py b/plotly/graph_objs/histogram/marker/_colorbar.py index 80eba66ad4..386a4e68f3 100644 --- a/plotly/graph_objs/histogram/marker/_colorbar.py +++ b/plotly/graph_objs/histogram/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.histogram.marke + A tuple of :class:`plotly.graph_objs.histogram.marke r.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.histogram.marker.colorbar. + :class:`plotly.graph_objs.histogram.marker.colorbar. Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.histogram.marke + A tuple of :class:`plotly.graph_objs.histogram.marke r.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.histogram.marker.colorbar. + :class:`plotly.graph_objs.histogram.marker.colorbar. Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/histogram2d/_colorbar.py b/plotly/graph_objs/histogram2d/_colorbar.py index f8b92981b7..c2f62af29a 100644 --- a/plotly/graph_objs/histogram2d/_colorbar.py +++ b/plotly/graph_objs/histogram2d/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.histogram2d.col + A tuple of :class:`plotly.graph_objs.histogram2d.col orbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.histogram2d.colorbar.Title + :class:`plotly.graph_objs.histogram2d.colorbar.Title ` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.histogram2d.col + A tuple of :class:`plotly.graph_objs.histogram2d.col orbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.histogram2d.colorbar.Title + :class:`plotly.graph_objs.histogram2d.colorbar.Title ` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/histogram2dcontour/_colorbar.py b/plotly/graph_objs/histogram2dcontour/_colorbar.py index 0fe4f0ed0e..183e89fa0d 100644 --- a/plotly/graph_objs/histogram2dcontour/_colorbar.py +++ b/plotly/graph_objs/histogram2dcontour/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.histogram2dcont + A tuple of :class:`plotly.graph_objs.histogram2dcont our.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.histogram2dcontour.colorba + :class:`plotly.graph_objs.histogram2dcontour.colorba r.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.histogram2dcont + A tuple of :class:`plotly.graph_objs.histogram2dcont our.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.histogram2dcontour.colorba + :class:`plotly.graph_objs.histogram2dcontour.colorba r.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/icicle/_marker.py b/plotly/graph_objs/icicle/_marker.py index 15330a6202..8bda6386be 100644 --- a/plotly/graph_objs/icicle/_marker.py +++ b/plotly/graph_objs/icicle/_marker.py @@ -390,7 +390,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.icicle.marker.ColorBar` + :class:`plotly.graph_objs.icicle.marker.ColorBar` instance or dict with compatible properties colors Sets the color of each sector of this trace. If not @@ -414,7 +414,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `colors`. line - :class:`plotly.graph_objects.icicle.marker.Line` + :class:`plotly.graph_objs.icicle.marker.Line` instance or dict with compatible properties pattern Sets the pattern within the marker. @@ -497,7 +497,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.icicle.marker.ColorBar` + :class:`plotly.graph_objs.icicle.marker.ColorBar` instance or dict with compatible properties colors Sets the color of each sector of this trace. If not @@ -521,7 +521,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `colors`. line - :class:`plotly.graph_objects.icicle.marker.Line` + :class:`plotly.graph_objs.icicle.marker.Line` instance or dict with compatible properties pattern Sets the pattern within the marker. diff --git a/plotly/graph_objs/icicle/_pathbar.py b/plotly/graph_objs/icicle/_pathbar.py index 828c24f909..bd914b3409 100644 --- a/plotly/graph_objs/icicle/_pathbar.py +++ b/plotly/graph_objs/icicle/_pathbar.py @@ -33,7 +33,7 @@ def edgeshape(self, val): @property def side(self): """ - Determines on which side of the the treemap the `pathbar` + Determines on which side of the treemap the `pathbar` should be presented. The 'side' property is an enumeration that may be specified as: @@ -117,7 +117,7 @@ def _prop_descriptions(self): Determines which shape is used for edges between `barpath` labels. side - Determines on which side of the the treemap the + Determines on which side of the treemap the `pathbar` should be presented. textfont Sets the font used inside `pathbar`. @@ -153,7 +153,7 @@ def __init__( Determines which shape is used for edges between `barpath` labels. side - Determines on which side of the the treemap the + Determines on which side of the treemap the `pathbar` should be presented. textfont Sets the font used inside `pathbar`. diff --git a/plotly/graph_objs/icicle/marker/_colorbar.py b/plotly/graph_objs/icicle/marker/_colorbar.py index 848f59a212..917a318d76 100644 --- a/plotly/graph_objs/icicle/marker/_colorbar.py +++ b/plotly/graph_objs/icicle/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.icicle.marker.c + A tuple of :class:`plotly.graph_objs.icicle.marker.c olorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.icicle.marker.colorbar.Tit + :class:`plotly.graph_objs.icicle.marker.colorbar.Tit le` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.icicle.marker.c + A tuple of :class:`plotly.graph_objs.icicle.marker.c olorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.icicle.marker.colorbar.Tit + :class:`plotly.graph_objs.icicle.marker.colorbar.Tit le` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/indicator/_delta.py b/plotly/graph_objs/indicator/_delta.py index 97ff3e1071..47c5a51ae4 100644 --- a/plotly/graph_objs/indicator/_delta.py +++ b/plotly/graph_objs/indicator/_delta.py @@ -199,12 +199,12 @@ def valueformat(self, val): def _prop_descriptions(self): return """\ decreasing - :class:`plotly.graph_objects.indicator.delta.Decreasing + :class:`plotly.graph_objs.indicator.delta.Decreasing ` instance or dict with compatible properties font Set the font used to display the delta increasing - :class:`plotly.graph_objects.indicator.delta.Increasing + :class:`plotly.graph_objs.indicator.delta.Increasing ` instance or dict with compatible properties position Sets the position of delta with respect to the number. @@ -248,12 +248,12 @@ def __init__( an instance of :class:`plotly.graph_objs.indicator.Delta` decreasing - :class:`plotly.graph_objects.indicator.delta.Decreasing + :class:`plotly.graph_objs.indicator.delta.Decreasing ` instance or dict with compatible properties font Set the font used to display the delta increasing - :class:`plotly.graph_objects.indicator.delta.Increasing + :class:`plotly.graph_objs.indicator.delta.Increasing ` instance or dict with compatible properties position Sets the position of delta with respect to the number. diff --git a/plotly/graph_objs/indicator/_gauge.py b/plotly/graph_objs/indicator/_gauge.py index 1fde32d64c..46c7722b7b 100644 --- a/plotly/graph_objs/indicator/_gauge.py +++ b/plotly/graph_objs/indicator/_gauge.py @@ -207,7 +207,7 @@ def threshold(self, val): def _prop_descriptions(self): return """\ axis - :class:`plotly.graph_objects.indicator.gauge.Axis` + :class:`plotly.graph_objs.indicator.gauge.Axis` instance or dict with compatible properties bar Set the appearance of the gauge's value @@ -222,7 +222,7 @@ def _prop_descriptions(self): Set the shape of the gauge steps A tuple of - :class:`plotly.graph_objects.indicator.gauge.Step` + :class:`plotly.graph_objs.indicator.gauge.Step` instances or dicts with compatible properties stepdefaults When used in a template (as @@ -230,7 +230,7 @@ def _prop_descriptions(self): sets the default property values to use for elements of indicator.gauge.steps threshold - :class:`plotly.graph_objects.indicator.gauge.Threshold` + :class:`plotly.graph_objs.indicator.gauge.Threshold` instance or dict with compatible properties """ @@ -260,7 +260,7 @@ def __init__( an instance of :class:`plotly.graph_objs.indicator.Gauge` axis - :class:`plotly.graph_objects.indicator.gauge.Axis` + :class:`plotly.graph_objs.indicator.gauge.Axis` instance or dict with compatible properties bar Set the appearance of the gauge's value @@ -275,7 +275,7 @@ def __init__( Set the shape of the gauge steps A tuple of - :class:`plotly.graph_objects.indicator.gauge.Step` + :class:`plotly.graph_objs.indicator.gauge.Step` instances or dicts with compatible properties stepdefaults When used in a template (as @@ -283,7 +283,7 @@ def __init__( sets the default property values to use for elements of indicator.gauge.steps threshold - :class:`plotly.graph_objects.indicator.gauge.Threshold` + :class:`plotly.graph_objs.indicator.gauge.Threshold` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/indicator/gauge/_axis.py b/plotly/graph_objs/indicator/gauge/_axis.py index 83ba584c60..cf5285296a 100644 --- a/plotly/graph_objs/indicator/gauge/_axis.py +++ b/plotly/graph_objs/indicator/gauge/_axis.py @@ -792,7 +792,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.indicator.gauge + A tuple of :class:`plotly.graph_objs.indicator.gauge .axis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -994,7 +994,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.indicator.gauge + A tuple of :class:`plotly.graph_objs.indicator.gauge .axis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults diff --git a/plotly/graph_objs/indicator/gauge/_bar.py b/plotly/graph_objs/indicator/gauge/_bar.py index 622dc9eae0..39a427e24f 100644 --- a/plotly/graph_objs/indicator/gauge/_bar.py +++ b/plotly/graph_objs/indicator/gauge/_bar.py @@ -76,7 +76,7 @@ def _prop_descriptions(self): color Sets the background color of the arc. line - :class:`plotly.graph_objects.indicator.gauge.bar.Line` + :class:`plotly.graph_objs.indicator.gauge.bar.Line` instance or dict with compatible properties thickness Sets the thickness of the bar as a fraction of the @@ -98,7 +98,7 @@ def __init__(self, arg=None, color=None, line=None, thickness=None, **kwargs): color Sets the background color of the arc. line - :class:`plotly.graph_objects.indicator.gauge.bar.Line` + :class:`plotly.graph_objs.indicator.gauge.bar.Line` instance or dict with compatible properties thickness Sets the thickness of the bar as a fraction of the diff --git a/plotly/graph_objs/indicator/gauge/_step.py b/plotly/graph_objs/indicator/gauge/_step.py index c683b9beeb..bb47832fcd 100644 --- a/plotly/graph_objs/indicator/gauge/_step.py +++ b/plotly/graph_objs/indicator/gauge/_step.py @@ -150,7 +150,7 @@ def _prop_descriptions(self): color Sets the background color of the arc. line - :class:`plotly.graph_objects.indicator.gauge.step.Line` + :class:`plotly.graph_objs.indicator.gauge.step.Line` instance or dict with compatible properties name When used in a template, named items are created in the @@ -201,7 +201,7 @@ def __init__( color Sets the background color of the arc. line - :class:`plotly.graph_objects.indicator.gauge.step.Line` + :class:`plotly.graph_objs.indicator.gauge.step.Line` instance or dict with compatible properties name When used in a template, named items are created in the diff --git a/plotly/graph_objs/indicator/gauge/_threshold.py b/plotly/graph_objs/indicator/gauge/_threshold.py index acee11427e..37ca21afa4 100644 --- a/plotly/graph_objs/indicator/gauge/_threshold.py +++ b/plotly/graph_objs/indicator/gauge/_threshold.py @@ -70,7 +70,7 @@ def value(self, val): def _prop_descriptions(self): return """\ line - :class:`plotly.graph_objects.indicator.gauge.threshold. + :class:`plotly.graph_objs.indicator.gauge.threshold. Line` instance or dict with compatible properties thickness Sets the thickness of the threshold line as a fraction @@ -90,7 +90,7 @@ def __init__(self, arg=None, line=None, thickness=None, value=None, **kwargs): an instance of :class:`plotly.graph_objs.indicator.gauge.Threshold` line - :class:`plotly.graph_objects.indicator.gauge.threshold. + :class:`plotly.graph_objs.indicator.gauge.threshold. Line` instance or dict with compatible properties thickness Sets the thickness of the threshold line as a fraction diff --git a/plotly/graph_objs/isosurface/_caps.py b/plotly/graph_objs/isosurface/_caps.py index e54a7e0979..b9a025ee94 100644 --- a/plotly/graph_objs/isosurface/_caps.py +++ b/plotly/graph_objs/isosurface/_caps.py @@ -71,13 +71,13 @@ def z(self, val): def _prop_descriptions(self): return """\ x - :class:`plotly.graph_objects.isosurface.caps.X` + :class:`plotly.graph_objs.isosurface.caps.X` instance or dict with compatible properties y - :class:`plotly.graph_objects.isosurface.caps.Y` + :class:`plotly.graph_objs.isosurface.caps.Y` instance or dict with compatible properties z - :class:`plotly.graph_objects.isosurface.caps.Z` + :class:`plotly.graph_objs.isosurface.caps.Z` instance or dict with compatible properties """ @@ -92,13 +92,13 @@ def __init__(self, arg=None, x=None, y=None, z=None, **kwargs): an instance of :class:`plotly.graph_objs.isosurface.Caps` x - :class:`plotly.graph_objects.isosurface.caps.X` + :class:`plotly.graph_objs.isosurface.caps.X` instance or dict with compatible properties y - :class:`plotly.graph_objects.isosurface.caps.Y` + :class:`plotly.graph_objs.isosurface.caps.Y` instance or dict with compatible properties z - :class:`plotly.graph_objects.isosurface.caps.Z` + :class:`plotly.graph_objs.isosurface.caps.Z` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/isosurface/_colorbar.py b/plotly/graph_objs/isosurface/_colorbar.py index fff5911126..59303d7211 100644 --- a/plotly/graph_objs/isosurface/_colorbar.py +++ b/plotly/graph_objs/isosurface/_colorbar.py @@ -1231,7 +1231,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.isosurface.colo + A tuple of :class:`plotly.graph_objs.isosurface.colo rbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1294,7 +1294,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.isosurface.colorbar.Title` + :class:`plotly.graph_objs.isosurface.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1534,7 +1534,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.isosurface.colo + A tuple of :class:`plotly.graph_objs.isosurface.colo rbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1597,7 +1597,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.isosurface.colorbar.Title` + :class:`plotly.graph_objs.isosurface.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/isosurface/_slices.py b/plotly/graph_objs/isosurface/_slices.py index df6b483069..4d091a6188 100644 --- a/plotly/graph_objs/isosurface/_slices.py +++ b/plotly/graph_objs/isosurface/_slices.py @@ -71,13 +71,13 @@ def z(self, val): def _prop_descriptions(self): return """\ x - :class:`plotly.graph_objects.isosurface.slices.X` + :class:`plotly.graph_objs.isosurface.slices.X` instance or dict with compatible properties y - :class:`plotly.graph_objects.isosurface.slices.Y` + :class:`plotly.graph_objs.isosurface.slices.Y` instance or dict with compatible properties z - :class:`plotly.graph_objects.isosurface.slices.Z` + :class:`plotly.graph_objs.isosurface.slices.Z` instance or dict with compatible properties """ @@ -92,13 +92,13 @@ def __init__(self, arg=None, x=None, y=None, z=None, **kwargs): an instance of :class:`plotly.graph_objs.isosurface.Slices` x - :class:`plotly.graph_objects.isosurface.slices.X` + :class:`plotly.graph_objs.isosurface.slices.X` instance or dict with compatible properties y - :class:`plotly.graph_objects.isosurface.slices.Y` + :class:`plotly.graph_objs.isosurface.slices.Y` instance or dict with compatible properties z - :class:`plotly.graph_objects.isosurface.slices.Z` + :class:`plotly.graph_objs.isosurface.slices.Z` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/layout/_annotation.py b/plotly/graph_objs/layout/_annotation.py index d06b106114..13472374fd 100644 --- a/plotly/graph_objs/layout/_annotation.py +++ b/plotly/graph_objs/layout/_annotation.py @@ -1152,7 +1152,7 @@ def _prop_descriptions(self): (default) lets the text set the box height. Taller text will be clipped. hoverlabel - :class:`plotly.graph_objects.layout.annotation.Hoverlab + :class:`plotly.graph_objs.layout.annotation.Hoverlab el` instance or dict with compatible properties hovertext Sets text to appear when hovering over this annotation. @@ -1490,7 +1490,7 @@ def __init__( (default) lets the text set the box height. Taller text will be clipped. hoverlabel - :class:`plotly.graph_objects.layout.annotation.Hoverlab + :class:`plotly.graph_objs.layout.annotation.Hoverlab el` instance or dict with compatible properties hovertext Sets text to appear when hovering over this annotation. diff --git a/plotly/graph_objs/layout/_coloraxis.py b/plotly/graph_objs/layout/_coloraxis.py index 4606c7add9..eca759c5b0 100644 --- a/plotly/graph_objs/layout/_coloraxis.py +++ b/plotly/graph_objs/layout/_coloraxis.py @@ -264,7 +264,7 @@ def _prop_descriptions(self): have the same units as corresponding trace color array(s) and if set, `cmax` must be set as well. colorbar - :class:`plotly.graph_objects.layout.coloraxis.ColorBar` + :class:`plotly.graph_objs.layout.coloraxis.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array @@ -337,7 +337,7 @@ def __init__( have the same units as corresponding trace color array(s) and if set, `cmax` must be set as well. colorbar - :class:`plotly.graph_objects.layout.coloraxis.ColorBar` + :class:`plotly.graph_objs.layout.coloraxis.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. The colorscale must be an array diff --git a/plotly/graph_objs/layout/_geo.py b/plotly/graph_objs/layout/_geo.py index 43b49a8ad0..915f790d29 100644 --- a/plotly/graph_objs/layout/_geo.py +++ b/plotly/graph_objs/layout/_geo.py @@ -685,7 +685,7 @@ def _prop_descriptions(self): bgcolor Set the background color of the map center - :class:`plotly.graph_objects.layout.geo.Center` + :class:`plotly.graph_objs.layout.geo.Center` instance or dict with compatible properties coastlinecolor Sets the coastline color. @@ -696,7 +696,7 @@ def _prop_descriptions(self): countrywidth Sets line width (in px) of the country boundaries. domain - :class:`plotly.graph_objects.layout.geo.Domain` + :class:`plotly.graph_objs.layout.geo.Domain` instance or dict with compatible properties fitbounds Determines if this subplot's view settings are auto- @@ -723,15 +723,15 @@ def _prop_descriptions(self): landcolor Sets the land mass color. lataxis - :class:`plotly.graph_objects.layout.geo.Lataxis` + :class:`plotly.graph_objs.layout.geo.Lataxis` instance or dict with compatible properties lonaxis - :class:`plotly.graph_objects.layout.geo.Lonaxis` + :class:`plotly.graph_objs.layout.geo.Lonaxis` instance or dict with compatible properties oceancolor Sets the ocean color projection - :class:`plotly.graph_objects.layout.geo.Projection` + :class:`plotly.graph_objs.layout.geo.Projection` instance or dict with compatible properties resolution Sets the resolution of the base layers. The values have @@ -821,7 +821,7 @@ def __init__( bgcolor Set the background color of the map center - :class:`plotly.graph_objects.layout.geo.Center` + :class:`plotly.graph_objs.layout.geo.Center` instance or dict with compatible properties coastlinecolor Sets the coastline color. @@ -832,7 +832,7 @@ def __init__( countrywidth Sets line width (in px) of the country boundaries. domain - :class:`plotly.graph_objects.layout.geo.Domain` + :class:`plotly.graph_objs.layout.geo.Domain` instance or dict with compatible properties fitbounds Determines if this subplot's view settings are auto- @@ -859,15 +859,15 @@ def __init__( landcolor Sets the land mass color. lataxis - :class:`plotly.graph_objects.layout.geo.Lataxis` + :class:`plotly.graph_objs.layout.geo.Lataxis` instance or dict with compatible properties lonaxis - :class:`plotly.graph_objects.layout.geo.Lonaxis` + :class:`plotly.graph_objs.layout.geo.Lonaxis` instance or dict with compatible properties oceancolor Sets the ocean color projection - :class:`plotly.graph_objects.layout.geo.Projection` + :class:`plotly.graph_objs.layout.geo.Projection` instance or dict with compatible properties resolution Sets the resolution of the base layers. The values have diff --git a/plotly/graph_objs/layout/_grid.py b/plotly/graph_objs/layout/_grid.py index 8788027b3a..498c7863e4 100644 --- a/plotly/graph_objs/layout/_grid.py +++ b/plotly/graph_objs/layout/_grid.py @@ -311,7 +311,7 @@ def _prop_descriptions(self): to have a different length, if you want to leave a row at the end for non-cartesian subplots. domain - :class:`plotly.graph_objects.layout.grid.Domain` + :class:`plotly.graph_objs.layout.grid.Domain` instance or dict with compatible properties pattern If no `subplots`, `xaxes`, or `yaxes` are given but we @@ -408,7 +408,7 @@ def __init__( to have a different length, if you want to leave a row at the end for non-cartesian subplots. domain - :class:`plotly.graph_objects.layout.grid.Domain` + :class:`plotly.graph_objs.layout.grid.Domain` instance or dict with compatible properties pattern If no `subplots`, `xaxes`, or `yaxes` are given but we diff --git a/plotly/graph_objs/layout/_legend.py b/plotly/graph_objs/layout/_legend.py index 39b75b0a37..c6c15c0f3d 100644 --- a/plotly/graph_objs/layout/_legend.py +++ b/plotly/graph_objs/layout/_legend.py @@ -678,7 +678,7 @@ def _prop_descriptions(self): orientation Sets the orientation of the legend. title - :class:`plotly.graph_objects.layout.legend.Title` + :class:`plotly.graph_objs.layout.legend.Title` instance or dict with compatible properties tracegroupgap Sets the amount of vertical space (in px) between @@ -847,7 +847,7 @@ def __init__( orientation Sets the orientation of the legend. title - :class:`plotly.graph_objects.layout.legend.Title` + :class:`plotly.graph_objs.layout.legend.Title` instance or dict with compatible properties tracegroupgap Sets the amount of vertical space (in px) between diff --git a/plotly/graph_objs/layout/_map.py b/plotly/graph_objs/layout/_map.py index f54257cd6f..d0b0540215 100644 --- a/plotly/graph_objs/layout/_map.py +++ b/plotly/graph_objs/layout/_map.py @@ -234,17 +234,17 @@ def _prop_descriptions(self): Sets the bearing angle of the map in degrees counter- clockwise from North (map.bearing). bounds - :class:`plotly.graph_objects.layout.map.Bounds` + :class:`plotly.graph_objs.layout.map.Bounds` instance or dict with compatible properties center - :class:`plotly.graph_objects.layout.map.Center` + :class:`plotly.graph_objs.layout.map.Center` instance or dict with compatible properties domain - :class:`plotly.graph_objects.layout.map.Domain` + :class:`plotly.graph_objs.layout.map.Domain` instance or dict with compatible properties layers A tuple of - :class:`plotly.graph_objects.layout.map.Layer` + :class:`plotly.graph_objs.layout.map.Layer` instances or dicts with compatible properties layerdefaults When used in a template (as @@ -308,17 +308,17 @@ def __init__( Sets the bearing angle of the map in degrees counter- clockwise from North (map.bearing). bounds - :class:`plotly.graph_objects.layout.map.Bounds` + :class:`plotly.graph_objs.layout.map.Bounds` instance or dict with compatible properties center - :class:`plotly.graph_objects.layout.map.Center` + :class:`plotly.graph_objs.layout.map.Center` instance or dict with compatible properties domain - :class:`plotly.graph_objects.layout.map.Domain` + :class:`plotly.graph_objs.layout.map.Domain` instance or dict with compatible properties layers A tuple of - :class:`plotly.graph_objects.layout.map.Layer` + :class:`plotly.graph_objs.layout.map.Layer` instances or dicts with compatible properties layerdefaults When used in a template (as diff --git a/plotly/graph_objs/layout/_mapbox.py b/plotly/graph_objs/layout/_mapbox.py index b0f5e4e4c3..7786fba34f 100644 --- a/plotly/graph_objs/layout/_mapbox.py +++ b/plotly/graph_objs/layout/_mapbox.py @@ -270,17 +270,17 @@ def _prop_descriptions(self): Sets the bearing angle of the map in degrees counter- clockwise from North (mapbox.bearing). bounds - :class:`plotly.graph_objects.layout.mapbox.Bounds` + :class:`plotly.graph_objs.layout.mapbox.Bounds` instance or dict with compatible properties center - :class:`plotly.graph_objects.layout.mapbox.Center` + :class:`plotly.graph_objs.layout.mapbox.Center` instance or dict with compatible properties domain - :class:`plotly.graph_objects.layout.mapbox.Domain` + :class:`plotly.graph_objs.layout.mapbox.Domain` instance or dict with compatible properties layers A tuple of - :class:`plotly.graph_objects.layout.mapbox.Layer` + :class:`plotly.graph_objs.layout.mapbox.Layer` instances or dicts with compatible properties layerdefaults When used in a template (as @@ -360,17 +360,17 @@ def __init__( Sets the bearing angle of the map in degrees counter- clockwise from North (mapbox.bearing). bounds - :class:`plotly.graph_objects.layout.mapbox.Bounds` + :class:`plotly.graph_objs.layout.mapbox.Bounds` instance or dict with compatible properties center - :class:`plotly.graph_objects.layout.mapbox.Center` + :class:`plotly.graph_objs.layout.mapbox.Center` instance or dict with compatible properties domain - :class:`plotly.graph_objects.layout.mapbox.Domain` + :class:`plotly.graph_objs.layout.mapbox.Domain` instance or dict with compatible properties layers A tuple of - :class:`plotly.graph_objects.layout.mapbox.Layer` + :class:`plotly.graph_objs.layout.mapbox.Layer` instances or dicts with compatible properties layerdefaults When used in a template (as diff --git a/plotly/graph_objs/layout/_newselection.py b/plotly/graph_objs/layout/_newselection.py index 4f065710fa..e732b2367e 100644 --- a/plotly/graph_objs/layout/_newselection.py +++ b/plotly/graph_objs/layout/_newselection.py @@ -56,7 +56,7 @@ def mode(self, val): def _prop_descriptions(self): return """\ line - :class:`plotly.graph_objects.layout.newselection.Line` + :class:`plotly.graph_objs.layout.newselection.Line` instance or dict with compatible properties mode Describes how a new selection is created. If @@ -78,7 +78,7 @@ def __init__(self, arg=None, line=None, mode=None, **kwargs): an instance of :class:`plotly.graph_objs.layout.Newselection` line - :class:`plotly.graph_objects.layout.newselection.Line` + :class:`plotly.graph_objs.layout.newselection.Line` instance or dict with compatible properties mode Describes how a new selection is created. If diff --git a/plotly/graph_objs/layout/_newshape.py b/plotly/graph_objs/layout/_newshape.py index 05710a1456..50344aac7f 100644 --- a/plotly/graph_objs/layout/_newshape.py +++ b/plotly/graph_objs/layout/_newshape.py @@ -357,7 +357,7 @@ def _prop_descriptions(self): visit https://developer.mozilla.org/en- US/docs/Web/SVG/Attribute/fill-rule label - :class:`plotly.graph_objects.layout.newshape.Label` + :class:`plotly.graph_objs.layout.newshape.Label` instance or dict with compatible properties layer Specifies whether new shapes are drawn below gridlines @@ -374,7 +374,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.layout.newshape.Legendgrou + :class:`plotly.graph_objs.layout.newshape.Legendgrou ptitle` instance or dict with compatible properties legendrank Sets the legend rank for new shape. Items and groups @@ -388,7 +388,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for new shape. line - :class:`plotly.graph_objects.layout.newshape.Line` + :class:`plotly.graph_objs.layout.newshape.Line` instance or dict with compatible properties name Sets new shape name. The name appears as the legend @@ -453,7 +453,7 @@ def __init__( visit https://developer.mozilla.org/en- US/docs/Web/SVG/Attribute/fill-rule label - :class:`plotly.graph_objects.layout.newshape.Label` + :class:`plotly.graph_objs.layout.newshape.Label` instance or dict with compatible properties layer Specifies whether new shapes are drawn below gridlines @@ -470,7 +470,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.layout.newshape.Legendgrou + :class:`plotly.graph_objs.layout.newshape.Legendgrou ptitle` instance or dict with compatible properties legendrank Sets the legend rank for new shape. Items and groups @@ -484,7 +484,7 @@ def __init__( Sets the width (in px or fraction) of the legend for new shape. line - :class:`plotly.graph_objects.layout.newshape.Line` + :class:`plotly.graph_objs.layout.newshape.Line` instance or dict with compatible properties name Sets new shape name. The name appears as the legend diff --git a/plotly/graph_objs/layout/_polar.py b/plotly/graph_objs/layout/_polar.py index 51d76209a0..86423461d1 100644 --- a/plotly/graph_objs/layout/_polar.py +++ b/plotly/graph_objs/layout/_polar.py @@ -235,7 +235,7 @@ def uirevision(self, val): def _prop_descriptions(self): return """\ angularaxis - :class:`plotly.graph_objects.layout.polar.AngularAxis` + :class:`plotly.graph_objs.layout.polar.AngularAxis` instance or dict with compatible properties bargap Sets the gap between bars of adjacent location @@ -251,7 +251,7 @@ def _prop_descriptions(self): bgcolor Set the background color of the subplot domain - :class:`plotly.graph_objects.layout.polar.Domain` + :class:`plotly.graph_objs.layout.polar.Domain` instance or dict with compatible properties gridshape Determines if the radial axis grid lines and angular @@ -265,7 +265,7 @@ def _prop_descriptions(self): Sets the fraction of the radius to cut out of the polar subplot. radialaxis - :class:`plotly.graph_objects.layout.polar.RadialAxis` + :class:`plotly.graph_objs.layout.polar.RadialAxis` instance or dict with compatible properties sector Sets angular span of this polar subplot with two angles @@ -302,7 +302,7 @@ def __init__( dict of properties compatible with this constructor or an instance of :class:`plotly.graph_objs.layout.Polar` angularaxis - :class:`plotly.graph_objects.layout.polar.AngularAxis` + :class:`plotly.graph_objs.layout.polar.AngularAxis` instance or dict with compatible properties bargap Sets the gap between bars of adjacent location @@ -318,7 +318,7 @@ def __init__( bgcolor Set the background color of the subplot domain - :class:`plotly.graph_objects.layout.polar.Domain` + :class:`plotly.graph_objs.layout.polar.Domain` instance or dict with compatible properties gridshape Determines if the radial axis grid lines and angular @@ -332,7 +332,7 @@ def __init__( Sets the fraction of the radius to cut out of the polar subplot. radialaxis - :class:`plotly.graph_objects.layout.polar.RadialAxis` + :class:`plotly.graph_objs.layout.polar.RadialAxis` instance or dict with compatible properties sector Sets angular span of this polar subplot with two angles diff --git a/plotly/graph_objs/layout/_scene.py b/plotly/graph_objs/layout/_scene.py index 2d08ae1b23..4867b077ae 100644 --- a/plotly/graph_objs/layout/_scene.py +++ b/plotly/graph_objs/layout/_scene.py @@ -290,7 +290,7 @@ def _prop_descriptions(self): return """\ annotations A tuple of - :class:`plotly.graph_objects.layout.scene.Annotation` + :class:`plotly.graph_objs.layout.scene.Annotation` instances or dicts with compatible properties annotationdefaults When used in a template (as @@ -313,10 +313,10 @@ def _prop_descriptions(self): bgcolor camera - :class:`plotly.graph_objects.layout.scene.Camera` + :class:`plotly.graph_objs.layout.scene.Camera` instance or dict with compatible properties domain - :class:`plotly.graph_objects.layout.scene.Domain` + :class:`plotly.graph_objs.layout.scene.Domain` instance or dict with compatible properties dragmode Determines the mode of drag interactions for this @@ -328,13 +328,13 @@ def _prop_descriptions(self): Controls persistence of user-driven changes in camera attributes. Defaults to `layout.uirevision`. xaxis - :class:`plotly.graph_objects.layout.scene.XAxis` + :class:`plotly.graph_objs.layout.scene.XAxis` instance or dict with compatible properties yaxis - :class:`plotly.graph_objects.layout.scene.YAxis` + :class:`plotly.graph_objs.layout.scene.YAxis` instance or dict with compatible properties zaxis - :class:`plotly.graph_objects.layout.scene.ZAxis` + :class:`plotly.graph_objs.layout.scene.ZAxis` instance or dict with compatible properties """ @@ -366,7 +366,7 @@ def __init__( an instance of :class:`plotly.graph_objs.layout.Scene` annotations A tuple of - :class:`plotly.graph_objects.layout.scene.Annotation` + :class:`plotly.graph_objs.layout.scene.Annotation` instances or dicts with compatible properties annotationdefaults When used in a template (as @@ -389,10 +389,10 @@ def __init__( bgcolor camera - :class:`plotly.graph_objects.layout.scene.Camera` + :class:`plotly.graph_objs.layout.scene.Camera` instance or dict with compatible properties domain - :class:`plotly.graph_objects.layout.scene.Domain` + :class:`plotly.graph_objs.layout.scene.Domain` instance or dict with compatible properties dragmode Determines the mode of drag interactions for this @@ -404,13 +404,13 @@ def __init__( Controls persistence of user-driven changes in camera attributes. Defaults to `layout.uirevision`. xaxis - :class:`plotly.graph_objects.layout.scene.XAxis` + :class:`plotly.graph_objs.layout.scene.XAxis` instance or dict with compatible properties yaxis - :class:`plotly.graph_objects.layout.scene.YAxis` + :class:`plotly.graph_objs.layout.scene.YAxis` instance or dict with compatible properties zaxis - :class:`plotly.graph_objects.layout.scene.ZAxis` + :class:`plotly.graph_objs.layout.scene.ZAxis` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/layout/_selection.py b/plotly/graph_objs/layout/_selection.py index 3ebf7419c3..e4133588cb 100644 --- a/plotly/graph_objs/layout/_selection.py +++ b/plotly/graph_objs/layout/_selection.py @@ -287,7 +287,7 @@ def yref(self, val): def _prop_descriptions(self): return """\ line - :class:`plotly.graph_objects.layout.selection.Line` + :class:`plotly.graph_objs.layout.selection.Line` instance or dict with compatible properties name When used in a template, named items are created in the @@ -384,7 +384,7 @@ def __init__( an instance of :class:`plotly.graph_objs.layout.Selection` line - :class:`plotly.graph_objects.layout.selection.Line` + :class:`plotly.graph_objs.layout.selection.Line` instance or dict with compatible properties name When used in a template, named items are created in the diff --git a/plotly/graph_objs/layout/_shape.py b/plotly/graph_objs/layout/_shape.py index 8923d1c172..fcf578d0f0 100644 --- a/plotly/graph_objs/layout/_shape.py +++ b/plotly/graph_objs/layout/_shape.py @@ -775,7 +775,7 @@ def _prop_descriptions(self): https://developer.mozilla.org/en- US/docs/Web/SVG/Attribute/fill-rule label - :class:`plotly.graph_objects.layout.shape.Label` + :class:`plotly.graph_objs.layout.shape.Label` instance or dict with compatible properties layer Specifies whether shapes are drawn below gridlines @@ -792,7 +792,7 @@ def _prop_descriptions(self): part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.layout.shape.Legendgroupti + :class:`plotly.graph_objs.layout.shape.Legendgroupti tle` instance or dict with compatible properties legendrank Sets the legend rank for this shape. Items and groups @@ -809,7 +809,7 @@ def _prop_descriptions(self): Sets the width (in px or fraction) of the legend for this shape. line - :class:`plotly.graph_objects.layout.shape.Line` + :class:`plotly.graph_objs.layout.shape.Line` instance or dict with compatible properties name When used in a template, named items are created in the @@ -1031,7 +1031,7 @@ def __init__( https://developer.mozilla.org/en- US/docs/Web/SVG/Attribute/fill-rule label - :class:`plotly.graph_objects.layout.shape.Label` + :class:`plotly.graph_objs.layout.shape.Label` instance or dict with compatible properties layer Specifies whether shapes are drawn below gridlines @@ -1048,7 +1048,7 @@ def __init__( part of the same legend group hide/show at the same time when toggling legend items. legendgrouptitle - :class:`plotly.graph_objects.layout.shape.Legendgroupti + :class:`plotly.graph_objs.layout.shape.Legendgroupti tle` instance or dict with compatible properties legendrank Sets the legend rank for this shape. Items and groups @@ -1065,7 +1065,7 @@ def __init__( Sets the width (in px or fraction) of the legend for this shape. line - :class:`plotly.graph_objects.layout.shape.Line` + :class:`plotly.graph_objs.layout.shape.Line` instance or dict with compatible properties name When used in a template, named items are created in the diff --git a/plotly/graph_objs/layout/_slider.py b/plotly/graph_objs/layout/_slider.py index e6d0a2fe24..bd2bed4f5b 100644 --- a/plotly/graph_objs/layout/_slider.py +++ b/plotly/graph_objs/layout/_slider.py @@ -540,7 +540,7 @@ def _prop_descriptions(self): Sets the width (in px) of the border enclosing the slider. currentvalue - :class:`plotly.graph_objects.layout.slider.Currentvalue + :class:`plotly.graph_objs.layout.slider.Currentvalue ` instance or dict with compatible properties font Sets the font of the slider step labels. @@ -568,7 +568,7 @@ def _prop_descriptions(self): side. steps A tuple of - :class:`plotly.graph_objects.layout.slider.Step` + :class:`plotly.graph_objs.layout.slider.Step` instances or dicts with compatible properties stepdefaults When used in a template (as @@ -592,7 +592,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). transition - :class:`plotly.graph_objects.layout.slider.Transition` + :class:`plotly.graph_objs.layout.slider.Transition` instance or dict with compatible properties visible Determines whether or not the slider is visible. @@ -663,7 +663,7 @@ def __init__( Sets the width (in px) of the border enclosing the slider. currentvalue - :class:`plotly.graph_objects.layout.slider.Currentvalue + :class:`plotly.graph_objs.layout.slider.Currentvalue ` instance or dict with compatible properties font Sets the font of the slider step labels. @@ -691,7 +691,7 @@ def __init__( side. steps A tuple of - :class:`plotly.graph_objects.layout.slider.Step` + :class:`plotly.graph_objs.layout.slider.Step` instances or dicts with compatible properties stepdefaults When used in a template (as @@ -715,7 +715,7 @@ def __init__( tickwidth Sets the tick width (in px). transition - :class:`plotly.graph_objects.layout.slider.Transition` + :class:`plotly.graph_objs.layout.slider.Transition` instance or dict with compatible properties visible Determines whether or not the slider is visible. diff --git a/plotly/graph_objs/layout/_smith.py b/plotly/graph_objs/layout/_smith.py index 061e67992a..42e62f7566 100644 --- a/plotly/graph_objs/layout/_smith.py +++ b/plotly/graph_objs/layout/_smith.py @@ -95,13 +95,13 @@ def _prop_descriptions(self): bgcolor Set the background color of the subplot domain - :class:`plotly.graph_objects.layout.smith.Domain` + :class:`plotly.graph_objs.layout.smith.Domain` instance or dict with compatible properties imaginaryaxis - :class:`plotly.graph_objects.layout.smith.Imaginaryaxis + :class:`plotly.graph_objs.layout.smith.Imaginaryaxis ` instance or dict with compatible properties realaxis - :class:`plotly.graph_objects.layout.smith.Realaxis` + :class:`plotly.graph_objs.layout.smith.Realaxis` instance or dict with compatible properties """ @@ -125,13 +125,13 @@ def __init__( bgcolor Set the background color of the subplot domain - :class:`plotly.graph_objects.layout.smith.Domain` + :class:`plotly.graph_objs.layout.smith.Domain` instance or dict with compatible properties imaginaryaxis - :class:`plotly.graph_objects.layout.smith.Imaginaryaxis + :class:`plotly.graph_objs.layout.smith.Imaginaryaxis ` instance or dict with compatible properties realaxis - :class:`plotly.graph_objects.layout.smith.Realaxis` + :class:`plotly.graph_objs.layout.smith.Realaxis` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/layout/_template.py b/plotly/graph_objs/layout/_template.py index 90eb3f6602..a607e23439 100644 --- a/plotly/graph_objs/layout/_template.py +++ b/plotly/graph_objs/layout/_template.py @@ -53,10 +53,10 @@ def layout(self, val): def _prop_descriptions(self): return """\ data - :class:`plotly.graph_objects.layout.template.Data` + :class:`plotly.graph_objs.layout.template.Data` instance or dict with compatible properties layout - :class:`plotly.graph_objects.Layout` instance or dict + :class:`plotly.graph_objs.Layout` instance or dict with compatible properties """ @@ -91,10 +91,10 @@ def __init__(self, arg=None, data=None, layout=None, **kwargs): an instance of :class:`plotly.graph_objs.layout.Template` data - :class:`plotly.graph_objects.layout.template.Data` + :class:`plotly.graph_objs.layout.template.Data` instance or dict with compatible properties layout - :class:`plotly.graph_objects.Layout` instance or dict + :class:`plotly.graph_objs.Layout` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/layout/_ternary.py b/plotly/graph_objs/layout/_ternary.py index c8cb58fbb9..57ea9c52e0 100644 --- a/plotly/graph_objs/layout/_ternary.py +++ b/plotly/graph_objs/layout/_ternary.py @@ -150,18 +150,18 @@ def uirevision(self, val): def _prop_descriptions(self): return """\ aaxis - :class:`plotly.graph_objects.layout.ternary.Aaxis` + :class:`plotly.graph_objs.layout.ternary.Aaxis` instance or dict with compatible properties baxis - :class:`plotly.graph_objects.layout.ternary.Baxis` + :class:`plotly.graph_objs.layout.ternary.Baxis` instance or dict with compatible properties bgcolor Set the background color of the subplot caxis - :class:`plotly.graph_objects.layout.ternary.Caxis` + :class:`plotly.graph_objs.layout.ternary.Caxis` instance or dict with compatible properties domain - :class:`plotly.graph_objects.layout.ternary.Domain` + :class:`plotly.graph_objs.layout.ternary.Domain` instance or dict with compatible properties sum The number each triplet should sum to, and the maximum @@ -194,18 +194,18 @@ def __init__( an instance of :class:`plotly.graph_objs.layout.Ternary` aaxis - :class:`plotly.graph_objects.layout.ternary.Aaxis` + :class:`plotly.graph_objs.layout.ternary.Aaxis` instance or dict with compatible properties baxis - :class:`plotly.graph_objects.layout.ternary.Baxis` + :class:`plotly.graph_objs.layout.ternary.Baxis` instance or dict with compatible properties bgcolor Set the background color of the subplot caxis - :class:`plotly.graph_objects.layout.ternary.Caxis` + :class:`plotly.graph_objs.layout.ternary.Caxis` instance or dict with compatible properties domain - :class:`plotly.graph_objects.layout.ternary.Domain` + :class:`plotly.graph_objs.layout.ternary.Domain` instance or dict with compatible properties sum The number each triplet should sum to, and the maximum diff --git a/plotly/graph_objs/layout/_title.py b/plotly/graph_objs/layout/_title.py index 47301d8e11..e1384669bd 100644 --- a/plotly/graph_objs/layout/_title.py +++ b/plotly/graph_objs/layout/_title.py @@ -292,7 +292,7 @@ def _prop_descriptions(self): automatically. Padding is muted if the respective anchor value is "middle*/*center". subtitle - :class:`plotly.graph_objects.layout.title.Subtitle` + :class:`plotly.graph_objs.layout.title.Subtitle` instance or dict with compatible properties text Sets the plot's title. @@ -376,7 +376,7 @@ def __init__( automatically. Padding is muted if the respective anchor value is "middle*/*center". subtitle - :class:`plotly.graph_objects.layout.title.Subtitle` + :class:`plotly.graph_objs.layout.title.Subtitle` instance or dict with compatible properties text Sets the plot's title. diff --git a/plotly/graph_objs/layout/_updatemenu.py b/plotly/graph_objs/layout/_updatemenu.py index ebd1e67938..af92e2a391 100644 --- a/plotly/graph_objs/layout/_updatemenu.py +++ b/plotly/graph_objs/layout/_updatemenu.py @@ -421,7 +421,7 @@ def _prop_descriptions(self): update menu. buttons A tuple of - :class:`plotly.graph_objects.layout.updatemenu.Button` + :class:`plotly.graph_objs.layout.updatemenu.Button` instances or dicts with compatible properties buttondefaults When used in a template (as @@ -526,7 +526,7 @@ def __init__( update menu. buttons A tuple of - :class:`plotly.graph_objects.layout.updatemenu.Button` + :class:`plotly.graph_objs.layout.updatemenu.Button` instances or dicts with compatible properties buttondefaults When used in a template (as diff --git a/plotly/graph_objs/layout/_xaxis.py b/plotly/graph_objs/layout/_xaxis.py index 06686a9fbf..328f903bab 100644 --- a/plotly/graph_objs/layout/_xaxis.py +++ b/plotly/graph_objs/layout/_xaxis.py @@ -2287,7 +2287,7 @@ def _prop_descriptions(self): a reversed axis. Using "reversed" applies autorange on both ends and reverses the axis direction. autorangeoptions - :class:`plotly.graph_objects.layout.xaxis.Autorangeopti + :class:`plotly.graph_objs.layout.xaxis.Autorangeopti ons` instance or dict with compatible properties autotickangles When `tickangle` is set to "auto", it will be set to @@ -2457,7 +2457,7 @@ def _prop_descriptions(self): This only has an effect when `tickformat` is "SI" or "B". minor - :class:`plotly.graph_objects.layout.xaxis.Minor` + :class:`plotly.graph_objs.layout.xaxis.Minor` instance or dict with compatible properties minorloglabels Determines how minor log labels are displayed. If @@ -2507,7 +2507,7 @@ def _prop_descriptions(self): the default `autorange`. rangebreaks A tuple of - :class:`plotly.graph_objects.layout.xaxis.Rangebreak` + :class:`plotly.graph_objs.layout.xaxis.Rangebreak` instances or dicts with compatible properties rangebreakdefaults When used in a template (as @@ -2521,10 +2521,10 @@ def _prop_descriptions(self): "nonnegative", the range is non-negative, regardless of the input data. Applies only to linear axes. rangeselector - :class:`plotly.graph_objects.layout.xaxis.Rangeselector + :class:`plotly.graph_objs.layout.xaxis.Rangeselector ` instance or dict with compatible properties rangeslider - :class:`plotly.graph_objects.layout.xaxis.Rangeslider` + :class:`plotly.graph_objs.layout.xaxis.Rangeslider` instance or dict with compatible properties scaleanchor If set to another axis id (e.g. `x2`, `y`), the range @@ -2647,7 +2647,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.xaxis.Ti + A tuple of :class:`plotly.graph_objs.layout.xaxis.Ti ckformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -2760,7 +2760,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.xaxis.Title` + :class:`plotly.graph_objs.layout.xaxis.Title` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to @@ -2771,7 +2771,7 @@ def _prop_descriptions(self): `range`, `autorange`, and `title` if in `editable: true` configuration. Defaults to `layout.uirevision`. unifiedhovertitle - :class:`plotly.graph_objects.layout.xaxis.Unifiedhovert + :class:`plotly.graph_objs.layout.xaxis.Unifiedhovert itle` instance or dict with compatible properties visible A single toggle to hide the axis while preserving @@ -2926,7 +2926,7 @@ def __init__( a reversed axis. Using "reversed" applies autorange on both ends and reverses the axis direction. autorangeoptions - :class:`plotly.graph_objects.layout.xaxis.Autorangeopti + :class:`plotly.graph_objs.layout.xaxis.Autorangeopti ons` instance or dict with compatible properties autotickangles When `tickangle` is set to "auto", it will be set to @@ -3096,7 +3096,7 @@ def __init__( This only has an effect when `tickformat` is "SI" or "B". minor - :class:`plotly.graph_objects.layout.xaxis.Minor` + :class:`plotly.graph_objs.layout.xaxis.Minor` instance or dict with compatible properties minorloglabels Determines how minor log labels are displayed. If @@ -3146,7 +3146,7 @@ def __init__( the default `autorange`. rangebreaks A tuple of - :class:`plotly.graph_objects.layout.xaxis.Rangebreak` + :class:`plotly.graph_objs.layout.xaxis.Rangebreak` instances or dicts with compatible properties rangebreakdefaults When used in a template (as @@ -3160,10 +3160,10 @@ def __init__( "nonnegative", the range is non-negative, regardless of the input data. Applies only to linear axes. rangeselector - :class:`plotly.graph_objects.layout.xaxis.Rangeselector + :class:`plotly.graph_objs.layout.xaxis.Rangeselector ` instance or dict with compatible properties rangeslider - :class:`plotly.graph_objects.layout.xaxis.Rangeslider` + :class:`plotly.graph_objs.layout.xaxis.Rangeslider` instance or dict with compatible properties scaleanchor If set to another axis id (e.g. `x2`, `y`), the range @@ -3286,7 +3286,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.xaxis.Ti + A tuple of :class:`plotly.graph_objs.layout.xaxis.Ti ckformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -3399,7 +3399,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.xaxis.Title` + :class:`plotly.graph_objs.layout.xaxis.Title` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to @@ -3410,7 +3410,7 @@ def __init__( `range`, `autorange`, and `title` if in `editable: true` configuration. Defaults to `layout.uirevision`. unifiedhovertitle - :class:`plotly.graph_objects.layout.xaxis.Unifiedhovert + :class:`plotly.graph_objs.layout.xaxis.Unifiedhovert itle` instance or dict with compatible properties visible A single toggle to hide the axis while preserving diff --git a/plotly/graph_objs/layout/_yaxis.py b/plotly/graph_objs/layout/_yaxis.py index 7bfede1eab..60a82e55cf 100644 --- a/plotly/graph_objs/layout/_yaxis.py +++ b/plotly/graph_objs/layout/_yaxis.py @@ -2295,7 +2295,7 @@ def _prop_descriptions(self): a reversed axis. Using "reversed" applies autorange on both ends and reverses the axis direction. autorangeoptions - :class:`plotly.graph_objects.layout.yaxis.Autorangeopti + :class:`plotly.graph_objs.layout.yaxis.Autorangeopti ons` instance or dict with compatible properties autoshift Automatically reposition the axis to avoid overlap with @@ -2472,7 +2472,7 @@ def _prop_descriptions(self): This only has an effect when `tickformat` is "SI" or "B". minor - :class:`plotly.graph_objects.layout.yaxis.Minor` + :class:`plotly.graph_objs.layout.yaxis.Minor` instance or dict with compatible properties minorloglabels Determines how minor log labels are displayed. If @@ -2522,7 +2522,7 @@ def _prop_descriptions(self): the default `autorange`. rangebreaks A tuple of - :class:`plotly.graph_objects.layout.yaxis.Rangebreak` + :class:`plotly.graph_objs.layout.yaxis.Rangebreak` instances or dicts with compatible properties rangebreakdefaults When used in a template (as @@ -2665,7 +2665,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.yaxis.Ti + A tuple of :class:`plotly.graph_objs.layout.yaxis.Ti ckformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -2778,7 +2778,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.yaxis.Title` + :class:`plotly.graph_objs.layout.yaxis.Title` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to @@ -2789,7 +2789,7 @@ def _prop_descriptions(self): `range`, `autorange`, and `title` if in `editable: true` configuration. Defaults to `layout.uirevision`. unifiedhovertitle - :class:`plotly.graph_objects.layout.yaxis.Unifiedhovert + :class:`plotly.graph_objs.layout.yaxis.Unifiedhovert itle` instance or dict with compatible properties visible A single toggle to hide the axis while preserving @@ -2944,7 +2944,7 @@ def __init__( a reversed axis. Using "reversed" applies autorange on both ends and reverses the axis direction. autorangeoptions - :class:`plotly.graph_objects.layout.yaxis.Autorangeopti + :class:`plotly.graph_objs.layout.yaxis.Autorangeopti ons` instance or dict with compatible properties autoshift Automatically reposition the axis to avoid overlap with @@ -3121,7 +3121,7 @@ def __init__( This only has an effect when `tickformat` is "SI" or "B". minor - :class:`plotly.graph_objects.layout.yaxis.Minor` + :class:`plotly.graph_objs.layout.yaxis.Minor` instance or dict with compatible properties minorloglabels Determines how minor log labels are displayed. If @@ -3171,7 +3171,7 @@ def __init__( the default `autorange`. rangebreaks A tuple of - :class:`plotly.graph_objects.layout.yaxis.Rangebreak` + :class:`plotly.graph_objs.layout.yaxis.Rangebreak` instances or dicts with compatible properties rangebreakdefaults When used in a template (as @@ -3314,7 +3314,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.yaxis.Ti + A tuple of :class:`plotly.graph_objs.layout.yaxis.Ti ckformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -3427,7 +3427,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.yaxis.Title` + :class:`plotly.graph_objs.layout.yaxis.Title` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to @@ -3438,7 +3438,7 @@ def __init__( `range`, `autorange`, and `title` if in `editable: true` configuration. Defaults to `layout.uirevision`. unifiedhovertitle - :class:`plotly.graph_objects.layout.yaxis.Unifiedhovert + :class:`plotly.graph_objs.layout.yaxis.Unifiedhovert itle` instance or dict with compatible properties visible A single toggle to hide the axis while preserving diff --git a/plotly/graph_objs/layout/coloraxis/_colorbar.py b/plotly/graph_objs/layout/coloraxis/_colorbar.py index 0749ad3097..682611c029 100644 --- a/plotly/graph_objs/layout/coloraxis/_colorbar.py +++ b/plotly/graph_objs/layout/coloraxis/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.coloraxi + A tuple of :class:`plotly.graph_objs.layout.coloraxi s.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.coloraxis.colorbar. + :class:`plotly.graph_objs.layout.coloraxis.colorbar. Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.coloraxi + A tuple of :class:`plotly.graph_objs.layout.coloraxi s.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.coloraxis.colorbar. + :class:`plotly.graph_objs.layout.coloraxis.colorbar. Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/layout/geo/_projection.py b/plotly/graph_objs/layout/geo/_projection.py index fb8a53981b..0d2123c146 100644 --- a/plotly/graph_objs/layout/geo/_projection.py +++ b/plotly/graph_objs/layout/geo/_projection.py @@ -164,7 +164,7 @@ def _prop_descriptions(self): For conic projection types only. Sets the parallels (tangent, secant) where the cone intersects the sphere. rotation - :class:`plotly.graph_objects.layout.geo.projection.Rota + :class:`plotly.graph_objs.layout.geo.projection.Rota tion` instance or dict with compatible properties scale Zooms in or out on the map view. A scale of 1 @@ -205,7 +205,7 @@ def __init__( For conic projection types only. Sets the parallels (tangent, secant) where the cone intersects the sphere. rotation - :class:`plotly.graph_objects.layout.geo.projection.Rota + :class:`plotly.graph_objs.layout.geo.projection.Rota tion` instance or dict with compatible properties scale Zooms in or out on the map view. A scale of 1 diff --git a/plotly/graph_objs/layout/map/_layer.py b/plotly/graph_objs/layout/map/_layer.py index cf22d324e9..8b75cae29c 100644 --- a/plotly/graph_objs/layout/map/_layer.py +++ b/plotly/graph_objs/layout/map/_layer.py @@ -421,7 +421,7 @@ def _prop_descriptions(self): layer with the specified ID. If omitted or set to '', the layer will be inserted above every existing layer. circle - :class:`plotly.graph_objects.layout.map.layer.Circle` + :class:`plotly.graph_objs.layout.map.layer.Circle` instance or dict with compatible properties color Sets the primary layer color. If `type` is "circle", @@ -439,10 +439,10 @@ def _prop_descriptions(self): bottom left. Only has an effect for "image" `sourcetype`. fill - :class:`plotly.graph_objects.layout.map.layer.Fill` + :class:`plotly.graph_objs.layout.map.layer.Fill` instance or dict with compatible properties line - :class:`plotly.graph_objects.layout.map.layer.Line` + :class:`plotly.graph_objs.layout.map.layer.Line` instance or dict with compatible properties maxzoom Sets the maximum zoom level (map.layer.maxzoom). At @@ -489,7 +489,7 @@ def _prop_descriptions(self): Sets the source type for this layer, that is the type of the layer data. symbol - :class:`plotly.graph_objects.layout.map.layer.Symbol` + :class:`plotly.graph_objs.layout.map.layer.Symbol` instance or dict with compatible properties templateitemname Used to refer to a named item in this array in the @@ -552,7 +552,7 @@ def __init__( layer with the specified ID. If omitted or set to '', the layer will be inserted above every existing layer. circle - :class:`plotly.graph_objects.layout.map.layer.Circle` + :class:`plotly.graph_objs.layout.map.layer.Circle` instance or dict with compatible properties color Sets the primary layer color. If `type` is "circle", @@ -570,10 +570,10 @@ def __init__( bottom left. Only has an effect for "image" `sourcetype`. fill - :class:`plotly.graph_objects.layout.map.layer.Fill` + :class:`plotly.graph_objs.layout.map.layer.Fill` instance or dict with compatible properties line - :class:`plotly.graph_objects.layout.map.layer.Line` + :class:`plotly.graph_objs.layout.map.layer.Line` instance or dict with compatible properties maxzoom Sets the maximum zoom level (map.layer.maxzoom). At @@ -620,7 +620,7 @@ def __init__( Sets the source type for this layer, that is the type of the layer data. symbol - :class:`plotly.graph_objects.layout.map.layer.Symbol` + :class:`plotly.graph_objs.layout.map.layer.Symbol` instance or dict with compatible properties templateitemname Used to refer to a named item in this array in the diff --git a/plotly/graph_objs/layout/mapbox/_layer.py b/plotly/graph_objs/layout/mapbox/_layer.py index abad68fb2a..697159ec0c 100644 --- a/plotly/graph_objs/layout/mapbox/_layer.py +++ b/plotly/graph_objs/layout/mapbox/_layer.py @@ -423,7 +423,7 @@ def _prop_descriptions(self): layer with the specified ID. If omitted or set to '', the layer will be inserted above every existing layer. circle - :class:`plotly.graph_objects.layout.mapbox.layer.Circle + :class:`plotly.graph_objs.layout.mapbox.layer.Circle ` instance or dict with compatible properties color Sets the primary layer color. If `type` is "circle", @@ -442,10 +442,10 @@ def _prop_descriptions(self): bottom left. Only has an effect for "image" `sourcetype`. fill - :class:`plotly.graph_objects.layout.mapbox.layer.Fill` + :class:`plotly.graph_objs.layout.mapbox.layer.Fill` instance or dict with compatible properties line - :class:`plotly.graph_objects.layout.mapbox.layer.Line` + :class:`plotly.graph_objs.layout.mapbox.layer.Line` instance or dict with compatible properties maxzoom Sets the maximum zoom level (mapbox.layer.maxzoom). At @@ -492,7 +492,7 @@ def _prop_descriptions(self): Sets the source type for this layer, that is the type of the layer data. symbol - :class:`plotly.graph_objects.layout.mapbox.layer.Symbol + :class:`plotly.graph_objs.layout.mapbox.layer.Symbol ` instance or dict with compatible properties templateitemname Used to refer to a named item in this array in the @@ -555,7 +555,7 @@ def __init__( layer with the specified ID. If omitted or set to '', the layer will be inserted above every existing layer. circle - :class:`plotly.graph_objects.layout.mapbox.layer.Circle + :class:`plotly.graph_objs.layout.mapbox.layer.Circle ` instance or dict with compatible properties color Sets the primary layer color. If `type` is "circle", @@ -574,10 +574,10 @@ def __init__( bottom left. Only has an effect for "image" `sourcetype`. fill - :class:`plotly.graph_objects.layout.mapbox.layer.Fill` + :class:`plotly.graph_objs.layout.mapbox.layer.Fill` instance or dict with compatible properties line - :class:`plotly.graph_objects.layout.mapbox.layer.Line` + :class:`plotly.graph_objs.layout.mapbox.layer.Line` instance or dict with compatible properties maxzoom Sets the maximum zoom level (mapbox.layer.maxzoom). At @@ -624,7 +624,7 @@ def __init__( Sets the source type for this layer, that is the type of the layer data. symbol - :class:`plotly.graph_objects.layout.mapbox.layer.Symbol + :class:`plotly.graph_objs.layout.mapbox.layer.Symbol ` instance or dict with compatible properties templateitemname Used to refer to a named item in this array in the diff --git a/plotly/graph_objs/layout/polar/_angularaxis.py b/plotly/graph_objs/layout/polar/_angularaxis.py index 06ac09d71a..63881aeaad 100644 --- a/plotly/graph_objs/layout/polar/_angularaxis.py +++ b/plotly/graph_objs/layout/polar/_angularaxis.py @@ -1345,7 +1345,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.polar.an + A tuple of :class:`plotly.graph_objs.layout.polar.an gularaxis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1669,7 +1669,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.polar.an + A tuple of :class:`plotly.graph_objs.layout.polar.an gularaxis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults diff --git a/plotly/graph_objs/layout/polar/_radialaxis.py b/plotly/graph_objs/layout/polar/_radialaxis.py index fe43e3481a..db5b9a28ea 100644 --- a/plotly/graph_objs/layout/polar/_radialaxis.py +++ b/plotly/graph_objs/layout/polar/_radialaxis.py @@ -1340,7 +1340,7 @@ def _prop_descriptions(self): a reversed axis. Using "reversed" applies autorange on both ends and reverses the axis direction. autorangeoptions - :class:`plotly.graph_objects.layout.polar.radialaxis.Au + :class:`plotly.graph_objs.layout.polar.radialaxis.Au torangeoptions` instance or dict with compatible properties autotickangles @@ -1556,7 +1556,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.polar.ra + A tuple of :class:`plotly.graph_objs.layout.polar.ra dialaxis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1608,7 +1608,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.polar.radialaxis.Ti + :class:`plotly.graph_objs.layout.polar.radialaxis.Ti tle` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to @@ -1715,7 +1715,7 @@ def __init__( a reversed axis. Using "reversed" applies autorange on both ends and reverses the axis direction. autorangeoptions - :class:`plotly.graph_objects.layout.polar.radialaxis.Au + :class:`plotly.graph_objs.layout.polar.radialaxis.Au torangeoptions` instance or dict with compatible properties autotickangles @@ -1931,7 +1931,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.polar.ra + A tuple of :class:`plotly.graph_objs.layout.polar.ra dialaxis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1983,7 +1983,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.polar.radialaxis.Ti + :class:`plotly.graph_objs.layout.polar.radialaxis.Ti tle` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to diff --git a/plotly/graph_objs/layout/scene/_annotation.py b/plotly/graph_objs/layout/scene/_annotation.py index ba367344d6..8fccdb052e 100644 --- a/plotly/graph_objs/layout/scene/_annotation.py +++ b/plotly/graph_objs/layout/scene/_annotation.py @@ -863,7 +863,7 @@ def _prop_descriptions(self): (default) lets the text set the box height. Taller text will be clipped. hoverlabel - :class:`plotly.graph_objects.layout.scene.annotation.Ho + :class:`plotly.graph_objs.layout.scene.annotation.Ho verlabel` instance or dict with compatible properties hovertext Sets text to appear when hovering over this annotation. @@ -1073,7 +1073,7 @@ def __init__( (default) lets the text set the box height. Taller text will be clipped. hoverlabel - :class:`plotly.graph_objects.layout.scene.annotation.Ho + :class:`plotly.graph_objs.layout.scene.annotation.Ho verlabel` instance or dict with compatible properties hovertext Sets text to appear when hovering over this annotation. diff --git a/plotly/graph_objs/layout/scene/_camera.py b/plotly/graph_objs/layout/scene/_camera.py index cd73985412..0d2b65aedc 100644 --- a/plotly/graph_objs/layout/scene/_camera.py +++ b/plotly/graph_objs/layout/scene/_camera.py @@ -112,7 +112,7 @@ def _prop_descriptions(self): This vector determines the view point about the origin of this scene. projection - :class:`plotly.graph_objects.layout.scene.camera.Projec + :class:`plotly.graph_objs.layout.scene.camera.Projec tion` instance or dict with compatible properties up Sets the (x,y,z) components of the 'up' camera vector. @@ -143,7 +143,7 @@ def __init__( This vector determines the view point about the origin of this scene. projection - :class:`plotly.graph_objects.layout.scene.camera.Projec + :class:`plotly.graph_objs.layout.scene.camera.Projec tion` instance or dict with compatible properties up Sets the (x,y,z) components of the 'up' camera vector. diff --git a/plotly/graph_objs/layout/scene/_xaxis.py b/plotly/graph_objs/layout/scene/_xaxis.py index 3158a2e831..63fb3a5685 100644 --- a/plotly/graph_objs/layout/scene/_xaxis.py +++ b/plotly/graph_objs/layout/scene/_xaxis.py @@ -1377,7 +1377,7 @@ def _prop_descriptions(self): a reversed axis. Using "reversed" applies autorange on both ends and reverses the axis direction. autorangeoptions - :class:`plotly.graph_objects.layout.scene.xaxis.Autoran + :class:`plotly.graph_objs.layout.scene.xaxis.Autoran geoptions` instance or dict with compatible properties autotypenumbers Using "strict" a numeric string in trace data is not @@ -1593,7 +1593,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.scene.xa + A tuple of :class:`plotly.graph_objs.layout.scene.xa xis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1637,7 +1637,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.scene.xaxis.Title` + :class:`plotly.graph_objs.layout.scene.xaxis.Title` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to @@ -1744,7 +1744,7 @@ def __init__( a reversed axis. Using "reversed" applies autorange on both ends and reverses the axis direction. autorangeoptions - :class:`plotly.graph_objects.layout.scene.xaxis.Autoran + :class:`plotly.graph_objs.layout.scene.xaxis.Autoran geoptions` instance or dict with compatible properties autotypenumbers Using "strict" a numeric string in trace data is not @@ -1960,7 +1960,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.scene.xa + A tuple of :class:`plotly.graph_objs.layout.scene.xa xis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -2004,7 +2004,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.scene.xaxis.Title` + :class:`plotly.graph_objs.layout.scene.xaxis.Title` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to diff --git a/plotly/graph_objs/layout/scene/_yaxis.py b/plotly/graph_objs/layout/scene/_yaxis.py index 852837d398..9c49f7e203 100644 --- a/plotly/graph_objs/layout/scene/_yaxis.py +++ b/plotly/graph_objs/layout/scene/_yaxis.py @@ -1377,7 +1377,7 @@ def _prop_descriptions(self): a reversed axis. Using "reversed" applies autorange on both ends and reverses the axis direction. autorangeoptions - :class:`plotly.graph_objects.layout.scene.yaxis.Autoran + :class:`plotly.graph_objs.layout.scene.yaxis.Autoran geoptions` instance or dict with compatible properties autotypenumbers Using "strict" a numeric string in trace data is not @@ -1593,7 +1593,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.scene.ya + A tuple of :class:`plotly.graph_objs.layout.scene.ya xis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1637,7 +1637,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.scene.yaxis.Title` + :class:`plotly.graph_objs.layout.scene.yaxis.Title` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to @@ -1744,7 +1744,7 @@ def __init__( a reversed axis. Using "reversed" applies autorange on both ends and reverses the axis direction. autorangeoptions - :class:`plotly.graph_objects.layout.scene.yaxis.Autoran + :class:`plotly.graph_objs.layout.scene.yaxis.Autoran geoptions` instance or dict with compatible properties autotypenumbers Using "strict" a numeric string in trace data is not @@ -1960,7 +1960,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.scene.ya + A tuple of :class:`plotly.graph_objs.layout.scene.ya xis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -2004,7 +2004,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.scene.yaxis.Title` + :class:`plotly.graph_objs.layout.scene.yaxis.Title` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to diff --git a/plotly/graph_objs/layout/scene/_zaxis.py b/plotly/graph_objs/layout/scene/_zaxis.py index 81936c6485..12e5be008f 100644 --- a/plotly/graph_objs/layout/scene/_zaxis.py +++ b/plotly/graph_objs/layout/scene/_zaxis.py @@ -1377,7 +1377,7 @@ def _prop_descriptions(self): a reversed axis. Using "reversed" applies autorange on both ends and reverses the axis direction. autorangeoptions - :class:`plotly.graph_objects.layout.scene.zaxis.Autoran + :class:`plotly.graph_objs.layout.scene.zaxis.Autoran geoptions` instance or dict with compatible properties autotypenumbers Using "strict" a numeric string in trace data is not @@ -1593,7 +1593,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.scene.za + A tuple of :class:`plotly.graph_objs.layout.scene.za xis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1637,7 +1637,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.scene.zaxis.Title` + :class:`plotly.graph_objs.layout.scene.zaxis.Title` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to @@ -1744,7 +1744,7 @@ def __init__( a reversed axis. Using "reversed" applies autorange on both ends and reverses the axis direction. autorangeoptions - :class:`plotly.graph_objects.layout.scene.zaxis.Autoran + :class:`plotly.graph_objs.layout.scene.zaxis.Autoran geoptions` instance or dict with compatible properties autotypenumbers Using "strict" a numeric string in trace data is not @@ -1960,7 +1960,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.scene.za + A tuple of :class:`plotly.graph_objs.layout.scene.za xis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -2004,7 +2004,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.scene.zaxis.Title` + :class:`plotly.graph_objs.layout.scene.zaxis.Title` instance or dict with compatible properties type Sets the axis type. By default, plotly attempts to diff --git a/plotly/graph_objs/layout/template/_data.py b/plotly/graph_objs/layout/template/_data.py index ef3b5f6939..35e071517b 100644 --- a/plotly/graph_objs/layout/template/_data.py +++ b/plotly/graph_objs/layout/template/_data.py @@ -995,153 +995,153 @@ def waterfall(self, val): def _prop_descriptions(self): return """\ barpolar - A tuple of :class:`plotly.graph_objects.Barpolar` + A tuple of :class:`plotly.graph_objs.Barpolar` instances or dicts with compatible properties bar - A tuple of :class:`plotly.graph_objects.Bar` instances + A tuple of :class:`plotly.graph_objs.Bar` instances or dicts with compatible properties box - A tuple of :class:`plotly.graph_objects.Box` instances + A tuple of :class:`plotly.graph_objs.Box` instances or dicts with compatible properties candlestick - A tuple of :class:`plotly.graph_objects.Candlestick` + A tuple of :class:`plotly.graph_objs.Candlestick` instances or dicts with compatible properties carpet - A tuple of :class:`plotly.graph_objects.Carpet` + A tuple of :class:`plotly.graph_objs.Carpet` instances or dicts with compatible properties choroplethmapbox A tuple of - :class:`plotly.graph_objects.Choroplethmapbox` + :class:`plotly.graph_objs.Choroplethmapbox` instances or dicts with compatible properties choroplethmap - A tuple of :class:`plotly.graph_objects.Choroplethmap` + A tuple of :class:`plotly.graph_objs.Choroplethmap` instances or dicts with compatible properties choropleth - A tuple of :class:`plotly.graph_objects.Choropleth` + A tuple of :class:`plotly.graph_objs.Choropleth` instances or dicts with compatible properties cone - A tuple of :class:`plotly.graph_objects.Cone` instances + A tuple of :class:`plotly.graph_objs.Cone` instances or dicts with compatible properties contourcarpet - A tuple of :class:`plotly.graph_objects.Contourcarpet` + A tuple of :class:`plotly.graph_objs.Contourcarpet` instances or dicts with compatible properties contour - A tuple of :class:`plotly.graph_objects.Contour` + A tuple of :class:`plotly.graph_objs.Contour` instances or dicts with compatible properties densitymapbox - A tuple of :class:`plotly.graph_objects.Densitymapbox` + A tuple of :class:`plotly.graph_objs.Densitymapbox` instances or dicts with compatible properties densitymap - A tuple of :class:`plotly.graph_objects.Densitymap` + A tuple of :class:`plotly.graph_objs.Densitymap` instances or dicts with compatible properties funnelarea - A tuple of :class:`plotly.graph_objects.Funnelarea` + A tuple of :class:`plotly.graph_objs.Funnelarea` instances or dicts with compatible properties funnel - A tuple of :class:`plotly.graph_objects.Funnel` + A tuple of :class:`plotly.graph_objs.Funnel` instances or dicts with compatible properties heatmap - A tuple of :class:`plotly.graph_objects.Heatmap` + A tuple of :class:`plotly.graph_objs.Heatmap` instances or dicts with compatible properties histogram2dcontour A tuple of - :class:`plotly.graph_objects.Histogram2dContour` + :class:`plotly.graph_objs.Histogram2dContour` instances or dicts with compatible properties histogram2d - A tuple of :class:`plotly.graph_objects.Histogram2d` + A tuple of :class:`plotly.graph_objs.Histogram2d` instances or dicts with compatible properties histogram - A tuple of :class:`plotly.graph_objects.Histogram` + A tuple of :class:`plotly.graph_objs.Histogram` instances or dicts with compatible properties icicle - A tuple of :class:`plotly.graph_objects.Icicle` + A tuple of :class:`plotly.graph_objs.Icicle` instances or dicts with compatible properties image - A tuple of :class:`plotly.graph_objects.Image` + A tuple of :class:`plotly.graph_objs.Image` instances or dicts with compatible properties indicator - A tuple of :class:`plotly.graph_objects.Indicator` + A tuple of :class:`plotly.graph_objs.Indicator` instances or dicts with compatible properties isosurface - A tuple of :class:`plotly.graph_objects.Isosurface` + A tuple of :class:`plotly.graph_objs.Isosurface` instances or dicts with compatible properties mesh3d - A tuple of :class:`plotly.graph_objects.Mesh3d` + A tuple of :class:`plotly.graph_objs.Mesh3d` instances or dicts with compatible properties ohlc - A tuple of :class:`plotly.graph_objects.Ohlc` instances + A tuple of :class:`plotly.graph_objs.Ohlc` instances or dicts with compatible properties parcats - A tuple of :class:`plotly.graph_objects.Parcats` + A tuple of :class:`plotly.graph_objs.Parcats` instances or dicts with compatible properties parcoords - A tuple of :class:`plotly.graph_objects.Parcoords` + A tuple of :class:`plotly.graph_objs.Parcoords` instances or dicts with compatible properties pie - A tuple of :class:`plotly.graph_objects.Pie` instances + A tuple of :class:`plotly.graph_objs.Pie` instances or dicts with compatible properties sankey - A tuple of :class:`plotly.graph_objects.Sankey` + A tuple of :class:`plotly.graph_objs.Sankey` instances or dicts with compatible properties scatter3d - A tuple of :class:`plotly.graph_objects.Scatter3d` + A tuple of :class:`plotly.graph_objs.Scatter3d` instances or dicts with compatible properties scattercarpet - A tuple of :class:`plotly.graph_objects.Scattercarpet` + A tuple of :class:`plotly.graph_objs.Scattercarpet` instances or dicts with compatible properties scattergeo - A tuple of :class:`plotly.graph_objects.Scattergeo` + A tuple of :class:`plotly.graph_objs.Scattergeo` instances or dicts with compatible properties scattergl - A tuple of :class:`plotly.graph_objects.Scattergl` + A tuple of :class:`plotly.graph_objs.Scattergl` instances or dicts with compatible properties scattermapbox - A tuple of :class:`plotly.graph_objects.Scattermapbox` + A tuple of :class:`plotly.graph_objs.Scattermapbox` instances or dicts with compatible properties scattermap - A tuple of :class:`plotly.graph_objects.Scattermap` + A tuple of :class:`plotly.graph_objs.Scattermap` instances or dicts with compatible properties scatterpolargl - A tuple of :class:`plotly.graph_objects.Scatterpolargl` + A tuple of :class:`plotly.graph_objs.Scatterpolargl` instances or dicts with compatible properties scatterpolar - A tuple of :class:`plotly.graph_objects.Scatterpolar` + A tuple of :class:`plotly.graph_objs.Scatterpolar` instances or dicts with compatible properties scatter - A tuple of :class:`plotly.graph_objects.Scatter` + A tuple of :class:`plotly.graph_objs.Scatter` instances or dicts with compatible properties scattersmith - A tuple of :class:`plotly.graph_objects.Scattersmith` + A tuple of :class:`plotly.graph_objs.Scattersmith` instances or dicts with compatible properties scatterternary - A tuple of :class:`plotly.graph_objects.Scatterternary` + A tuple of :class:`plotly.graph_objs.Scatterternary` instances or dicts with compatible properties splom - A tuple of :class:`plotly.graph_objects.Splom` + A tuple of :class:`plotly.graph_objs.Splom` instances or dicts with compatible properties streamtube - A tuple of :class:`plotly.graph_objects.Streamtube` + A tuple of :class:`plotly.graph_objs.Streamtube` instances or dicts with compatible properties sunburst - A tuple of :class:`plotly.graph_objects.Sunburst` + A tuple of :class:`plotly.graph_objs.Sunburst` instances or dicts with compatible properties surface - A tuple of :class:`plotly.graph_objects.Surface` + A tuple of :class:`plotly.graph_objs.Surface` instances or dicts with compatible properties table - A tuple of :class:`plotly.graph_objects.Table` + A tuple of :class:`plotly.graph_objs.Table` instances or dicts with compatible properties treemap - A tuple of :class:`plotly.graph_objects.Treemap` + A tuple of :class:`plotly.graph_objs.Treemap` instances or dicts with compatible properties violin - A tuple of :class:`plotly.graph_objects.Violin` + A tuple of :class:`plotly.graph_objs.Violin` instances or dicts with compatible properties volume - A tuple of :class:`plotly.graph_objects.Volume` + A tuple of :class:`plotly.graph_objs.Volume` instances or dicts with compatible properties waterfall - A tuple of :class:`plotly.graph_objects.Waterfall` + A tuple of :class:`plotly.graph_objs.Waterfall` instances or dicts with compatible properties """ @@ -1209,153 +1209,153 @@ def __init__( an instance of :class:`plotly.graph_objs.layout.template.Data` barpolar - A tuple of :class:`plotly.graph_objects.Barpolar` + A tuple of :class:`plotly.graph_objs.Barpolar` instances or dicts with compatible properties bar - A tuple of :class:`plotly.graph_objects.Bar` instances + A tuple of :class:`plotly.graph_objs.Bar` instances or dicts with compatible properties box - A tuple of :class:`plotly.graph_objects.Box` instances + A tuple of :class:`plotly.graph_objs.Box` instances or dicts with compatible properties candlestick - A tuple of :class:`plotly.graph_objects.Candlestick` + A tuple of :class:`plotly.graph_objs.Candlestick` instances or dicts with compatible properties carpet - A tuple of :class:`plotly.graph_objects.Carpet` + A tuple of :class:`plotly.graph_objs.Carpet` instances or dicts with compatible properties choroplethmapbox A tuple of - :class:`plotly.graph_objects.Choroplethmapbox` + :class:`plotly.graph_objs.Choroplethmapbox` instances or dicts with compatible properties choroplethmap - A tuple of :class:`plotly.graph_objects.Choroplethmap` + A tuple of :class:`plotly.graph_objs.Choroplethmap` instances or dicts with compatible properties choropleth - A tuple of :class:`plotly.graph_objects.Choropleth` + A tuple of :class:`plotly.graph_objs.Choropleth` instances or dicts with compatible properties cone - A tuple of :class:`plotly.graph_objects.Cone` instances + A tuple of :class:`plotly.graph_objs.Cone` instances or dicts with compatible properties contourcarpet - A tuple of :class:`plotly.graph_objects.Contourcarpet` + A tuple of :class:`plotly.graph_objs.Contourcarpet` instances or dicts with compatible properties contour - A tuple of :class:`plotly.graph_objects.Contour` + A tuple of :class:`plotly.graph_objs.Contour` instances or dicts with compatible properties densitymapbox - A tuple of :class:`plotly.graph_objects.Densitymapbox` + A tuple of :class:`plotly.graph_objs.Densitymapbox` instances or dicts with compatible properties densitymap - A tuple of :class:`plotly.graph_objects.Densitymap` + A tuple of :class:`plotly.graph_objs.Densitymap` instances or dicts with compatible properties funnelarea - A tuple of :class:`plotly.graph_objects.Funnelarea` + A tuple of :class:`plotly.graph_objs.Funnelarea` instances or dicts with compatible properties funnel - A tuple of :class:`plotly.graph_objects.Funnel` + A tuple of :class:`plotly.graph_objs.Funnel` instances or dicts with compatible properties heatmap - A tuple of :class:`plotly.graph_objects.Heatmap` + A tuple of :class:`plotly.graph_objs.Heatmap` instances or dicts with compatible properties histogram2dcontour A tuple of - :class:`plotly.graph_objects.Histogram2dContour` + :class:`plotly.graph_objs.Histogram2dContour` instances or dicts with compatible properties histogram2d - A tuple of :class:`plotly.graph_objects.Histogram2d` + A tuple of :class:`plotly.graph_objs.Histogram2d` instances or dicts with compatible properties histogram - A tuple of :class:`plotly.graph_objects.Histogram` + A tuple of :class:`plotly.graph_objs.Histogram` instances or dicts with compatible properties icicle - A tuple of :class:`plotly.graph_objects.Icicle` + A tuple of :class:`plotly.graph_objs.Icicle` instances or dicts with compatible properties image - A tuple of :class:`plotly.graph_objects.Image` + A tuple of :class:`plotly.graph_objs.Image` instances or dicts with compatible properties indicator - A tuple of :class:`plotly.graph_objects.Indicator` + A tuple of :class:`plotly.graph_objs.Indicator` instances or dicts with compatible properties isosurface - A tuple of :class:`plotly.graph_objects.Isosurface` + A tuple of :class:`plotly.graph_objs.Isosurface` instances or dicts with compatible properties mesh3d - A tuple of :class:`plotly.graph_objects.Mesh3d` + A tuple of :class:`plotly.graph_objs.Mesh3d` instances or dicts with compatible properties ohlc - A tuple of :class:`plotly.graph_objects.Ohlc` instances + A tuple of :class:`plotly.graph_objs.Ohlc` instances or dicts with compatible properties parcats - A tuple of :class:`plotly.graph_objects.Parcats` + A tuple of :class:`plotly.graph_objs.Parcats` instances or dicts with compatible properties parcoords - A tuple of :class:`plotly.graph_objects.Parcoords` + A tuple of :class:`plotly.graph_objs.Parcoords` instances or dicts with compatible properties pie - A tuple of :class:`plotly.graph_objects.Pie` instances + A tuple of :class:`plotly.graph_objs.Pie` instances or dicts with compatible properties sankey - A tuple of :class:`plotly.graph_objects.Sankey` + A tuple of :class:`plotly.graph_objs.Sankey` instances or dicts with compatible properties scatter3d - A tuple of :class:`plotly.graph_objects.Scatter3d` + A tuple of :class:`plotly.graph_objs.Scatter3d` instances or dicts with compatible properties scattercarpet - A tuple of :class:`plotly.graph_objects.Scattercarpet` + A tuple of :class:`plotly.graph_objs.Scattercarpet` instances or dicts with compatible properties scattergeo - A tuple of :class:`plotly.graph_objects.Scattergeo` + A tuple of :class:`plotly.graph_objs.Scattergeo` instances or dicts with compatible properties scattergl - A tuple of :class:`plotly.graph_objects.Scattergl` + A tuple of :class:`plotly.graph_objs.Scattergl` instances or dicts with compatible properties scattermapbox - A tuple of :class:`plotly.graph_objects.Scattermapbox` + A tuple of :class:`plotly.graph_objs.Scattermapbox` instances or dicts with compatible properties scattermap - A tuple of :class:`plotly.graph_objects.Scattermap` + A tuple of :class:`plotly.graph_objs.Scattermap` instances or dicts with compatible properties scatterpolargl - A tuple of :class:`plotly.graph_objects.Scatterpolargl` + A tuple of :class:`plotly.graph_objs.Scatterpolargl` instances or dicts with compatible properties scatterpolar - A tuple of :class:`plotly.graph_objects.Scatterpolar` + A tuple of :class:`plotly.graph_objs.Scatterpolar` instances or dicts with compatible properties scatter - A tuple of :class:`plotly.graph_objects.Scatter` + A tuple of :class:`plotly.graph_objs.Scatter` instances or dicts with compatible properties scattersmith - A tuple of :class:`plotly.graph_objects.Scattersmith` + A tuple of :class:`plotly.graph_objs.Scattersmith` instances or dicts with compatible properties scatterternary - A tuple of :class:`plotly.graph_objects.Scatterternary` + A tuple of :class:`plotly.graph_objs.Scatterternary` instances or dicts with compatible properties splom - A tuple of :class:`plotly.graph_objects.Splom` + A tuple of :class:`plotly.graph_objs.Splom` instances or dicts with compatible properties streamtube - A tuple of :class:`plotly.graph_objects.Streamtube` + A tuple of :class:`plotly.graph_objs.Streamtube` instances or dicts with compatible properties sunburst - A tuple of :class:`plotly.graph_objects.Sunburst` + A tuple of :class:`plotly.graph_objs.Sunburst` instances or dicts with compatible properties surface - A tuple of :class:`plotly.graph_objects.Surface` + A tuple of :class:`plotly.graph_objs.Surface` instances or dicts with compatible properties table - A tuple of :class:`plotly.graph_objects.Table` + A tuple of :class:`plotly.graph_objs.Table` instances or dicts with compatible properties treemap - A tuple of :class:`plotly.graph_objects.Treemap` + A tuple of :class:`plotly.graph_objs.Treemap` instances or dicts with compatible properties violin - A tuple of :class:`plotly.graph_objects.Violin` + A tuple of :class:`plotly.graph_objs.Violin` instances or dicts with compatible properties volume - A tuple of :class:`plotly.graph_objects.Volume` + A tuple of :class:`plotly.graph_objs.Volume` instances or dicts with compatible properties waterfall - A tuple of :class:`plotly.graph_objects.Waterfall` + A tuple of :class:`plotly.graph_objs.Waterfall` instances or dicts with compatible properties Returns diff --git a/plotly/graph_objs/layout/ternary/_aaxis.py b/plotly/graph_objs/layout/ternary/_aaxis.py index 636e68a6b4..b2f9f0a77a 100644 --- a/plotly/graph_objs/layout/ternary/_aaxis.py +++ b/plotly/graph_objs/layout/ternary/_aaxis.py @@ -1083,7 +1083,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.ternary. + A tuple of :class:`plotly.graph_objs.layout.ternary. aaxis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1135,7 +1135,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.ternary.aaxis.Title + :class:`plotly.graph_objs.layout.ternary.aaxis.Title ` instance or dict with compatible properties uirevision Controls persistence of user-driven changes in axis @@ -1346,7 +1346,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.ternary. + A tuple of :class:`plotly.graph_objs.layout.ternary. aaxis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1398,7 +1398,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.ternary.aaxis.Title + :class:`plotly.graph_objs.layout.ternary.aaxis.Title ` instance or dict with compatible properties uirevision Controls persistence of user-driven changes in axis diff --git a/plotly/graph_objs/layout/ternary/_baxis.py b/plotly/graph_objs/layout/ternary/_baxis.py index c6604312fe..48216399b5 100644 --- a/plotly/graph_objs/layout/ternary/_baxis.py +++ b/plotly/graph_objs/layout/ternary/_baxis.py @@ -1083,7 +1083,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.ternary. + A tuple of :class:`plotly.graph_objs.layout.ternary. baxis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1135,7 +1135,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.ternary.baxis.Title + :class:`plotly.graph_objs.layout.ternary.baxis.Title ` instance or dict with compatible properties uirevision Controls persistence of user-driven changes in axis @@ -1346,7 +1346,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.ternary. + A tuple of :class:`plotly.graph_objs.layout.ternary. baxis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1398,7 +1398,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.ternary.baxis.Title + :class:`plotly.graph_objs.layout.ternary.baxis.Title ` instance or dict with compatible properties uirevision Controls persistence of user-driven changes in axis diff --git a/plotly/graph_objs/layout/ternary/_caxis.py b/plotly/graph_objs/layout/ternary/_caxis.py index 486cf470ef..086118838c 100644 --- a/plotly/graph_objs/layout/ternary/_caxis.py +++ b/plotly/graph_objs/layout/ternary/_caxis.py @@ -1083,7 +1083,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.ternary. + A tuple of :class:`plotly.graph_objs.layout.ternary. caxis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1135,7 +1135,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.ternary.caxis.Title + :class:`plotly.graph_objs.layout.ternary.caxis.Title ` instance or dict with compatible properties uirevision Controls persistence of user-driven changes in axis @@ -1346,7 +1346,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.layout.ternary. + A tuple of :class:`plotly.graph_objs.layout.ternary. caxis.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1398,7 +1398,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.layout.ternary.caxis.Title + :class:`plotly.graph_objs.layout.ternary.caxis.Title ` instance or dict with compatible properties uirevision Controls persistence of user-driven changes in axis diff --git a/plotly/graph_objs/layout/xaxis/_rangeslider.py b/plotly/graph_objs/layout/xaxis/_rangeslider.py index 9d30a4d37d..f0732b2bbb 100644 --- a/plotly/graph_objs/layout/xaxis/_rangeslider.py +++ b/plotly/graph_objs/layout/xaxis/_rangeslider.py @@ -218,7 +218,7 @@ def _prop_descriptions(self): visible. If visible, perpendicular axes will be set to `fixedrange` yaxis - :class:`plotly.graph_objects.layout.xaxis.rangeslider.Y + :class:`plotly.graph_objs.layout.xaxis.rangeslider.Y Axis` instance or dict with compatible properties """ @@ -272,7 +272,7 @@ def __init__( visible. If visible, perpendicular axes will be set to `fixedrange` yaxis - :class:`plotly.graph_objects.layout.xaxis.rangeslider.Y + :class:`plotly.graph_objs.layout.xaxis.rangeslider.Y Axis` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/mesh3d/_colorbar.py b/plotly/graph_objs/mesh3d/_colorbar.py index 6e23c41709..ce868573d8 100644 --- a/plotly/graph_objs/mesh3d/_colorbar.py +++ b/plotly/graph_objs/mesh3d/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.mesh3d.colorbar + A tuple of :class:`plotly.graph_objs.mesh3d.colorbar .Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.mesh3d.colorbar.Title` + :class:`plotly.graph_objs.mesh3d.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.mesh3d.colorbar + A tuple of :class:`plotly.graph_objs.mesh3d.colorbar .Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.mesh3d.colorbar.Title` + :class:`plotly.graph_objs.mesh3d.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/ohlc/_decreasing.py b/plotly/graph_objs/ohlc/_decreasing.py index bed4934319..8587afd0bc 100644 --- a/plotly/graph_objs/ohlc/_decreasing.py +++ b/plotly/graph_objs/ohlc/_decreasing.py @@ -33,7 +33,7 @@ def line(self, val): def _prop_descriptions(self): return """\ line - :class:`plotly.graph_objects.ohlc.decreasing.Line` + :class:`plotly.graph_objs.ohlc.decreasing.Line` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, line=None, **kwargs): an instance of :class:`plotly.graph_objs.ohlc.Decreasing` line - :class:`plotly.graph_objects.ohlc.decreasing.Line` + :class:`plotly.graph_objs.ohlc.decreasing.Line` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/ohlc/_increasing.py b/plotly/graph_objs/ohlc/_increasing.py index 77ff3e4269..c5340e96c2 100644 --- a/plotly/graph_objs/ohlc/_increasing.py +++ b/plotly/graph_objs/ohlc/_increasing.py @@ -33,7 +33,7 @@ def line(self, val): def _prop_descriptions(self): return """\ line - :class:`plotly.graph_objects.ohlc.increasing.Line` + :class:`plotly.graph_objs.ohlc.increasing.Line` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, line=None, **kwargs): an instance of :class:`plotly.graph_objs.ohlc.Increasing` line - :class:`plotly.graph_objects.ohlc.increasing.Line` + :class:`plotly.graph_objs.ohlc.increasing.Line` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/parcats/_line.py b/plotly/graph_objs/parcats/_line.py index da1e8e7de6..a66fb5e0c7 100644 --- a/plotly/graph_objs/parcats/_line.py +++ b/plotly/graph_objs/parcats/_line.py @@ -433,7 +433,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.parcats.line.ColorBar` + :class:`plotly.graph_objs.parcats.line.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -573,7 +573,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.parcats.line.ColorBar` + :class:`plotly.graph_objs.parcats.line.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in diff --git a/plotly/graph_objs/parcats/line/_colorbar.py b/plotly/graph_objs/parcats/line/_colorbar.py index 453686b028..e63fff850f 100644 --- a/plotly/graph_objs/parcats/line/_colorbar.py +++ b/plotly/graph_objs/parcats/line/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.parcats.line.co + A tuple of :class:`plotly.graph_objs.parcats.line.co lorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.parcats.line.colorbar.Titl + :class:`plotly.graph_objs.parcats.line.colorbar.Titl e` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.parcats.line.co + A tuple of :class:`plotly.graph_objs.parcats.line.co lorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.parcats.line.colorbar.Titl + :class:`plotly.graph_objs.parcats.line.colorbar.Titl e` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/parcoords/_line.py b/plotly/graph_objs/parcoords/_line.py index 82478ae9b0..fd174f9095 100644 --- a/plotly/graph_objs/parcoords/_line.py +++ b/plotly/graph_objs/parcoords/_line.py @@ -366,7 +366,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.parcoords.line.ColorBar` + :class:`plotly.graph_objs.parcoords.line.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -470,7 +470,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.parcoords.line.ColorBar` + :class:`plotly.graph_objs.parcoords.line.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in diff --git a/plotly/graph_objs/parcoords/_unselected.py b/plotly/graph_objs/parcoords/_unselected.py index 576feb6c24..ece207fda5 100644 --- a/plotly/graph_objs/parcoords/_unselected.py +++ b/plotly/graph_objs/parcoords/_unselected.py @@ -33,7 +33,7 @@ def line(self, val): def _prop_descriptions(self): return """\ line - :class:`plotly.graph_objects.parcoords.unselected.Line` + :class:`plotly.graph_objs.parcoords.unselected.Line` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, line=None, **kwargs): an instance of :class:`plotly.graph_objs.parcoords.Unselected` line - :class:`plotly.graph_objects.parcoords.unselected.Line` + :class:`plotly.graph_objs.parcoords.unselected.Line` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/parcoords/line/_colorbar.py b/plotly/graph_objs/parcoords/line/_colorbar.py index 43cf23b968..75b25f831f 100644 --- a/plotly/graph_objs/parcoords/line/_colorbar.py +++ b/plotly/graph_objs/parcoords/line/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.parcoords.line. + A tuple of :class:`plotly.graph_objs.parcoords.line. colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.parcoords.line.colorbar.Ti + :class:`plotly.graph_objs.parcoords.line.colorbar.Ti tle` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.parcoords.line. + A tuple of :class:`plotly.graph_objs.parcoords.line. colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.parcoords.line.colorbar.Ti + :class:`plotly.graph_objs.parcoords.line.colorbar.Ti tle` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/pie/_marker.py b/plotly/graph_objs/pie/_marker.py index 49f0443573..33a8fbb513 100644 --- a/plotly/graph_objs/pie/_marker.py +++ b/plotly/graph_objs/pie/_marker.py @@ -98,7 +98,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `colors`. line - :class:`plotly.graph_objects.pie.marker.Line` instance + :class:`plotly.graph_objs.pie.marker.Line` instance or dict with compatible properties pattern Sets the pattern within the marker. @@ -123,7 +123,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `colors`. line - :class:`plotly.graph_objects.pie.marker.Line` instance + :class:`plotly.graph_objs.pie.marker.Line` instance or dict with compatible properties pattern Sets the pattern within the marker. diff --git a/plotly/graph_objs/sankey/_link.py b/plotly/graph_objs/sankey/_link.py index 3ecea7c6d6..0d3f06dc76 100644 --- a/plotly/graph_objs/sankey/_link.py +++ b/plotly/graph_objs/sankey/_link.py @@ -502,7 +502,7 @@ def _prop_descriptions(self): grey link will be used. colorscales A tuple of - :class:`plotly.graph_objects.sankey.link.Colorscale` + :class:`plotly.graph_objs.sankey.link.Colorscale` instances or dicts with compatible properties colorscaledefaults When used in a template (as @@ -532,7 +532,7 @@ def _prop_descriptions(self): displayed upon hovering. But, if `none` is set, click and hover events are still fired. hoverlabel - :class:`plotly.graph_objects.sankey.link.Hoverlabel` + :class:`plotly.graph_objs.sankey.link.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -574,7 +574,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `label`. line - :class:`plotly.graph_objects.sankey.link.Line` instance + :class:`plotly.graph_objs.sankey.link.Line` instance or dict with compatible properties source An integer number `[0..nodes.length - 1]` that @@ -642,7 +642,7 @@ def __init__( grey link will be used. colorscales A tuple of - :class:`plotly.graph_objects.sankey.link.Colorscale` + :class:`plotly.graph_objs.sankey.link.Colorscale` instances or dicts with compatible properties colorscaledefaults When used in a template (as @@ -672,7 +672,7 @@ def __init__( displayed upon hovering. But, if `none` is set, click and hover events are still fired. hoverlabel - :class:`plotly.graph_objects.sankey.link.Hoverlabel` + :class:`plotly.graph_objs.sankey.link.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -714,7 +714,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `label`. line - :class:`plotly.graph_objects.sankey.link.Line` instance + :class:`plotly.graph_objs.sankey.link.Line` instance or dict with compatible properties source An integer number `[0..nodes.length - 1]` that diff --git a/plotly/graph_objs/sankey/_node.py b/plotly/graph_objs/sankey/_node.py index 8bb6492aea..495761a762 100644 --- a/plotly/graph_objs/sankey/_node.py +++ b/plotly/graph_objs/sankey/_node.py @@ -454,7 +454,7 @@ def _prop_descriptions(self): displayed upon hovering. But, if `none` is set, click and hover events are still fired. hoverlabel - :class:`plotly.graph_objects.sankey.node.Hoverlabel` + :class:`plotly.graph_objs.sankey.node.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -497,7 +497,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `label`. line - :class:`plotly.graph_objects.sankey.node.Line` instance + :class:`plotly.graph_objs.sankey.node.Line` instance or dict with compatible properties pad Sets the padding (in px) between the `nodes`. @@ -577,7 +577,7 @@ def __init__( displayed upon hovering. But, if `none` is set, click and hover events are still fired. hoverlabel - :class:`plotly.graph_objects.sankey.node.Hoverlabel` + :class:`plotly.graph_objs.sankey.node.Hoverlabel` instance or dict with compatible properties hovertemplate Template string used for rendering the information that @@ -620,7 +620,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `label`. line - :class:`plotly.graph_objects.sankey.node.Line` instance + :class:`plotly.graph_objs.sankey.node.Line` instance or dict with compatible properties pad Sets the padding (in px) between the `nodes`. diff --git a/plotly/graph_objs/scatter/_marker.py b/plotly/graph_objs/scatter/_marker.py index 3543558763..2e22445578 100644 --- a/plotly/graph_objs/scatter/_marker.py +++ b/plotly/graph_objs/scatter/_marker.py @@ -814,7 +814,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scatter.marker.ColorBar` + :class:`plotly.graph_objs.scatter.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -834,10 +834,10 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `color`. gradient - :class:`plotly.graph_objects.scatter.marker.Gradient` + :class:`plotly.graph_objs.scatter.marker.Gradient` instance or dict with compatible properties line - :class:`plotly.graph_objects.scatter.marker.Line` + :class:`plotly.graph_objs.scatter.marker.Line` instance or dict with compatible properties maxdisplayed Sets a maximum number of points to be drawn on the @@ -994,7 +994,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scatter.marker.ColorBar` + :class:`plotly.graph_objs.scatter.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -1014,10 +1014,10 @@ def __init__( Sets the source reference on Chart Studio Cloud for `color`. gradient - :class:`plotly.graph_objects.scatter.marker.Gradient` + :class:`plotly.graph_objs.scatter.marker.Gradient` instance or dict with compatible properties line - :class:`plotly.graph_objects.scatter.marker.Line` + :class:`plotly.graph_objs.scatter.marker.Line` instance or dict with compatible properties maxdisplayed Sets a maximum number of points to be drawn on the diff --git a/plotly/graph_objs/scatter/_selected.py b/plotly/graph_objs/scatter/_selected.py index d8f7e1d44d..340bf80c24 100644 --- a/plotly/graph_objs/scatter/_selected.py +++ b/plotly/graph_objs/scatter/_selected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scatter.selected.Marker` + :class:`plotly.graph_objs.scatter.selected.Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatter.selected.Textfont` + :class:`plotly.graph_objs.scatter.selected.Textfont` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scatter.Selected` marker - :class:`plotly.graph_objects.scatter.selected.Marker` + :class:`plotly.graph_objs.scatter.selected.Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatter.selected.Textfont` + :class:`plotly.graph_objs.scatter.selected.Textfont` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scatter/_unselected.py b/plotly/graph_objs/scatter/_unselected.py index e96e33b8cb..2af8547877 100644 --- a/plotly/graph_objs/scatter/_unselected.py +++ b/plotly/graph_objs/scatter/_unselected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scatter.unselected.Marker` + :class:`plotly.graph_objs.scatter.unselected.Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatter.unselected.Textfon + :class:`plotly.graph_objs.scatter.unselected.Textfon t` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scatter.Unselected` marker - :class:`plotly.graph_objects.scatter.unselected.Marker` + :class:`plotly.graph_objs.scatter.unselected.Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatter.unselected.Textfon + :class:`plotly.graph_objs.scatter.unselected.Textfon t` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scatter/marker/_colorbar.py b/plotly/graph_objs/scatter/marker/_colorbar.py index 69d2530c57..553c42fa11 100644 --- a/plotly/graph_objs/scatter/marker/_colorbar.py +++ b/plotly/graph_objs/scatter/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scatter.marker. + A tuple of :class:`plotly.graph_objs.scatter.marker. colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scatter.marker.colorbar.Ti + :class:`plotly.graph_objs.scatter.marker.colorbar.Ti tle` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scatter.marker. + A tuple of :class:`plotly.graph_objs.scatter.marker. colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scatter.marker.colorbar.Ti + :class:`plotly.graph_objs.scatter.marker.colorbar.Ti tle` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/scatter3d/_line.py b/plotly/graph_objs/scatter3d/_line.py index d1d72347aa..d6e5ec057c 100644 --- a/plotly/graph_objs/scatter3d/_line.py +++ b/plotly/graph_objs/scatter3d/_line.py @@ -406,7 +406,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scatter3d.line.ColorBar` + :class:`plotly.graph_objs.scatter3d.line.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -516,7 +516,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scatter3d.line.ColorBar` + :class:`plotly.graph_objs.scatter3d.line.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in diff --git a/plotly/graph_objs/scatter3d/_marker.py b/plotly/graph_objs/scatter3d/_marker.py index 7f4e422258..896a67eec5 100644 --- a/plotly/graph_objs/scatter3d/_marker.py +++ b/plotly/graph_objs/scatter3d/_marker.py @@ -554,7 +554,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scatter3d.marker.ColorBar` + :class:`plotly.graph_objs.scatter3d.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -574,7 +574,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `color`. line - :class:`plotly.graph_objects.scatter3d.marker.Line` + :class:`plotly.graph_objs.scatter3d.marker.Line` instance or dict with compatible properties opacity Sets the marker opacity. Note that the marker opacity @@ -699,7 +699,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scatter3d.marker.ColorBar` + :class:`plotly.graph_objs.scatter3d.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -719,7 +719,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `color`. line - :class:`plotly.graph_objects.scatter3d.marker.Line` + :class:`plotly.graph_objs.scatter3d.marker.Line` instance or dict with compatible properties opacity Sets the marker opacity. Note that the marker opacity diff --git a/plotly/graph_objs/scatter3d/_projection.py b/plotly/graph_objs/scatter3d/_projection.py index de02e0c363..fdaf4e1475 100644 --- a/plotly/graph_objs/scatter3d/_projection.py +++ b/plotly/graph_objs/scatter3d/_projection.py @@ -71,13 +71,13 @@ def z(self, val): def _prop_descriptions(self): return """\ x - :class:`plotly.graph_objects.scatter3d.projection.X` + :class:`plotly.graph_objs.scatter3d.projection.X` instance or dict with compatible properties y - :class:`plotly.graph_objects.scatter3d.projection.Y` + :class:`plotly.graph_objs.scatter3d.projection.Y` instance or dict with compatible properties z - :class:`plotly.graph_objects.scatter3d.projection.Z` + :class:`plotly.graph_objs.scatter3d.projection.Z` instance or dict with compatible properties """ @@ -92,13 +92,13 @@ def __init__(self, arg=None, x=None, y=None, z=None, **kwargs): an instance of :class:`plotly.graph_objs.scatter3d.Projection` x - :class:`plotly.graph_objects.scatter3d.projection.X` + :class:`plotly.graph_objs.scatter3d.projection.X` instance or dict with compatible properties y - :class:`plotly.graph_objects.scatter3d.projection.Y` + :class:`plotly.graph_objs.scatter3d.projection.Y` instance or dict with compatible properties z - :class:`plotly.graph_objects.scatter3d.projection.Z` + :class:`plotly.graph_objs.scatter3d.projection.Z` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scatter3d/line/_colorbar.py b/plotly/graph_objs/scatter3d/line/_colorbar.py index b2b308e7b6..bf46ec0c9a 100644 --- a/plotly/graph_objs/scatter3d/line/_colorbar.py +++ b/plotly/graph_objs/scatter3d/line/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scatter3d.line. + A tuple of :class:`plotly.graph_objs.scatter3d.line. colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scatter3d.line.colorbar.Ti + :class:`plotly.graph_objs.scatter3d.line.colorbar.Ti tle` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scatter3d.line. + A tuple of :class:`plotly.graph_objs.scatter3d.line. colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scatter3d.line.colorbar.Ti + :class:`plotly.graph_objs.scatter3d.line.colorbar.Ti tle` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/scatter3d/marker/_colorbar.py b/plotly/graph_objs/scatter3d/marker/_colorbar.py index f362a2b493..99e7a3b0f9 100644 --- a/plotly/graph_objs/scatter3d/marker/_colorbar.py +++ b/plotly/graph_objs/scatter3d/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scatter3d.marke + A tuple of :class:`plotly.graph_objs.scatter3d.marke r.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scatter3d.marker.colorbar. + :class:`plotly.graph_objs.scatter3d.marker.colorbar. Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scatter3d.marke + A tuple of :class:`plotly.graph_objs.scatter3d.marke r.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scatter3d.marker.colorbar. + :class:`plotly.graph_objs.scatter3d.marker.colorbar. Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/scattercarpet/_marker.py b/plotly/graph_objs/scattercarpet/_marker.py index 3dfb1f719c..46867c419a 100644 --- a/plotly/graph_objs/scattercarpet/_marker.py +++ b/plotly/graph_objs/scattercarpet/_marker.py @@ -814,7 +814,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scattercarpet.marker.Color + :class:`plotly.graph_objs.scattercarpet.marker.Color Bar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -834,10 +834,10 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `color`. gradient - :class:`plotly.graph_objects.scattercarpet.marker.Gradi + :class:`plotly.graph_objs.scattercarpet.marker.Gradi ent` instance or dict with compatible properties line - :class:`plotly.graph_objects.scattercarpet.marker.Line` + :class:`plotly.graph_objs.scattercarpet.marker.Line` instance or dict with compatible properties maxdisplayed Sets a maximum number of points to be drawn on the @@ -994,7 +994,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scattercarpet.marker.Color + :class:`plotly.graph_objs.scattercarpet.marker.Color Bar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -1014,10 +1014,10 @@ def __init__( Sets the source reference on Chart Studio Cloud for `color`. gradient - :class:`plotly.graph_objects.scattercarpet.marker.Gradi + :class:`plotly.graph_objs.scattercarpet.marker.Gradi ent` instance or dict with compatible properties line - :class:`plotly.graph_objects.scattercarpet.marker.Line` + :class:`plotly.graph_objs.scattercarpet.marker.Line` instance or dict with compatible properties maxdisplayed Sets a maximum number of points to be drawn on the diff --git a/plotly/graph_objs/scattercarpet/_selected.py b/plotly/graph_objs/scattercarpet/_selected.py index c92d8b3832..1914078028 100644 --- a/plotly/graph_objs/scattercarpet/_selected.py +++ b/plotly/graph_objs/scattercarpet/_selected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scattercarpet.selected.Mar + :class:`plotly.graph_objs.scattercarpet.selected.Mar ker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattercarpet.selected.Tex + :class:`plotly.graph_objs.scattercarpet.selected.Tex tfont` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scattercarpet.Selected` marker - :class:`plotly.graph_objects.scattercarpet.selected.Mar + :class:`plotly.graph_objs.scattercarpet.selected.Mar ker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattercarpet.selected.Tex + :class:`plotly.graph_objs.scattercarpet.selected.Tex tfont` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scattercarpet/_unselected.py b/plotly/graph_objs/scattercarpet/_unselected.py index ab71af9570..2043c3eed2 100644 --- a/plotly/graph_objs/scattercarpet/_unselected.py +++ b/plotly/graph_objs/scattercarpet/_unselected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scattercarpet.unselected.M + :class:`plotly.graph_objs.scattercarpet.unselected.M arker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattercarpet.unselected.T + :class:`plotly.graph_objs.scattercarpet.unselected.T extfont` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scattercarpet.Unselected` marker - :class:`plotly.graph_objects.scattercarpet.unselected.M + :class:`plotly.graph_objs.scattercarpet.unselected.M arker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattercarpet.unselected.T + :class:`plotly.graph_objs.scattercarpet.unselected.T extfont` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scattercarpet/marker/_colorbar.py b/plotly/graph_objs/scattercarpet/marker/_colorbar.py index 1d5c07fc64..47754fc31f 100644 --- a/plotly/graph_objs/scattercarpet/marker/_colorbar.py +++ b/plotly/graph_objs/scattercarpet/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scattercarpet.m + A tuple of :class:`plotly.graph_objs.scattercarpet.m arker.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scattercarpet.marker.color + :class:`plotly.graph_objs.scattercarpet.marker.color bar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scattercarpet.m + A tuple of :class:`plotly.graph_objs.scattercarpet.m arker.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scattercarpet.marker.color + :class:`plotly.graph_objs.scattercarpet.marker.color bar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/scattergeo/_marker.py b/plotly/graph_objs/scattergeo/_marker.py index 3db78be645..dd1615ec41 100644 --- a/plotly/graph_objs/scattergeo/_marker.py +++ b/plotly/graph_objs/scattergeo/_marker.py @@ -797,7 +797,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scattergeo.marker.ColorBar + :class:`plotly.graph_objs.scattergeo.marker.ColorBar ` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -817,10 +817,10 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `color`. gradient - :class:`plotly.graph_objects.scattergeo.marker.Gradient + :class:`plotly.graph_objs.scattergeo.marker.Gradient ` instance or dict with compatible properties line - :class:`plotly.graph_objects.scattergeo.marker.Line` + :class:`plotly.graph_objs.scattergeo.marker.Line` instance or dict with compatible properties opacity Sets the marker opacity. @@ -974,7 +974,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scattergeo.marker.ColorBar + :class:`plotly.graph_objs.scattergeo.marker.ColorBar ` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -994,10 +994,10 @@ def __init__( Sets the source reference on Chart Studio Cloud for `color`. gradient - :class:`plotly.graph_objects.scattergeo.marker.Gradient + :class:`plotly.graph_objs.scattergeo.marker.Gradient ` instance or dict with compatible properties line - :class:`plotly.graph_objects.scattergeo.marker.Line` + :class:`plotly.graph_objs.scattergeo.marker.Line` instance or dict with compatible properties opacity Sets the marker opacity. diff --git a/plotly/graph_objs/scattergeo/_selected.py b/plotly/graph_objs/scattergeo/_selected.py index efa633a42d..18df87a5b7 100644 --- a/plotly/graph_objs/scattergeo/_selected.py +++ b/plotly/graph_objs/scattergeo/_selected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scattergeo.selected.Marker + :class:`plotly.graph_objs.scattergeo.selected.Marker ` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattergeo.selected.Textfo + :class:`plotly.graph_objs.scattergeo.selected.Textfo nt` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scattergeo.Selected` marker - :class:`plotly.graph_objects.scattergeo.selected.Marker + :class:`plotly.graph_objs.scattergeo.selected.Marker ` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattergeo.selected.Textfo + :class:`plotly.graph_objs.scattergeo.selected.Textfo nt` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scattergeo/_unselected.py b/plotly/graph_objs/scattergeo/_unselected.py index 0904ecc3c4..9c175e04c0 100644 --- a/plotly/graph_objs/scattergeo/_unselected.py +++ b/plotly/graph_objs/scattergeo/_unselected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scattergeo.unselected.Mark + :class:`plotly.graph_objs.scattergeo.unselected.Mark er` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattergeo.unselected.Text + :class:`plotly.graph_objs.scattergeo.unselected.Text font` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scattergeo.Unselected` marker - :class:`plotly.graph_objects.scattergeo.unselected.Mark + :class:`plotly.graph_objs.scattergeo.unselected.Mark er` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattergeo.unselected.Text + :class:`plotly.graph_objs.scattergeo.unselected.Text font` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scattergeo/marker/_colorbar.py b/plotly/graph_objs/scattergeo/marker/_colorbar.py index 6b0e32133d..15892daff6 100644 --- a/plotly/graph_objs/scattergeo/marker/_colorbar.py +++ b/plotly/graph_objs/scattergeo/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scattergeo.mark + A tuple of :class:`plotly.graph_objs.scattergeo.mark er.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scattergeo.marker.colorbar + :class:`plotly.graph_objs.scattergeo.marker.colorbar .Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scattergeo.mark + A tuple of :class:`plotly.graph_objs.scattergeo.mark er.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scattergeo.marker.colorbar + :class:`plotly.graph_objs.scattergeo.marker.colorbar .Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/scattergl/_marker.py b/plotly/graph_objs/scattergl/_marker.py index c26e398252..d5a0d80e9f 100644 --- a/plotly/graph_objs/scattergl/_marker.py +++ b/plotly/graph_objs/scattergl/_marker.py @@ -705,7 +705,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scattergl.marker.ColorBar` + :class:`plotly.graph_objs.scattergl.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -725,7 +725,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `color`. line - :class:`plotly.graph_objects.scattergl.marker.Line` + :class:`plotly.graph_objs.scattergl.marker.Line` instance or dict with compatible properties opacity Sets the marker opacity. @@ -861,7 +861,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scattergl.marker.ColorBar` + :class:`plotly.graph_objs.scattergl.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -881,7 +881,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `color`. line - :class:`plotly.graph_objects.scattergl.marker.Line` + :class:`plotly.graph_objs.scattergl.marker.Line` instance or dict with compatible properties opacity Sets the marker opacity. diff --git a/plotly/graph_objs/scattergl/_selected.py b/plotly/graph_objs/scattergl/_selected.py index 1271cedc74..7477d66f67 100644 --- a/plotly/graph_objs/scattergl/_selected.py +++ b/plotly/graph_objs/scattergl/_selected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scattergl.selected.Marker` + :class:`plotly.graph_objs.scattergl.selected.Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattergl.selected.Textfon + :class:`plotly.graph_objs.scattergl.selected.Textfon t` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scattergl.Selected` marker - :class:`plotly.graph_objects.scattergl.selected.Marker` + :class:`plotly.graph_objs.scattergl.selected.Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattergl.selected.Textfon + :class:`plotly.graph_objs.scattergl.selected.Textfon t` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scattergl/_unselected.py b/plotly/graph_objs/scattergl/_unselected.py index 7c2cd4b9b3..03ed9ed7e3 100644 --- a/plotly/graph_objs/scattergl/_unselected.py +++ b/plotly/graph_objs/scattergl/_unselected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scattergl.unselected.Marke + :class:`plotly.graph_objs.scattergl.unselected.Marke r` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattergl.unselected.Textf + :class:`plotly.graph_objs.scattergl.unselected.Textf ont` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scattergl.Unselected` marker - :class:`plotly.graph_objects.scattergl.unselected.Marke + :class:`plotly.graph_objs.scattergl.unselected.Marke r` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattergl.unselected.Textf + :class:`plotly.graph_objs.scattergl.unselected.Textf ont` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scattergl/marker/_colorbar.py b/plotly/graph_objs/scattergl/marker/_colorbar.py index 6cb0422283..06a0cd9141 100644 --- a/plotly/graph_objs/scattergl/marker/_colorbar.py +++ b/plotly/graph_objs/scattergl/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scattergl.marke + A tuple of :class:`plotly.graph_objs.scattergl.marke r.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scattergl.marker.colorbar. + :class:`plotly.graph_objs.scattergl.marker.colorbar. Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scattergl.marke + A tuple of :class:`plotly.graph_objs.scattergl.marke r.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scattergl.marker.colorbar. + :class:`plotly.graph_objs.scattergl.marker.colorbar. Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/scattermap/_marker.py b/plotly/graph_objs/scattermap/_marker.py index 94795ed505..a4ed8c1abf 100644 --- a/plotly/graph_objs/scattermap/_marker.py +++ b/plotly/graph_objs/scattermap/_marker.py @@ -622,7 +622,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scattermap.marker.ColorBar + :class:`plotly.graph_objs.scattermap.marker.ColorBar ` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -779,7 +779,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scattermap.marker.ColorBar + :class:`plotly.graph_objs.scattermap.marker.ColorBar ` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in diff --git a/plotly/graph_objs/scattermap/_selected.py b/plotly/graph_objs/scattermap/_selected.py index fc36d377b9..19631a4124 100644 --- a/plotly/graph_objs/scattermap/_selected.py +++ b/plotly/graph_objs/scattermap/_selected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scattermap.selected.Marker + :class:`plotly.graph_objs.scattermap.selected.Marker ` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.scattermap.Selected` marker - :class:`plotly.graph_objects.scattermap.selected.Marker + :class:`plotly.graph_objs.scattermap.selected.Marker ` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scattermap/_unselected.py b/plotly/graph_objs/scattermap/_unselected.py index 6911361a0d..32f6548f54 100644 --- a/plotly/graph_objs/scattermap/_unselected.py +++ b/plotly/graph_objs/scattermap/_unselected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scattermap.unselected.Mark + :class:`plotly.graph_objs.scattermap.unselected.Mark er` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.scattermap.Unselected` marker - :class:`plotly.graph_objects.scattermap.unselected.Mark + :class:`plotly.graph_objs.scattermap.unselected.Mark er` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scattermap/marker/_colorbar.py b/plotly/graph_objs/scattermap/marker/_colorbar.py index 77f929ef11..e608e97620 100644 --- a/plotly/graph_objs/scattermap/marker/_colorbar.py +++ b/plotly/graph_objs/scattermap/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scattermap.mark + A tuple of :class:`plotly.graph_objs.scattermap.mark er.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scattermap.marker.colorbar + :class:`plotly.graph_objs.scattermap.marker.colorbar .Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scattermap.mark + A tuple of :class:`plotly.graph_objs.scattermap.mark er.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scattermap.marker.colorbar + :class:`plotly.graph_objs.scattermap.marker.colorbar .Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/scattermapbox/_marker.py b/plotly/graph_objs/scattermapbox/_marker.py index 00c348d965..fa42ad8418 100644 --- a/plotly/graph_objs/scattermapbox/_marker.py +++ b/plotly/graph_objs/scattermapbox/_marker.py @@ -622,7 +622,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scattermapbox.marker.Color + :class:`plotly.graph_objs.scattermapbox.marker.Color Bar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -779,7 +779,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scattermapbox.marker.Color + :class:`plotly.graph_objs.scattermapbox.marker.Color Bar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in diff --git a/plotly/graph_objs/scattermapbox/_selected.py b/plotly/graph_objs/scattermapbox/_selected.py index e2f96038ea..6bc65d0cac 100644 --- a/plotly/graph_objs/scattermapbox/_selected.py +++ b/plotly/graph_objs/scattermapbox/_selected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scattermapbox.selected.Mar + :class:`plotly.graph_objs.scattermapbox.selected.Mar ker` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.scattermapbox.Selected` marker - :class:`plotly.graph_objects.scattermapbox.selected.Mar + :class:`plotly.graph_objs.scattermapbox.selected.Mar ker` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scattermapbox/_unselected.py b/plotly/graph_objs/scattermapbox/_unselected.py index 4d670647ac..c09528b619 100644 --- a/plotly/graph_objs/scattermapbox/_unselected.py +++ b/plotly/graph_objs/scattermapbox/_unselected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scattermapbox.unselected.M + :class:`plotly.graph_objs.scattermapbox.unselected.M arker` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.scattermapbox.Unselected` marker - :class:`plotly.graph_objects.scattermapbox.unselected.M + :class:`plotly.graph_objs.scattermapbox.unselected.M arker` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scattermapbox/marker/_colorbar.py b/plotly/graph_objs/scattermapbox/marker/_colorbar.py index 5203418cbb..47eeb7d370 100644 --- a/plotly/graph_objs/scattermapbox/marker/_colorbar.py +++ b/plotly/graph_objs/scattermapbox/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scattermapbox.m + A tuple of :class:`plotly.graph_objs.scattermapbox.m arker.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scattermapbox.marker.color + :class:`plotly.graph_objs.scattermapbox.marker.color bar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scattermapbox.m + A tuple of :class:`plotly.graph_objs.scattermapbox.m arker.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scattermapbox.marker.color + :class:`plotly.graph_objs.scattermapbox.marker.color bar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/scatterpolar/_marker.py b/plotly/graph_objs/scatterpolar/_marker.py index 377e839e56..ace8c0c86b 100644 --- a/plotly/graph_objs/scatterpolar/_marker.py +++ b/plotly/graph_objs/scatterpolar/_marker.py @@ -814,7 +814,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scatterpolar.marker.ColorB + :class:`plotly.graph_objs.scatterpolar.marker.ColorB ar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -834,10 +834,10 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `color`. gradient - :class:`plotly.graph_objects.scatterpolar.marker.Gradie + :class:`plotly.graph_objs.scatterpolar.marker.Gradie nt` instance or dict with compatible properties line - :class:`plotly.graph_objects.scatterpolar.marker.Line` + :class:`plotly.graph_objs.scatterpolar.marker.Line` instance or dict with compatible properties maxdisplayed Sets a maximum number of points to be drawn on the @@ -994,7 +994,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scatterpolar.marker.ColorB + :class:`plotly.graph_objs.scatterpolar.marker.ColorB ar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -1014,10 +1014,10 @@ def __init__( Sets the source reference on Chart Studio Cloud for `color`. gradient - :class:`plotly.graph_objects.scatterpolar.marker.Gradie + :class:`plotly.graph_objs.scatterpolar.marker.Gradie nt` instance or dict with compatible properties line - :class:`plotly.graph_objects.scatterpolar.marker.Line` + :class:`plotly.graph_objs.scatterpolar.marker.Line` instance or dict with compatible properties maxdisplayed Sets a maximum number of points to be drawn on the diff --git a/plotly/graph_objs/scatterpolar/_selected.py b/plotly/graph_objs/scatterpolar/_selected.py index 09902d4274..adb42ab47b 100644 --- a/plotly/graph_objs/scatterpolar/_selected.py +++ b/plotly/graph_objs/scatterpolar/_selected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scatterpolar.selected.Mark + :class:`plotly.graph_objs.scatterpolar.selected.Mark er` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatterpolar.selected.Text + :class:`plotly.graph_objs.scatterpolar.selected.Text font` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scatterpolar.Selected` marker - :class:`plotly.graph_objects.scatterpolar.selected.Mark + :class:`plotly.graph_objs.scatterpolar.selected.Mark er` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatterpolar.selected.Text + :class:`plotly.graph_objs.scatterpolar.selected.Text font` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scatterpolar/_unselected.py b/plotly/graph_objs/scatterpolar/_unselected.py index 1b9fd7773c..e0a5d361e9 100644 --- a/plotly/graph_objs/scatterpolar/_unselected.py +++ b/plotly/graph_objs/scatterpolar/_unselected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scatterpolar.unselected.Ma + :class:`plotly.graph_objs.scatterpolar.unselected.Ma rker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatterpolar.unselected.Te + :class:`plotly.graph_objs.scatterpolar.unselected.Te xtfont` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scatterpolar.Unselected` marker - :class:`plotly.graph_objects.scatterpolar.unselected.Ma + :class:`plotly.graph_objs.scatterpolar.unselected.Ma rker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatterpolar.unselected.Te + :class:`plotly.graph_objs.scatterpolar.unselected.Te xtfont` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scatterpolar/marker/_colorbar.py b/plotly/graph_objs/scatterpolar/marker/_colorbar.py index 08cb61860b..92f25bb283 100644 --- a/plotly/graph_objs/scatterpolar/marker/_colorbar.py +++ b/plotly/graph_objs/scatterpolar/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scatterpolar.ma + A tuple of :class:`plotly.graph_objs.scatterpolar.ma rker.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scatterpolar.marker.colorb + :class:`plotly.graph_objs.scatterpolar.marker.colorb ar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scatterpolar.ma + A tuple of :class:`plotly.graph_objs.scatterpolar.ma rker.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scatterpolar.marker.colorb + :class:`plotly.graph_objs.scatterpolar.marker.colorb ar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/scatterpolargl/_marker.py b/plotly/graph_objs/scatterpolargl/_marker.py index 616c489bb1..6636f68d78 100644 --- a/plotly/graph_objs/scatterpolargl/_marker.py +++ b/plotly/graph_objs/scatterpolargl/_marker.py @@ -705,7 +705,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scatterpolargl.marker.Colo + :class:`plotly.graph_objs.scatterpolargl.marker.Colo rBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -725,7 +725,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `color`. line - :class:`plotly.graph_objects.scatterpolargl.marker.Line + :class:`plotly.graph_objs.scatterpolargl.marker.Line ` instance or dict with compatible properties opacity Sets the marker opacity. @@ -861,7 +861,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scatterpolargl.marker.Colo + :class:`plotly.graph_objs.scatterpolargl.marker.Colo rBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -881,7 +881,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `color`. line - :class:`plotly.graph_objects.scatterpolargl.marker.Line + :class:`plotly.graph_objs.scatterpolargl.marker.Line ` instance or dict with compatible properties opacity Sets the marker opacity. diff --git a/plotly/graph_objs/scatterpolargl/_selected.py b/plotly/graph_objs/scatterpolargl/_selected.py index b5e95a3836..6ddbecc866 100644 --- a/plotly/graph_objs/scatterpolargl/_selected.py +++ b/plotly/graph_objs/scatterpolargl/_selected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scatterpolargl.selected.Ma + :class:`plotly.graph_objs.scatterpolargl.selected.Ma rker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatterpolargl.selected.Te + :class:`plotly.graph_objs.scatterpolargl.selected.Te xtfont` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scatterpolargl.Selected` marker - :class:`plotly.graph_objects.scatterpolargl.selected.Ma + :class:`plotly.graph_objs.scatterpolargl.selected.Ma rker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatterpolargl.selected.Te + :class:`plotly.graph_objs.scatterpolargl.selected.Te xtfont` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scatterpolargl/_unselected.py b/plotly/graph_objs/scatterpolargl/_unselected.py index 319c3b75d4..4a0259ccf3 100644 --- a/plotly/graph_objs/scatterpolargl/_unselected.py +++ b/plotly/graph_objs/scatterpolargl/_unselected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scatterpolargl.unselected. + :class:`plotly.graph_objs.scatterpolargl.unselected. Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatterpolargl.unselected. + :class:`plotly.graph_objs.scatterpolargl.unselected. Textfont` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scatterpolargl.Unselected` marker - :class:`plotly.graph_objects.scatterpolargl.unselected. + :class:`plotly.graph_objs.scatterpolargl.unselected. Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatterpolargl.unselected. + :class:`plotly.graph_objs.scatterpolargl.unselected. Textfont` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scatterpolargl/marker/_colorbar.py b/plotly/graph_objs/scatterpolargl/marker/_colorbar.py index ac110060f3..c7c5fb21bb 100644 --- a/plotly/graph_objs/scatterpolargl/marker/_colorbar.py +++ b/plotly/graph_objs/scatterpolargl/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scatterpolargl. + A tuple of :class:`plotly.graph_objs.scatterpolargl. marker.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scatterpolargl.marker.colo + :class:`plotly.graph_objs.scatterpolargl.marker.colo rbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scatterpolargl. + A tuple of :class:`plotly.graph_objs.scatterpolargl. marker.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scatterpolargl.marker.colo + :class:`plotly.graph_objs.scatterpolargl.marker.colo rbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/scattersmith/_marker.py b/plotly/graph_objs/scattersmith/_marker.py index 4b5dfcfc1e..b283fed4c7 100644 --- a/plotly/graph_objs/scattersmith/_marker.py +++ b/plotly/graph_objs/scattersmith/_marker.py @@ -814,7 +814,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scattersmith.marker.ColorB + :class:`plotly.graph_objs.scattersmith.marker.ColorB ar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -834,10 +834,10 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `color`. gradient - :class:`plotly.graph_objects.scattersmith.marker.Gradie + :class:`plotly.graph_objs.scattersmith.marker.Gradie nt` instance or dict with compatible properties line - :class:`plotly.graph_objects.scattersmith.marker.Line` + :class:`plotly.graph_objs.scattersmith.marker.Line` instance or dict with compatible properties maxdisplayed Sets a maximum number of points to be drawn on the @@ -994,7 +994,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scattersmith.marker.ColorB + :class:`plotly.graph_objs.scattersmith.marker.ColorB ar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -1014,10 +1014,10 @@ def __init__( Sets the source reference on Chart Studio Cloud for `color`. gradient - :class:`plotly.graph_objects.scattersmith.marker.Gradie + :class:`plotly.graph_objs.scattersmith.marker.Gradie nt` instance or dict with compatible properties line - :class:`plotly.graph_objects.scattersmith.marker.Line` + :class:`plotly.graph_objs.scattersmith.marker.Line` instance or dict with compatible properties maxdisplayed Sets a maximum number of points to be drawn on the diff --git a/plotly/graph_objs/scattersmith/_selected.py b/plotly/graph_objs/scattersmith/_selected.py index a4c23baf70..924c5ffc1a 100644 --- a/plotly/graph_objs/scattersmith/_selected.py +++ b/plotly/graph_objs/scattersmith/_selected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scattersmith.selected.Mark + :class:`plotly.graph_objs.scattersmith.selected.Mark er` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattersmith.selected.Text + :class:`plotly.graph_objs.scattersmith.selected.Text font` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scattersmith.Selected` marker - :class:`plotly.graph_objects.scattersmith.selected.Mark + :class:`plotly.graph_objs.scattersmith.selected.Mark er` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattersmith.selected.Text + :class:`plotly.graph_objs.scattersmith.selected.Text font` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scattersmith/_unselected.py b/plotly/graph_objs/scattersmith/_unselected.py index 8886fdbee4..31d3e153e4 100644 --- a/plotly/graph_objs/scattersmith/_unselected.py +++ b/plotly/graph_objs/scattersmith/_unselected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scattersmith.unselected.Ma + :class:`plotly.graph_objs.scattersmith.unselected.Ma rker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattersmith.unselected.Te + :class:`plotly.graph_objs.scattersmith.unselected.Te xtfont` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scattersmith.Unselected` marker - :class:`plotly.graph_objects.scattersmith.unselected.Ma + :class:`plotly.graph_objs.scattersmith.unselected.Ma rker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scattersmith.unselected.Te + :class:`plotly.graph_objs.scattersmith.unselected.Te xtfont` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scattersmith/marker/_colorbar.py b/plotly/graph_objs/scattersmith/marker/_colorbar.py index c99af1e784..54a4a465de 100644 --- a/plotly/graph_objs/scattersmith/marker/_colorbar.py +++ b/plotly/graph_objs/scattersmith/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scattersmith.ma + A tuple of :class:`plotly.graph_objs.scattersmith.ma rker.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scattersmith.marker.colorb + :class:`plotly.graph_objs.scattersmith.marker.colorb ar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scattersmith.ma + A tuple of :class:`plotly.graph_objs.scattersmith.ma rker.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scattersmith.marker.colorb + :class:`plotly.graph_objs.scattersmith.marker.colorb ar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/scatterternary/_marker.py b/plotly/graph_objs/scatterternary/_marker.py index defc23e95a..ad56763ecb 100644 --- a/plotly/graph_objs/scatterternary/_marker.py +++ b/plotly/graph_objs/scatterternary/_marker.py @@ -814,7 +814,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scatterternary.marker.Colo + :class:`plotly.graph_objs.scatterternary.marker.Colo rBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -834,10 +834,10 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `color`. gradient - :class:`plotly.graph_objects.scatterternary.marker.Grad + :class:`plotly.graph_objs.scatterternary.marker.Grad ient` instance or dict with compatible properties line - :class:`plotly.graph_objects.scatterternary.marker.Line + :class:`plotly.graph_objs.scatterternary.marker.Line ` instance or dict with compatible properties maxdisplayed Sets a maximum number of points to be drawn on the @@ -994,7 +994,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.scatterternary.marker.Colo + :class:`plotly.graph_objs.scatterternary.marker.Colo rBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -1014,10 +1014,10 @@ def __init__( Sets the source reference on Chart Studio Cloud for `color`. gradient - :class:`plotly.graph_objects.scatterternary.marker.Grad + :class:`plotly.graph_objs.scatterternary.marker.Grad ient` instance or dict with compatible properties line - :class:`plotly.graph_objects.scatterternary.marker.Line + :class:`plotly.graph_objs.scatterternary.marker.Line ` instance or dict with compatible properties maxdisplayed Sets a maximum number of points to be drawn on the diff --git a/plotly/graph_objs/scatterternary/_selected.py b/plotly/graph_objs/scatterternary/_selected.py index 9259834e78..f62b3b5da4 100644 --- a/plotly/graph_objs/scatterternary/_selected.py +++ b/plotly/graph_objs/scatterternary/_selected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scatterternary.selected.Ma + :class:`plotly.graph_objs.scatterternary.selected.Ma rker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatterternary.selected.Te + :class:`plotly.graph_objs.scatterternary.selected.Te xtfont` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scatterternary.Selected` marker - :class:`plotly.graph_objects.scatterternary.selected.Ma + :class:`plotly.graph_objs.scatterternary.selected.Ma rker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatterternary.selected.Te + :class:`plotly.graph_objs.scatterternary.selected.Te xtfont` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scatterternary/_unselected.py b/plotly/graph_objs/scatterternary/_unselected.py index f02bb39a23..bc47e0681c 100644 --- a/plotly/graph_objs/scatterternary/_unselected.py +++ b/plotly/graph_objs/scatterternary/_unselected.py @@ -52,10 +52,10 @@ def textfont(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.scatterternary.unselected. + :class:`plotly.graph_objs.scatterternary.unselected. Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatterternary.unselected. + :class:`plotly.graph_objs.scatterternary.unselected. Textfont` instance or dict with compatible properties """ @@ -70,10 +70,10 @@ def __init__(self, arg=None, marker=None, textfont=None, **kwargs): an instance of :class:`plotly.graph_objs.scatterternary.Unselected` marker - :class:`plotly.graph_objects.scatterternary.unselected. + :class:`plotly.graph_objs.scatterternary.unselected. Marker` instance or dict with compatible properties textfont - :class:`plotly.graph_objects.scatterternary.unselected. + :class:`plotly.graph_objs.scatterternary.unselected. Textfont` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/scatterternary/marker/_colorbar.py b/plotly/graph_objs/scatterternary/marker/_colorbar.py index 141b7196c0..a09954d014 100644 --- a/plotly/graph_objs/scatterternary/marker/_colorbar.py +++ b/plotly/graph_objs/scatterternary/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scatterternary. + A tuple of :class:`plotly.graph_objs.scatterternary. marker.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scatterternary.marker.colo + :class:`plotly.graph_objs.scatterternary.marker.colo rbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.scatterternary. + A tuple of :class:`plotly.graph_objs.scatterternary. marker.colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.scatterternary.marker.colo + :class:`plotly.graph_objs.scatterternary.marker.colo rbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/splom/_dimension.py b/plotly/graph_objs/splom/_dimension.py index beb275e9ec..53df20de62 100644 --- a/plotly/graph_objs/splom/_dimension.py +++ b/plotly/graph_objs/splom/_dimension.py @@ -167,7 +167,7 @@ def visible(self, val): def _prop_descriptions(self): return """\ axis - :class:`plotly.graph_objects.splom.dimension.Axis` + :class:`plotly.graph_objs.splom.dimension.Axis` instance or dict with compatible properties label Sets the label corresponding to this splom dimension. @@ -224,7 +224,7 @@ def __init__( an instance of :class:`plotly.graph_objs.splom.Dimension` axis - :class:`plotly.graph_objects.splom.dimension.Axis` + :class:`plotly.graph_objs.splom.dimension.Axis` instance or dict with compatible properties label Sets the label corresponding to this splom dimension. diff --git a/plotly/graph_objs/splom/_marker.py b/plotly/graph_objs/splom/_marker.py index 548795887c..09f18d2603 100644 --- a/plotly/graph_objs/splom/_marker.py +++ b/plotly/graph_objs/splom/_marker.py @@ -705,7 +705,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.splom.marker.ColorBar` + :class:`plotly.graph_objs.splom.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -725,7 +725,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `color`. line - :class:`plotly.graph_objects.splom.marker.Line` + :class:`plotly.graph_objs.splom.marker.Line` instance or dict with compatible properties opacity Sets the marker opacity. @@ -860,7 +860,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.splom.marker.ColorBar` + :class:`plotly.graph_objs.splom.marker.ColorBar` instance or dict with compatible properties colorscale Sets the colorscale. Has an effect only if in @@ -880,7 +880,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `color`. line - :class:`plotly.graph_objects.splom.marker.Line` + :class:`plotly.graph_objs.splom.marker.Line` instance or dict with compatible properties opacity Sets the marker opacity. diff --git a/plotly/graph_objs/splom/_selected.py b/plotly/graph_objs/splom/_selected.py index 964b3a6a59..3a6a0a9ed4 100644 --- a/plotly/graph_objs/splom/_selected.py +++ b/plotly/graph_objs/splom/_selected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.splom.selected.Marker` + :class:`plotly.graph_objs.splom.selected.Marker` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.splom.Selected` marker - :class:`plotly.graph_objects.splom.selected.Marker` + :class:`plotly.graph_objs.splom.selected.Marker` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/splom/_unselected.py b/plotly/graph_objs/splom/_unselected.py index bcf6df6f77..b76d263296 100644 --- a/plotly/graph_objs/splom/_unselected.py +++ b/plotly/graph_objs/splom/_unselected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.splom.unselected.Marker` + :class:`plotly.graph_objs.splom.unselected.Marker` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.splom.Unselected` marker - :class:`plotly.graph_objects.splom.unselected.Marker` + :class:`plotly.graph_objs.splom.unselected.Marker` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/splom/marker/_colorbar.py b/plotly/graph_objs/splom/marker/_colorbar.py index 60af07e799..e2b9f1e09d 100644 --- a/plotly/graph_objs/splom/marker/_colorbar.py +++ b/plotly/graph_objs/splom/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.splom.marker.co + A tuple of :class:`plotly.graph_objs.splom.marker.co lorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.splom.marker.colorbar.Titl + :class:`plotly.graph_objs.splom.marker.colorbar.Titl e` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.splom.marker.co + A tuple of :class:`plotly.graph_objs.splom.marker.co lorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.splom.marker.colorbar.Titl + :class:`plotly.graph_objs.splom.marker.colorbar.Titl e` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/streamtube/_colorbar.py b/plotly/graph_objs/streamtube/_colorbar.py index f4ce2df398..9daf68f6e6 100644 --- a/plotly/graph_objs/streamtube/_colorbar.py +++ b/plotly/graph_objs/streamtube/_colorbar.py @@ -1231,7 +1231,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.streamtube.colo + A tuple of :class:`plotly.graph_objs.streamtube.colo rbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1294,7 +1294,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.streamtube.colorbar.Title` + :class:`plotly.graph_objs.streamtube.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1534,7 +1534,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.streamtube.colo + A tuple of :class:`plotly.graph_objs.streamtube.colo rbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1597,7 +1597,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.streamtube.colorbar.Title` + :class:`plotly.graph_objs.streamtube.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/sunburst/_marker.py b/plotly/graph_objs/sunburst/_marker.py index 4a4234e4fe..760bf928fb 100644 --- a/plotly/graph_objs/sunburst/_marker.py +++ b/plotly/graph_objs/sunburst/_marker.py @@ -390,7 +390,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.sunburst.marker.ColorBar` + :class:`plotly.graph_objs.sunburst.marker.ColorBar` instance or dict with compatible properties colors Sets the color of each sector of this trace. If not @@ -414,7 +414,7 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `colors`. line - :class:`plotly.graph_objects.sunburst.marker.Line` + :class:`plotly.graph_objs.sunburst.marker.Line` instance or dict with compatible properties pattern Sets the pattern within the marker. @@ -498,7 +498,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.sunburst.marker.ColorBar` + :class:`plotly.graph_objs.sunburst.marker.ColorBar` instance or dict with compatible properties colors Sets the color of each sector of this trace. If not @@ -522,7 +522,7 @@ def __init__( Sets the source reference on Chart Studio Cloud for `colors`. line - :class:`plotly.graph_objects.sunburst.marker.Line` + :class:`plotly.graph_objs.sunburst.marker.Line` instance or dict with compatible properties pattern Sets the pattern within the marker. diff --git a/plotly/graph_objs/sunburst/marker/_colorbar.py b/plotly/graph_objs/sunburst/marker/_colorbar.py index af1678945b..98fbf4bef4 100644 --- a/plotly/graph_objs/sunburst/marker/_colorbar.py +++ b/plotly/graph_objs/sunburst/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.sunburst.marker + A tuple of :class:`plotly.graph_objs.sunburst.marker .colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.sunburst.marker.colorbar.T + :class:`plotly.graph_objs.sunburst.marker.colorbar.T itle` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.sunburst.marker + A tuple of :class:`plotly.graph_objs.sunburst.marker .colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.sunburst.marker.colorbar.T + :class:`plotly.graph_objs.sunburst.marker.colorbar.T itle` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/surface/_colorbar.py b/plotly/graph_objs/surface/_colorbar.py index 83db758e3f..62b015cea3 100644 --- a/plotly/graph_objs/surface/_colorbar.py +++ b/plotly/graph_objs/surface/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.surface.colorba + A tuple of :class:`plotly.graph_objs.surface.colorba r.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.surface.colorbar.Title` + :class:`plotly.graph_objs.surface.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.surface.colorba + A tuple of :class:`plotly.graph_objs.surface.colorba r.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.surface.colorbar.Title` + :class:`plotly.graph_objs.surface.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/surface/_contours.py b/plotly/graph_objs/surface/_contours.py index 9c420966b4..1f34585798 100644 --- a/plotly/graph_objs/surface/_contours.py +++ b/plotly/graph_objs/surface/_contours.py @@ -71,13 +71,13 @@ def z(self, val): def _prop_descriptions(self): return """\ x - :class:`plotly.graph_objects.surface.contours.X` + :class:`plotly.graph_objs.surface.contours.X` instance or dict with compatible properties y - :class:`plotly.graph_objects.surface.contours.Y` + :class:`plotly.graph_objs.surface.contours.Y` instance or dict with compatible properties z - :class:`plotly.graph_objects.surface.contours.Z` + :class:`plotly.graph_objs.surface.contours.Z` instance or dict with compatible properties """ @@ -92,13 +92,13 @@ def __init__(self, arg=None, x=None, y=None, z=None, **kwargs): an instance of :class:`plotly.graph_objs.surface.Contours` x - :class:`plotly.graph_objects.surface.contours.X` + :class:`plotly.graph_objs.surface.contours.X` instance or dict with compatible properties y - :class:`plotly.graph_objects.surface.contours.Y` + :class:`plotly.graph_objs.surface.contours.Y` instance or dict with compatible properties z - :class:`plotly.graph_objects.surface.contours.Z` + :class:`plotly.graph_objs.surface.contours.Z` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/surface/contours/_x.py b/plotly/graph_objs/surface/contours/_x.py index 9df51307d8..c28d292360 100644 --- a/plotly/graph_objs/surface/contours/_x.py +++ b/plotly/graph_objs/surface/contours/_x.py @@ -250,7 +250,7 @@ def _prop_descriptions(self): highlightwidth Sets the width of the highlighted contour lines. project - :class:`plotly.graph_objects.surface.contours.x.Project + :class:`plotly.graph_objs.surface.contours.x.Project ` instance or dict with compatible properties show Determines whether or not contour lines about the x @@ -306,7 +306,7 @@ def __init__( highlightwidth Sets the width of the highlighted contour lines. project - :class:`plotly.graph_objects.surface.contours.x.Project + :class:`plotly.graph_objs.surface.contours.x.Project ` instance or dict with compatible properties show Determines whether or not contour lines about the x diff --git a/plotly/graph_objs/surface/contours/_y.py b/plotly/graph_objs/surface/contours/_y.py index 00c104246f..f85cd68b74 100644 --- a/plotly/graph_objs/surface/contours/_y.py +++ b/plotly/graph_objs/surface/contours/_y.py @@ -250,7 +250,7 @@ def _prop_descriptions(self): highlightwidth Sets the width of the highlighted contour lines. project - :class:`plotly.graph_objects.surface.contours.y.Project + :class:`plotly.graph_objs.surface.contours.y.Project ` instance or dict with compatible properties show Determines whether or not contour lines about the y @@ -306,7 +306,7 @@ def __init__( highlightwidth Sets the width of the highlighted contour lines. project - :class:`plotly.graph_objects.surface.contours.y.Project + :class:`plotly.graph_objs.surface.contours.y.Project ` instance or dict with compatible properties show Determines whether or not contour lines about the y diff --git a/plotly/graph_objs/surface/contours/_z.py b/plotly/graph_objs/surface/contours/_z.py index 62d241683e..f55dd7984a 100644 --- a/plotly/graph_objs/surface/contours/_z.py +++ b/plotly/graph_objs/surface/contours/_z.py @@ -250,7 +250,7 @@ def _prop_descriptions(self): highlightwidth Sets the width of the highlighted contour lines. project - :class:`plotly.graph_objects.surface.contours.z.Project + :class:`plotly.graph_objs.surface.contours.z.Project ` instance or dict with compatible properties show Determines whether or not contour lines about the z @@ -306,7 +306,7 @@ def __init__( highlightwidth Sets the width of the highlighted contour lines. project - :class:`plotly.graph_objects.surface.contours.z.Project + :class:`plotly.graph_objs.surface.contours.z.Project ` instance or dict with compatible properties show Determines whether or not contour lines about the z diff --git a/plotly/graph_objs/table/_cells.py b/plotly/graph_objs/table/_cells.py index 083afdd03c..0e674701c8 100644 --- a/plotly/graph_objs/table/_cells.py +++ b/plotly/graph_objs/table/_cells.py @@ -308,10 +308,10 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `align`. fill - :class:`plotly.graph_objects.table.cells.Fill` instance + :class:`plotly.graph_objs.table.cells.Fill` instance or dict with compatible properties font - :class:`plotly.graph_objects.table.cells.Font` instance + :class:`plotly.graph_objs.table.cells.Font` instance or dict with compatible properties format Sets the cell value formatting rule using d3 formatting @@ -324,7 +324,7 @@ def _prop_descriptions(self): height The height of cells. line - :class:`plotly.graph_objects.table.cells.Line` instance + :class:`plotly.graph_objs.table.cells.Line` instance or dict with compatible properties prefix Prefix for cell values. @@ -384,10 +384,10 @@ def __init__( Sets the source reference on Chart Studio Cloud for `align`. fill - :class:`plotly.graph_objects.table.cells.Fill` instance + :class:`plotly.graph_objs.table.cells.Fill` instance or dict with compatible properties font - :class:`plotly.graph_objects.table.cells.Font` instance + :class:`plotly.graph_objs.table.cells.Font` instance or dict with compatible properties format Sets the cell value formatting rule using d3 formatting @@ -400,7 +400,7 @@ def __init__( height The height of cells. line - :class:`plotly.graph_objects.table.cells.Line` instance + :class:`plotly.graph_objs.table.cells.Line` instance or dict with compatible properties prefix Prefix for cell values. diff --git a/plotly/graph_objs/table/_header.py b/plotly/graph_objs/table/_header.py index 5a4f6f6bac..f079ec7663 100644 --- a/plotly/graph_objs/table/_header.py +++ b/plotly/graph_objs/table/_header.py @@ -308,10 +308,10 @@ def _prop_descriptions(self): Sets the source reference on Chart Studio Cloud for `align`. fill - :class:`plotly.graph_objects.table.header.Fill` + :class:`plotly.graph_objs.table.header.Fill` instance or dict with compatible properties font - :class:`plotly.graph_objects.table.header.Font` + :class:`plotly.graph_objs.table.header.Font` instance or dict with compatible properties format Sets the cell value formatting rule using d3 formatting @@ -324,7 +324,7 @@ def _prop_descriptions(self): height The height of cells. line - :class:`plotly.graph_objects.table.header.Line` + :class:`plotly.graph_objs.table.header.Line` instance or dict with compatible properties prefix Prefix for cell values. @@ -384,10 +384,10 @@ def __init__( Sets the source reference on Chart Studio Cloud for `align`. fill - :class:`plotly.graph_objects.table.header.Fill` + :class:`plotly.graph_objs.table.header.Fill` instance or dict with compatible properties font - :class:`plotly.graph_objects.table.header.Font` + :class:`plotly.graph_objs.table.header.Font` instance or dict with compatible properties format Sets the cell value formatting rule using d3 formatting @@ -400,7 +400,7 @@ def __init__( height The height of cells. line - :class:`plotly.graph_objects.table.header.Line` + :class:`plotly.graph_objs.table.header.Line` instance or dict with compatible properties prefix Prefix for cell values. diff --git a/plotly/graph_objs/treemap/_marker.py b/plotly/graph_objs/treemap/_marker.py index 2d2af08ac5..fba4e74aca 100644 --- a/plotly/graph_objs/treemap/_marker.py +++ b/plotly/graph_objs/treemap/_marker.py @@ -456,7 +456,7 @@ def _prop_descriptions(self): `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.treemap.marker.ColorBar` + :class:`plotly.graph_objs.treemap.marker.ColorBar` instance or dict with compatible properties colors Sets the color of each sector of this trace. If not @@ -492,10 +492,10 @@ def _prop_descriptions(self): while the leaves are faded towards the background color. line - :class:`plotly.graph_objects.treemap.marker.Line` + :class:`plotly.graph_objs.treemap.marker.Line` instance or dict with compatible properties pad - :class:`plotly.graph_objects.treemap.marker.Pad` + :class:`plotly.graph_objs.treemap.marker.Pad` instance or dict with compatible properties pattern Sets the pattern within the marker. @@ -582,7 +582,7 @@ def __init__( `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. colorbar - :class:`plotly.graph_objects.treemap.marker.ColorBar` + :class:`plotly.graph_objs.treemap.marker.ColorBar` instance or dict with compatible properties colors Sets the color of each sector of this trace. If not @@ -618,10 +618,10 @@ def __init__( while the leaves are faded towards the background color. line - :class:`plotly.graph_objects.treemap.marker.Line` + :class:`plotly.graph_objs.treemap.marker.Line` instance or dict with compatible properties pad - :class:`plotly.graph_objects.treemap.marker.Pad` + :class:`plotly.graph_objs.treemap.marker.Pad` instance or dict with compatible properties pattern Sets the pattern within the marker. diff --git a/plotly/graph_objs/treemap/_pathbar.py b/plotly/graph_objs/treemap/_pathbar.py index 295cc48086..ffff45dd3e 100644 --- a/plotly/graph_objs/treemap/_pathbar.py +++ b/plotly/graph_objs/treemap/_pathbar.py @@ -33,7 +33,7 @@ def edgeshape(self, val): @property def side(self): """ - Determines on which side of the the treemap the `pathbar` + Determines on which side of the treemap the `pathbar` should be presented. The 'side' property is an enumeration that may be specified as: @@ -117,7 +117,7 @@ def _prop_descriptions(self): Determines which shape is used for edges between `barpath` labels. side - Determines on which side of the the treemap the + Determines on which side of the treemap the `pathbar` should be presented. textfont Sets the font used inside `pathbar`. @@ -153,7 +153,7 @@ def __init__( Determines which shape is used for edges between `barpath` labels. side - Determines on which side of the the treemap the + Determines on which side of the treemap the `pathbar` should be presented. textfont Sets the font used inside `pathbar`. diff --git a/plotly/graph_objs/treemap/marker/_colorbar.py b/plotly/graph_objs/treemap/marker/_colorbar.py index a59fb86066..dd423c2d8b 100644 --- a/plotly/graph_objs/treemap/marker/_colorbar.py +++ b/plotly/graph_objs/treemap/marker/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.treemap.marker. + A tuple of :class:`plotly.graph_objs.treemap.marker. colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.treemap.marker.colorbar.Ti + :class:`plotly.graph_objs.treemap.marker.colorbar.Ti tle` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.treemap.marker. + A tuple of :class:`plotly.graph_objs.treemap.marker. colorbar.Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.treemap.marker.colorbar.Ti + :class:`plotly.graph_objs.treemap.marker.colorbar.Ti tle` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/violin/_box.py b/plotly/graph_objs/violin/_box.py index 7aa241eff7..57456ec58c 100644 --- a/plotly/graph_objs/violin/_box.py +++ b/plotly/graph_objs/violin/_box.py @@ -96,7 +96,7 @@ def _prop_descriptions(self): fillcolor Sets the inner box plot fill color. line - :class:`plotly.graph_objects.violin.box.Line` instance + :class:`plotly.graph_objs.violin.box.Line` instance or dict with compatible properties visible Determines if an miniature box plot is drawn inside the @@ -121,7 +121,7 @@ def __init__( fillcolor Sets the inner box plot fill color. line - :class:`plotly.graph_objects.violin.box.Line` instance + :class:`plotly.graph_objs.violin.box.Line` instance or dict with compatible properties visible Determines if an miniature box plot is drawn inside the diff --git a/plotly/graph_objs/violin/_marker.py b/plotly/graph_objs/violin/_marker.py index 6389cae094..39acfb4d9a 100644 --- a/plotly/graph_objs/violin/_marker.py +++ b/plotly/graph_objs/violin/_marker.py @@ -262,7 +262,7 @@ def _prop_descriptions(self): array or relative to `marker.cmin` and `marker.cmax` if set. line - :class:`plotly.graph_objects.violin.marker.Line` + :class:`plotly.graph_objs.violin.marker.Line` instance or dict with compatible properties opacity Sets the marker opacity. @@ -307,7 +307,7 @@ def __init__( array or relative to `marker.cmin` and `marker.cmax` if set. line - :class:`plotly.graph_objects.violin.marker.Line` + :class:`plotly.graph_objs.violin.marker.Line` instance or dict with compatible properties opacity Sets the marker opacity. diff --git a/plotly/graph_objs/violin/_selected.py b/plotly/graph_objs/violin/_selected.py index ec18b8f8fb..1e3a256428 100644 --- a/plotly/graph_objs/violin/_selected.py +++ b/plotly/graph_objs/violin/_selected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.violin.selected.Marker` + :class:`plotly.graph_objs.violin.selected.Marker` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.violin.Selected` marker - :class:`plotly.graph_objects.violin.selected.Marker` + :class:`plotly.graph_objs.violin.selected.Marker` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/violin/_unselected.py b/plotly/graph_objs/violin/_unselected.py index 9e13dda8d0..7182669ece 100644 --- a/plotly/graph_objs/violin/_unselected.py +++ b/plotly/graph_objs/violin/_unselected.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.violin.unselected.Marker` + :class:`plotly.graph_objs.violin.unselected.Marker` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.violin.Unselected` marker - :class:`plotly.graph_objects.violin.unselected.Marker` + :class:`plotly.graph_objs.violin.unselected.Marker` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/volume/_caps.py b/plotly/graph_objs/volume/_caps.py index 20d444367c..fe5fc8a213 100644 --- a/plotly/graph_objs/volume/_caps.py +++ b/plotly/graph_objs/volume/_caps.py @@ -71,13 +71,13 @@ def z(self, val): def _prop_descriptions(self): return """\ x - :class:`plotly.graph_objects.volume.caps.X` instance or + :class:`plotly.graph_objs.volume.caps.X` instance or dict with compatible properties y - :class:`plotly.graph_objects.volume.caps.Y` instance or + :class:`plotly.graph_objs.volume.caps.Y` instance or dict with compatible properties z - :class:`plotly.graph_objects.volume.caps.Z` instance or + :class:`plotly.graph_objs.volume.caps.Z` instance or dict with compatible properties """ @@ -91,13 +91,13 @@ def __init__(self, arg=None, x=None, y=None, z=None, **kwargs): dict of properties compatible with this constructor or an instance of :class:`plotly.graph_objs.volume.Caps` x - :class:`plotly.graph_objects.volume.caps.X` instance or + :class:`plotly.graph_objs.volume.caps.X` instance or dict with compatible properties y - :class:`plotly.graph_objects.volume.caps.Y` instance or + :class:`plotly.graph_objs.volume.caps.Y` instance or dict with compatible properties z - :class:`plotly.graph_objects.volume.caps.Z` instance or + :class:`plotly.graph_objs.volume.caps.Z` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/volume/_colorbar.py b/plotly/graph_objs/volume/_colorbar.py index 938432362a..0332792c92 100644 --- a/plotly/graph_objs/volume/_colorbar.py +++ b/plotly/graph_objs/volume/_colorbar.py @@ -1232,7 +1232,7 @@ def _prop_descriptions(self): 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.volume.colorbar + A tuple of :class:`plotly.graph_objs.volume.colorbar .Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1295,7 +1295,7 @@ def _prop_descriptions(self): tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.volume.colorbar.Title` + :class:`plotly.graph_objs.volume.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color @@ -1535,7 +1535,7 @@ def __init__( 09:15:23.456* with tickformat "%H~%M~%S.%2f" would display "09~15~23.46" tickformatstops - A tuple of :class:`plotly.graph_objects.volume.colorbar + A tuple of :class:`plotly.graph_objs.volume.colorbar .Tickformatstop` instances or dicts with compatible properties tickformatstopdefaults @@ -1598,7 +1598,7 @@ def __init__( tickwidth Sets the tick width (in px). title - :class:`plotly.graph_objects.volume.colorbar.Title` + :class:`plotly.graph_objs.volume.colorbar.Title` instance or dict with compatible properties x Sets the x position with respect to `xref` of the color diff --git a/plotly/graph_objs/volume/_slices.py b/plotly/graph_objs/volume/_slices.py index 6faf4de812..a7aed8367a 100644 --- a/plotly/graph_objs/volume/_slices.py +++ b/plotly/graph_objs/volume/_slices.py @@ -71,13 +71,13 @@ def z(self, val): def _prop_descriptions(self): return """\ x - :class:`plotly.graph_objects.volume.slices.X` instance + :class:`plotly.graph_objs.volume.slices.X` instance or dict with compatible properties y - :class:`plotly.graph_objects.volume.slices.Y` instance + :class:`plotly.graph_objs.volume.slices.Y` instance or dict with compatible properties z - :class:`plotly.graph_objects.volume.slices.Z` instance + :class:`plotly.graph_objs.volume.slices.Z` instance or dict with compatible properties """ @@ -91,13 +91,13 @@ def __init__(self, arg=None, x=None, y=None, z=None, **kwargs): dict of properties compatible with this constructor or an instance of :class:`plotly.graph_objs.volume.Slices` x - :class:`plotly.graph_objects.volume.slices.X` instance + :class:`plotly.graph_objs.volume.slices.X` instance or dict with compatible properties y - :class:`plotly.graph_objects.volume.slices.Y` instance + :class:`plotly.graph_objs.volume.slices.Y` instance or dict with compatible properties z - :class:`plotly.graph_objects.volume.slices.Z` instance + :class:`plotly.graph_objs.volume.slices.Z` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/waterfall/_connector.py b/plotly/graph_objs/waterfall/_connector.py index e76bd9d4ed..b331af2f2f 100644 --- a/plotly/graph_objs/waterfall/_connector.py +++ b/plotly/graph_objs/waterfall/_connector.py @@ -70,7 +70,7 @@ def visible(self, val): def _prop_descriptions(self): return """\ line - :class:`plotly.graph_objects.waterfall.connector.Line` + :class:`plotly.graph_objs.waterfall.connector.Line` instance or dict with compatible properties mode Sets the shape of connector lines. @@ -89,7 +89,7 @@ def __init__(self, arg=None, line=None, mode=None, visible=None, **kwargs): an instance of :class:`plotly.graph_objs.waterfall.Connector` line - :class:`plotly.graph_objects.waterfall.connector.Line` + :class:`plotly.graph_objs.waterfall.connector.Line` instance or dict with compatible properties mode Sets the shape of connector lines. diff --git a/plotly/graph_objs/waterfall/_decreasing.py b/plotly/graph_objs/waterfall/_decreasing.py index b472b42da7..719bf732f8 100644 --- a/plotly/graph_objs/waterfall/_decreasing.py +++ b/plotly/graph_objs/waterfall/_decreasing.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.waterfall.decreasing.Marke + :class:`plotly.graph_objs.waterfall.decreasing.Marke r` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.waterfall.Decreasing` marker - :class:`plotly.graph_objects.waterfall.decreasing.Marke + :class:`plotly.graph_objs.waterfall.decreasing.Marke r` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/waterfall/_increasing.py b/plotly/graph_objs/waterfall/_increasing.py index 1a2d447084..453ad49756 100644 --- a/plotly/graph_objs/waterfall/_increasing.py +++ b/plotly/graph_objs/waterfall/_increasing.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.waterfall.increasing.Marke + :class:`plotly.graph_objs.waterfall.increasing.Marke r` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.waterfall.Increasing` marker - :class:`plotly.graph_objects.waterfall.increasing.Marke + :class:`plotly.graph_objs.waterfall.increasing.Marke r` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/waterfall/_totals.py b/plotly/graph_objs/waterfall/_totals.py index d7f4431f3b..989e97a392 100644 --- a/plotly/graph_objs/waterfall/_totals.py +++ b/plotly/graph_objs/waterfall/_totals.py @@ -33,7 +33,7 @@ def marker(self, val): def _prop_descriptions(self): return """\ marker - :class:`plotly.graph_objects.waterfall.totals.Marker` + :class:`plotly.graph_objs.waterfall.totals.Marker` instance or dict with compatible properties """ @@ -48,7 +48,7 @@ def __init__(self, arg=None, marker=None, **kwargs): an instance of :class:`plotly.graph_objs.waterfall.Totals` marker - :class:`plotly.graph_objects.waterfall.totals.Marker` + :class:`plotly.graph_objs.waterfall.totals.Marker` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/waterfall/decreasing/_marker.py b/plotly/graph_objs/waterfall/decreasing/_marker.py index a8f49ee6e5..f7df8e9bc8 100644 --- a/plotly/graph_objs/waterfall/decreasing/_marker.py +++ b/plotly/graph_objs/waterfall/decreasing/_marker.py @@ -57,7 +57,7 @@ def _prop_descriptions(self): color Sets the marker color of all decreasing values. line - :class:`plotly.graph_objects.waterfall.decreasing.marke + :class:`plotly.graph_objs.waterfall.decreasing.marke r.Line` instance or dict with compatible properties """ @@ -74,7 +74,7 @@ def __init__(self, arg=None, color=None, line=None, **kwargs): color Sets the marker color of all decreasing values. line - :class:`plotly.graph_objects.waterfall.decreasing.marke + :class:`plotly.graph_objs.waterfall.decreasing.marke r.Line` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/waterfall/increasing/_marker.py b/plotly/graph_objs/waterfall/increasing/_marker.py index 3a77deefa9..65fd4c448b 100644 --- a/plotly/graph_objs/waterfall/increasing/_marker.py +++ b/plotly/graph_objs/waterfall/increasing/_marker.py @@ -57,7 +57,7 @@ def _prop_descriptions(self): color Sets the marker color of all increasing values. line - :class:`plotly.graph_objects.waterfall.increasing.marke + :class:`plotly.graph_objs.waterfall.increasing.marke r.Line` instance or dict with compatible properties """ @@ -74,7 +74,7 @@ def __init__(self, arg=None, color=None, line=None, **kwargs): color Sets the marker color of all increasing values. line - :class:`plotly.graph_objects.waterfall.increasing.marke + :class:`plotly.graph_objs.waterfall.increasing.marke r.Line` instance or dict with compatible properties Returns diff --git a/plotly/graph_objs/waterfall/totals/_marker.py b/plotly/graph_objs/waterfall/totals/_marker.py index 5cc16b8f32..44b515a096 100644 --- a/plotly/graph_objs/waterfall/totals/_marker.py +++ b/plotly/graph_objs/waterfall/totals/_marker.py @@ -59,7 +59,7 @@ def _prop_descriptions(self): Sets the marker color of all intermediate sums and total values. line - :class:`plotly.graph_objects.waterfall.totals.marker.Li + :class:`plotly.graph_objs.waterfall.totals.marker.Li ne` instance or dict with compatible properties """ @@ -77,7 +77,7 @@ def __init__(self, arg=None, color=None, line=None, **kwargs): Sets the marker color of all intermediate sums and total values. line - :class:`plotly.graph_objects.waterfall.totals.marker.Li + :class:`plotly.graph_objs.waterfall.totals.marker.Li ne` instance or dict with compatible properties Returns