From 31b73ce2dd34d93a18c4f15e3381b3bda9ab30f5 Mon Sep 17 00:00:00 2001 From: daexs Date: Tue, 12 Aug 2025 16:39:15 -0400 Subject: [PATCH 01/18] Added backslashes to descriptions with '[][]' Changes were made to line 2037, in the case where a node is valType info_array in the JSON with dimension: 2 (eg. groups in _node.py line 137). This fixes the issue where markdown interprets it as a hyperlink. This line adds '[][]' to the description after the description passed in the JSON file as part of the validation process. Now, markdown correctly interprets the brackets as consecutive brackets instead. --- _plotly_utils/basevalidators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py index 0d7e387bbc..b53bf9f47c 100644 --- a/_plotly_utils/basevalidators.py +++ b/_plotly_utils/basevalidators.py @@ -2034,7 +2034,7 @@ def description(self): """.format(el_desc=el_desc) if self.dimensions in ("1-2", 2): - item_validator.plotly_name = "{name}[i][j]".format( + item_validator.plotly_name = "{name}\\[i\\]\\[j\\]".format( name=self.plotly_name ) From fae9563de120dd51427040909e5ad76782b0f38b Mon Sep 17 00:00:00 2001 From: daexs Date: Thu, 14 Aug 2025 10:06:14 -0400 Subject: [PATCH 02/18] Fixed markdown formatting for valType 'info_array' All three cases in 'InfoArrayValidator' no longer encounter '[][]' errors. For examples, see '_node.py' groups property, '_image.py' zmax property, '_dimension.py' constraintrange property. Keep the newline between "...specified as" and "* ..." to avoid rendering a code block. Note: Python now raises a SyntaxWarning due to '\['. --- _plotly_utils/basevalidators.py | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py index b53bf9f47c..f2abe7777f 100644 --- a/_plotly_utils/basevalidators.py +++ b/_plotly_utils/basevalidators.py @@ -716,15 +716,15 @@ def __init__( def description(self): desc = """\ - The '{plotly_name}' property is a number and may be specified as:""".format( + The '{plotly_name}' property is a number and may be specified as:""".format( plotly_name=self.plotly_name ) if not self.has_min_max: desc = ( desc - + """ - - An int or float""" + + """\n + - An int or float""" ) else: @@ -1983,8 +1983,7 @@ def description(self): # ### Case 1 ### if self.dimensions in (1, "1-2"): upto = " up to" if self.free_length and self.dimensions == 1 else "" - desc += """ - + desc += """\n * a list or tuple of{upto} {N} elements where:\ """.format(upto=upto, N=len(self.item_validators)) @@ -1992,8 +1991,8 @@ def description(self): el_desc = item_validator.description().strip() desc = ( desc - + """ -({i}) {el_desc}""".format(i=i, el_desc=el_desc) + + """\n + ({i}) {el_desc}""".format(i=i, el_desc=el_desc) ) # ### Case 2 ### @@ -2006,15 +2005,15 @@ def description(self): for i, item_validator in enumerate(self.item_validators): # Update name for 2d orig_name = item_validator.plotly_name - item_validator.plotly_name = "{name}[i][{i}]".format( + item_validator.plotly_name = "{name}\\[i\\]\\[{i}\\]".format( name=self.plotly_name, i=i ) el_desc = item_validator.description().strip() desc = ( desc - + """ -({i}) {el_desc}""".format(i=i, el_desc=el_desc) + + """\n + ({i}) {el_desc}""".format(i=i, el_desc=el_desc) ) item_validator.plotly_name = orig_name else: @@ -2039,9 +2038,9 @@ def description(self): ) el_desc = item_validator.description().strip() - desc += """ - * a 2D list where: - {el_desc} + desc += """\n + * a 2D list where:\n + {el_desc} """.format(el_desc=el_desc) item_validator.plotly_name = orig_name From f345aeff063d32d46ce61a59f1e802049641b973 Mon Sep 17 00:00:00 2001 From: daexs Date: Thu, 14 Aug 2025 12:09:28 -0400 Subject: [PATCH 03/18] Fixed double bracket error for regular expressions For examples, see '_annotation.py' property axref. --- _plotly_utils/basevalidators.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py index f2abe7777f..e2c5f2e032 100644 --- a/_plotly_utils/basevalidators.py +++ b/_plotly_utils/basevalidators.py @@ -523,7 +523,10 @@ def description(self): enum_regexs = [] for v, regex in zip(self.values, self.val_regexs): if regex is not None: - enum_regexs.append(regex.pattern) + # enum_regexs.append(regex.pattern) + enum_pattern = regex.pattern + escaped_pattern = enum_pattern.replace("[", r"\[").replace("]", r"\]") + enum_regexs.append(escaped_pattern) else: enum_vals.append(v) desc = """\ From f840f11392dd3965ad4b8e9ceee1224ac5cec02c Mon Sep 17 00:00:00 2001 From: daexs Date: Thu, 14 Aug 2025 12:13:12 -0400 Subject: [PATCH 04/18] Minor code cleanup --- _plotly_utils/basevalidators.py | 1 - 1 file changed, 1 deletion(-) diff --git a/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py index e2c5f2e032..7d2d17768c 100644 --- a/_plotly_utils/basevalidators.py +++ b/_plotly_utils/basevalidators.py @@ -523,7 +523,6 @@ def description(self): enum_regexs = [] for v, regex in zip(self.values, self.val_regexs): if regex is not None: - # enum_regexs.append(regex.pattern) enum_pattern = regex.pattern escaped_pattern = enum_pattern.replace("[", r"\[").replace("]", r"\]") enum_regexs.append(escaped_pattern) From 4a7873cc7e784af52cad80a79517a386b5c11c61 Mon Sep 17 00:00:00 2001 From: daexs Date: Thu, 14 Aug 2025 12:26:41 -0400 Subject: [PATCH 05/18] Fixed double bracket error in 'basedatatypes.py' --- plotly/basedatatypes.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plotly/basedatatypes.py b/plotly/basedatatypes.py index 1e7b0fdd7d..25096f456e 100644 --- a/plotly/basedatatypes.py +++ b/plotly/basedatatypes.py @@ -4741,10 +4741,10 @@ def __getitem__(self, prop): property is returned. If prop is a nested property path string (e.g. 'foo[1].bar'), - then a nested property is returned (e.g. obj['foo'][1]['bar']) + then a nested property is returned (e.g. obj\\['foo'\\]\\[1\\]\\['bar'\\]) If prop is a path tuple (e.g. ('foo', 1, 'bar')), then a nested - property is returned (e.g. obj['foo'][1]['bar']). + property is returned (e.g. obj\\['foo'\\]\\[1\\]\\['bar'\\]). Returns ------- @@ -4836,11 +4836,11 @@ def __contains__(self, prop): If prop is a property path string (e.g. 'foo[0].bar'), then return true if the obejct contains the nested elements for - each entry in the path string (e.g. 'bar' in obj['foo'][0]) + each entry in the path string (e.g. 'bar' in obj\\['foo'\\]\\[0\\]) If prop is a property path tuple (e.g. ('foo', 0, 'bar')), then return true if the object contains the nested elements for - each entry in the path string (e.g. 'bar' in obj['foo'][0]) + each entry in the path string (e.g. 'bar' in obj\\['foo'\\]\\[0\\]) Returns ------- From cd623aa106310e45299a907e37f1040d886c767b Mon Sep 17 00:00:00 2001 From: daexs Date: Thu, 14 Aug 2025 13:47:24 -0400 Subject: [PATCH 06/18] Regenerated code after basevalidators.py changes --- plotly/graph_objects/layout/_annotation.py | 8 ++++---- plotly/graph_objects/layout/_grid.py | 11 ++++++----- plotly/graph_objects/layout/_image.py | 4 ++-- plotly/graph_objects/layout/_selection.py | 4 ++-- plotly/graph_objects/layout/_shape.py | 4 ++-- plotly/graph_objects/layout/_xaxis.py | 16 ++++++++-------- plotly/graph_objects/layout/_yaxis.py | 16 ++++++++-------- 7 files changed, 32 insertions(+), 31 deletions(-) diff --git a/plotly/graph_objects/layout/_annotation.py b/plotly/graph_objects/layout/_annotation.py index 081cc6cf8a..96a546e488 100644 --- a/plotly/graph_objects/layout/_annotation.py +++ b/plotly/graph_objects/layout/_annotation.py @@ -226,7 +226,7 @@ def axref(self): - One of the following enumeration values: ['pixel'] - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -288,7 +288,7 @@ def ayref(self): - One of the following enumeration values: ['pixel'] - A string that matches one of the following regular expressions: - ['^y([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -876,7 +876,7 @@ def xref(self): - One of the following enumeration values: ['paper'] - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -995,7 +995,7 @@ def yref(self): - One of the following enumeration values: ['paper'] - A string that matches one of the following regular expressions: - ['^y([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- diff --git a/plotly/graph_objects/layout/_grid.py b/plotly/graph_objects/layout/_grid.py index c95e7eb048..cfc4fa25ad 100644 --- a/plotly/graph_objects/layout/_grid.py +++ b/plotly/graph_objects/layout/_grid.py @@ -144,14 +144,15 @@ def subplots(self): using the `gridcell` attribute. The 'subplots' property is an info array that may be specified as: - + * a 2D list where: - + The 'subplots\[i\]\[j\]' property is an enumeration that may be specified as: - One of the following enumeration values: [''] - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?y([2-9]|[1-9][0-9]+)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?y(\\[2-9\\]|\\[1-9\\]\ + \[0-9\\]+)?$'] Returns ------- @@ -179,7 +180,7 @@ def xaxes(self): - One of the following enumeration values: [''] - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -248,7 +249,7 @@ def yaxes(self): - One of the following enumeration values: [''] - A string that matches one of the following regular expressions: - ['^y([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- diff --git a/plotly/graph_objects/layout/_image.py b/plotly/graph_objects/layout/_image.py index 2410e08aa3..fbb45e0c7d 100644 --- a/plotly/graph_objects/layout/_image.py +++ b/plotly/graph_objects/layout/_image.py @@ -282,7 +282,7 @@ def xref(self): - One of the following enumeration values: ['paper'] - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -351,7 +351,7 @@ def yref(self): - One of the following enumeration values: ['paper'] - A string that matches one of the following regular expressions: - ['^y([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- diff --git a/plotly/graph_objects/layout/_selection.py b/plotly/graph_objects/layout/_selection.py index d73e97504e..9d5c0f337a 100644 --- a/plotly/graph_objects/layout/_selection.py +++ b/plotly/graph_objects/layout/_selection.py @@ -206,7 +206,7 @@ def xref(self): - One of the following enumeration values: ['paper'] - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -271,7 +271,7 @@ def yref(self): - One of the following enumeration values: ['paper'] - A string that matches one of the following regular expressions: - ['^y([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- diff --git a/plotly/graph_objects/layout/_shape.py b/plotly/graph_objects/layout/_shape.py index 7d502e484e..83f5397ecc 100644 --- a/plotly/graph_objects/layout/_shape.py +++ b/plotly/graph_objects/layout/_shape.py @@ -565,7 +565,7 @@ def xref(self): - One of the following enumeration values: ['paper'] - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -721,7 +721,7 @@ def yref(self): - One of the following enumeration values: ['paper'] - A string that matches one of the following regular expressions: - ['^y([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- diff --git a/plotly/graph_objects/layout/_xaxis.py b/plotly/graph_objects/layout/_xaxis.py index cb8edd55a2..40cca2cc7b 100644 --- a/plotly/graph_objects/layout/_xaxis.py +++ b/plotly/graph_objects/layout/_xaxis.py @@ -116,8 +116,8 @@ def anchor(self): - One of the following enumeration values: ['free'] - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?( domain)?$', - '^y([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -786,8 +786,8 @@ def matches(self): The 'matches' property is an enumeration that may be specified as: - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?( domain)?$', - '^y([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -930,8 +930,8 @@ def overlaying(self): - One of the following enumeration values: ['free'] - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?( domain)?$', - '^y([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -1129,8 +1129,8 @@ def scaleanchor(self): - One of the following enumeration values: [False] - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?( domain)?$', - '^y([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- diff --git a/plotly/graph_objects/layout/_yaxis.py b/plotly/graph_objects/layout/_yaxis.py index 65f63170b5..6ce74f1948 100644 --- a/plotly/graph_objects/layout/_yaxis.py +++ b/plotly/graph_objects/layout/_yaxis.py @@ -116,8 +116,8 @@ def anchor(self): - One of the following enumeration values: ['free'] - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?( domain)?$', - '^y([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -808,8 +808,8 @@ def matches(self): The 'matches' property is an enumeration that may be specified as: - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?( domain)?$', - '^y([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -952,8 +952,8 @@ def overlaying(self): - One of the following enumeration values: ['free'] - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?( domain)?$', - '^y([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -1113,8 +1113,8 @@ def scaleanchor(self): - One of the following enumeration values: [False] - A string that matches one of the following regular expressions: - ['^x([2-9]|[1-9][0-9]+)?( domain)?$', - '^y([2-9]|[1-9][0-9]+)?( domain)?$'] + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- From 98fab98f7e640248b5319ce97e4ad782e8c2817a Mon Sep 17 00:00:00 2001 From: daexs Date: Thu, 14 Aug 2025 16:26:07 -0400 Subject: [PATCH 07/18] Fix SyntaxWarning and adjusted valType 'enumerated' docstring format. --- _plotly_utils/basevalidators.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py index 134f10783d..496e23838d 100644 --- a/_plotly_utils/basevalidators.py +++ b/_plotly_utils/basevalidators.py @@ -545,8 +545,8 @@ def description(self): desc = ( desc - + """ - - One of the following enumeration values: + + """\n + - One of the following enumeration values:\n {enum_vals_str}""".format(enum_vals_str=enum_vals_str) ) @@ -557,20 +557,21 @@ def description(self): initial_indent=" " * 12, subsequent_indent=" " * 12, break_on_hyphens=False, + break_long_words=False, ) ) desc = ( desc - + """ - - A string that matches one of the following regular expressions: + + """\n + - A string that matches one of the following regular expressions:\n {enum_regexs_str}""".format(enum_regexs_str=enum_regexs_str) ) if self.array_ok: desc = ( desc - + """ + + """\n - A tuple, list, or one-dimensional numpy array of the above""" ) @@ -2007,7 +2008,7 @@ def description(self): for i, item_validator in enumerate(self.item_validators): # Update name for 2d orig_name = item_validator.plotly_name - item_validator.plotly_name = "{name}\\[i\\]\\[{i}\\]".format( + item_validator.plotly_name = "{name}\\\\[i\\\\]\\\\[{i}\\\\]".format( name=self.plotly_name, i=i ) @@ -2035,7 +2036,7 @@ def description(self): """.format(el_desc=el_desc) if self.dimensions in ("1-2", 2): - item_validator.plotly_name = "{name}\\[i\\]\\[j\\]".format( + item_validator.plotly_name = "{name}\\\\[i\\\\]\\\\[j\\\\]".format( name=self.plotly_name ) From 9ddde0fd525eb6ff4d70c576a96885db713ad18d Mon Sep 17 00:00:00 2001 From: daexs Date: Fri, 15 Aug 2025 15:04:16 -0400 Subject: [PATCH 08/18] Fixed formatting issues with nested enumerated docstrings in info_array descriptions for all the cases in info_array which include value types of all cases of enumerated values. --- _plotly_utils/basevalidators.py | 43 +-- plotly/graph_objects/_bar.py | 92 ++++--- plotly/graph_objects/_barpolar.py | 35 ++- plotly/graph_objects/_box.py | 102 ++++--- plotly/graph_objects/_candlestick.py | 35 ++- plotly/graph_objects/_carpet.py | 24 +- plotly/graph_objects/_choropleth.py | 23 +- plotly/graph_objects/_choroplethmap.py | 17 +- plotly/graph_objects/_choroplethmapbox.py | 17 +- plotly/graph_objects/_cone.py | 35 ++- plotly/graph_objects/_contour.py | 72 +++-- plotly/graph_objects/_contourcarpet.py | 36 ++- plotly/graph_objects/_densitymap.py | 26 +- plotly/graph_objects/_densitymapbox.py | 26 +- plotly/graph_objects/_funnel.py | 62 +++-- plotly/graph_objects/_funnelarea.py | 33 ++- plotly/graph_objects/_heatmap.py | 84 +++--- plotly/graph_objects/_histogram.py | 76 ++++-- plotly/graph_objects/_histogram2d.py | 70 +++-- plotly/graph_objects/_histogram2dcontour.py | 58 ++-- plotly/graph_objects/_icicle.py | 30 +- plotly/graph_objects/_image.py | 30 +- plotly/graph_objects/_indicator.py | 19 +- plotly/graph_objects/_isosurface.py | 24 +- plotly/graph_objects/_layout.py | 133 +++++---- plotly/graph_objects/_mesh3d.py | 70 +++-- plotly/graph_objects/_ohlc.py | 35 ++- plotly/graph_objects/_parcats.py | 33 ++- plotly/graph_objects/_parcoords.py | 17 +- plotly/graph_objects/_pie.py | 48 ++-- plotly/graph_objects/_sankey.py | 23 +- plotly/graph_objects/_scatter.py | 93 ++++--- plotly/graph_objects/_scatter3d.py | 69 +++-- plotly/graph_objects/_scattercarpet.py | 33 ++- plotly/graph_objects/_scattergeo.py | 39 ++- plotly/graph_objects/_scattergl.py | 75 +++-- plotly/graph_objects/_scattermap.py | 30 +- plotly/graph_objects/_scattermapbox.py | 30 +- plotly/graph_objects/_scatterpolar.py | 43 +-- plotly/graph_objects/_scatterpolargl.py | 45 +-- plotly/graph_objects/_scattersmith.py | 33 ++- plotly/graph_objects/_scatterternary.py | 36 ++- plotly/graph_objects/_splom.py | 34 ++- plotly/graph_objects/_streamtube.py | 23 +- plotly/graph_objects/_sunburst.py | 26 +- plotly/graph_objects/_surface.py | 56 ++-- plotly/graph_objects/_table.py | 16 +- plotly/graph_objects/_treemap.py | 30 +- plotly/graph_objects/_violin.py | 62 +++-- plotly/graph_objects/_volume.py | 24 +- plotly/graph_objects/_waterfall.py | 70 +++-- plotly/graph_objects/bar/_error_x.py | 18 +- plotly/graph_objects/bar/_error_y.py | 18 +- plotly/graph_objects/bar/_hoverlabel.py | 9 +- plotly/graph_objects/bar/_insidetextfont.py | 35 ++- plotly/graph_objects/bar/_marker.py | 12 +- plotly/graph_objects/bar/_outsidetextfont.py | 35 ++- plotly/graph_objects/bar/_stream.py | 3 +- plotly/graph_objects/bar/_textfont.py | 35 ++- plotly/graph_objects/bar/hoverlabel/_font.py | 35 ++- .../bar/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/bar/marker/_colorbar.py | 125 ++++++--- plotly/graph_objects/bar/marker/_line.py | 12 +- plotly/graph_objects/bar/marker/_pattern.py | 30 +- .../bar/marker/colorbar/_tickfont.py | 23 +- .../bar/marker/colorbar/_title.py | 6 +- .../bar/marker/colorbar/title/_font.py | 23 +- plotly/graph_objects/bar/selected/_marker.py | 3 +- .../graph_objects/bar/unselected/_marker.py | 3 +- plotly/graph_objects/barpolar/_hoverlabel.py | 9 +- plotly/graph_objects/barpolar/_marker.py | 12 +- plotly/graph_objects/barpolar/_stream.py | 3 +- .../barpolar/hoverlabel/_font.py | 35 ++- .../barpolar/legendgrouptitle/_font.py | 23 +- .../barpolar/marker/_colorbar.py | 125 ++++++--- plotly/graph_objects/barpolar/marker/_line.py | 12 +- .../graph_objects/barpolar/marker/_pattern.py | 30 +- .../barpolar/marker/colorbar/_tickfont.py | 23 +- .../barpolar/marker/colorbar/_title.py | 6 +- .../barpolar/marker/colorbar/title/_font.py | 23 +- .../barpolar/selected/_marker.py | 3 +- .../barpolar/unselected/_marker.py | 3 +- plotly/graph_objects/box/_hoverlabel.py | 9 +- plotly/graph_objects/box/_line.py | 3 +- plotly/graph_objects/box/_marker.py | 181 ++++++------ plotly/graph_objects/box/_stream.py | 3 +- plotly/graph_objects/box/hoverlabel/_font.py | 35 ++- .../box/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/box/marker/_line.py | 6 +- plotly/graph_objects/box/selected/_marker.py | 6 +- .../graph_objects/box/unselected/_marker.py | 6 +- .../graph_objects/candlestick/_hoverlabel.py | 9 +- plotly/graph_objects/candlestick/_line.py | 3 +- plotly/graph_objects/candlestick/_stream.py | 3 +- .../candlestick/decreasing/_line.py | 3 +- .../candlestick/hoverlabel/_font.py | 35 ++- .../candlestick/increasing/_line.py | 3 +- .../candlestick/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/carpet/_aaxis.py | 99 ++++--- plotly/graph_objects/carpet/_baxis.py | 99 ++++--- plotly/graph_objects/carpet/_font.py | 23 +- plotly/graph_objects/carpet/_stream.py | 3 +- .../graph_objects/carpet/aaxis/_tickfont.py | 23 +- plotly/graph_objects/carpet/aaxis/_title.py | 2 +- .../graph_objects/carpet/aaxis/title/_font.py | 23 +- .../graph_objects/carpet/baxis/_tickfont.py | 23 +- plotly/graph_objects/carpet/baxis/_title.py | 2 +- .../graph_objects/carpet/baxis/title/_font.py | 23 +- .../carpet/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/choropleth/_colorbar.py | 125 ++++++--- .../graph_objects/choropleth/_hoverlabel.py | 9 +- plotly/graph_objects/choropleth/_marker.py | 6 +- plotly/graph_objects/choropleth/_stream.py | 3 +- .../choropleth/colorbar/_tickfont.py | 23 +- .../choropleth/colorbar/_title.py | 6 +- .../choropleth/colorbar/title/_font.py | 23 +- .../choropleth/hoverlabel/_font.py | 35 ++- .../choropleth/legendgrouptitle/_font.py | 23 +- .../graph_objects/choropleth/marker/_line.py | 6 +- .../choropleth/selected/_marker.py | 3 +- .../choropleth/unselected/_marker.py | 3 +- .../graph_objects/choroplethmap/_colorbar.py | 125 ++++++--- .../choroplethmap/_hoverlabel.py | 9 +- plotly/graph_objects/choroplethmap/_marker.py | 6 +- plotly/graph_objects/choroplethmap/_stream.py | 3 +- .../choroplethmap/colorbar/_tickfont.py | 23 +- .../choroplethmap/colorbar/_title.py | 6 +- .../choroplethmap/colorbar/title/_font.py | 23 +- .../choroplethmap/hoverlabel/_font.py | 35 ++- .../choroplethmap/legendgrouptitle/_font.py | 23 +- .../choroplethmap/marker/_line.py | 6 +- .../choroplethmap/selected/_marker.py | 3 +- .../choroplethmap/unselected/_marker.py | 3 +- .../choroplethmapbox/_colorbar.py | 125 ++++++--- .../choroplethmapbox/_hoverlabel.py | 9 +- .../graph_objects/choroplethmapbox/_marker.py | 6 +- .../graph_objects/choroplethmapbox/_stream.py | 3 +- .../choroplethmapbox/colorbar/_tickfont.py | 23 +- .../choroplethmapbox/colorbar/_title.py | 6 +- .../choroplethmapbox/colorbar/title/_font.py | 23 +- .../choroplethmapbox/hoverlabel/_font.py | 35 ++- .../legendgrouptitle/_font.py | 23 +- .../choroplethmapbox/marker/_line.py | 6 +- .../choroplethmapbox/selected/_marker.py | 3 +- .../choroplethmapbox/unselected/_marker.py | 3 +- plotly/graph_objects/cone/_colorbar.py | 125 ++++++--- plotly/graph_objects/cone/_hoverlabel.py | 9 +- plotly/graph_objects/cone/_lighting.py | 21 +- plotly/graph_objects/cone/_lightposition.py | 9 +- plotly/graph_objects/cone/_stream.py | 3 +- .../graph_objects/cone/colorbar/_tickfont.py | 23 +- plotly/graph_objects/cone/colorbar/_title.py | 6 +- .../cone/colorbar/title/_font.py | 23 +- plotly/graph_objects/cone/hoverlabel/_font.py | 35 ++- .../cone/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/contour/_colorbar.py | 125 ++++++--- plotly/graph_objects/contour/_contours.py | 27 +- plotly/graph_objects/contour/_hoverlabel.py | 9 +- plotly/graph_objects/contour/_line.py | 6 +- plotly/graph_objects/contour/_stream.py | 3 +- plotly/graph_objects/contour/_textfont.py | 23 +- .../contour/colorbar/_tickfont.py | 23 +- .../graph_objects/contour/colorbar/_title.py | 6 +- .../contour/colorbar/title/_font.py | 23 +- .../contour/contours/_labelfont.py | 23 +- .../graph_objects/contour/hoverlabel/_font.py | 35 ++- .../contour/legendgrouptitle/_font.py | 23 +- .../graph_objects/contourcarpet/_colorbar.py | 125 ++++++--- .../graph_objects/contourcarpet/_contours.py | 27 +- plotly/graph_objects/contourcarpet/_line.py | 6 +- plotly/graph_objects/contourcarpet/_stream.py | 3 +- .../contourcarpet/colorbar/_tickfont.py | 23 +- .../contourcarpet/colorbar/_title.py | 6 +- .../contourcarpet/colorbar/title/_font.py | 23 +- .../contourcarpet/contours/_labelfont.py | 23 +- .../contourcarpet/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/densitymap/_colorbar.py | 125 ++++++--- .../graph_objects/densitymap/_hoverlabel.py | 9 +- plotly/graph_objects/densitymap/_stream.py | 3 +- .../densitymap/colorbar/_tickfont.py | 23 +- .../densitymap/colorbar/_title.py | 6 +- .../densitymap/colorbar/title/_font.py | 23 +- .../densitymap/hoverlabel/_font.py | 35 ++- .../densitymap/legendgrouptitle/_font.py | 23 +- .../graph_objects/densitymapbox/_colorbar.py | 125 ++++++--- .../densitymapbox/_hoverlabel.py | 9 +- plotly/graph_objects/densitymapbox/_stream.py | 3 +- .../densitymapbox/colorbar/_tickfont.py | 23 +- .../densitymapbox/colorbar/_title.py | 6 +- .../densitymapbox/colorbar/title/_font.py | 23 +- .../densitymapbox/hoverlabel/_font.py | 35 ++- .../densitymapbox/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/funnel/_hoverlabel.py | 9 +- .../graph_objects/funnel/_insidetextfont.py | 35 ++- plotly/graph_objects/funnel/_marker.py | 12 +- .../graph_objects/funnel/_outsidetextfont.py | 35 ++- plotly/graph_objects/funnel/_stream.py | 3 +- plotly/graph_objects/funnel/_textfont.py | 35 ++- .../graph_objects/funnel/connector/_line.py | 3 +- .../graph_objects/funnel/hoverlabel/_font.py | 35 ++- .../funnel/legendgrouptitle/_font.py | 23 +- .../graph_objects/funnel/marker/_colorbar.py | 125 ++++++--- plotly/graph_objects/funnel/marker/_line.py | 12 +- .../funnel/marker/colorbar/_tickfont.py | 23 +- .../funnel/marker/colorbar/_title.py | 6 +- .../funnel/marker/colorbar/title/_font.py | 23 +- plotly/graph_objects/funnelarea/_domain.py | 12 +- .../graph_objects/funnelarea/_hoverlabel.py | 9 +- .../funnelarea/_insidetextfont.py | 35 ++- plotly/graph_objects/funnelarea/_stream.py | 3 +- plotly/graph_objects/funnelarea/_textfont.py | 35 ++- plotly/graph_objects/funnelarea/_title.py | 6 +- .../funnelarea/hoverlabel/_font.py | 35 ++- .../funnelarea/legendgrouptitle/_font.py | 23 +- .../graph_objects/funnelarea/marker/_line.py | 6 +- .../funnelarea/marker/_pattern.py | 30 +- .../graph_objects/funnelarea/title/_font.py | 35 ++- plotly/graph_objects/heatmap/_colorbar.py | 125 ++++++--- plotly/graph_objects/heatmap/_hoverlabel.py | 9 +- plotly/graph_objects/heatmap/_stream.py | 3 +- plotly/graph_objects/heatmap/_textfont.py | 23 +- .../heatmap/colorbar/_tickfont.py | 23 +- .../graph_objects/heatmap/colorbar/_title.py | 6 +- .../heatmap/colorbar/title/_font.py | 23 +- .../graph_objects/heatmap/hoverlabel/_font.py | 35 ++- .../heatmap/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/histogram/_cumulative.py | 12 +- plotly/graph_objects/histogram/_error_x.py | 18 +- plotly/graph_objects/histogram/_error_y.py | 18 +- plotly/graph_objects/histogram/_hoverlabel.py | 9 +- .../histogram/_insidetextfont.py | 23 +- plotly/graph_objects/histogram/_marker.py | 12 +- .../histogram/_outsidetextfont.py | 23 +- plotly/graph_objects/histogram/_stream.py | 3 +- plotly/graph_objects/histogram/_textfont.py | 23 +- .../histogram/hoverlabel/_font.py | 35 ++- .../histogram/legendgrouptitle/_font.py | 23 +- .../histogram/marker/_colorbar.py | 125 ++++++--- .../graph_objects/histogram/marker/_line.py | 12 +- .../histogram/marker/_pattern.py | 30 +- .../histogram/marker/colorbar/_tickfont.py | 23 +- .../histogram/marker/colorbar/_title.py | 6 +- .../histogram/marker/colorbar/title/_font.py | 23 +- .../histogram/selected/_marker.py | 3 +- .../histogram/unselected/_marker.py | 3 +- plotly/graph_objects/histogram2d/_colorbar.py | 125 ++++++--- .../graph_objects/histogram2d/_hoverlabel.py | 9 +- plotly/graph_objects/histogram2d/_stream.py | 3 +- plotly/graph_objects/histogram2d/_textfont.py | 23 +- .../histogram2d/colorbar/_tickfont.py | 23 +- .../histogram2d/colorbar/_title.py | 6 +- .../histogram2d/colorbar/title/_font.py | 23 +- .../histogram2d/hoverlabel/_font.py | 35 ++- .../histogram2d/legendgrouptitle/_font.py | 23 +- .../histogram2dcontour/_colorbar.py | 125 ++++++--- .../histogram2dcontour/_contours.py | 27 +- .../histogram2dcontour/_hoverlabel.py | 9 +- .../graph_objects/histogram2dcontour/_line.py | 6 +- .../histogram2dcontour/_stream.py | 3 +- .../histogram2dcontour/_textfont.py | 23 +- .../histogram2dcontour/colorbar/_tickfont.py | 23 +- .../histogram2dcontour/colorbar/_title.py | 6 +- .../colorbar/title/_font.py | 23 +- .../histogram2dcontour/contours/_labelfont.py | 23 +- .../histogram2dcontour/hoverlabel/_font.py | 35 ++- .../legendgrouptitle/_font.py | 23 +- plotly/graph_objects/icicle/_domain.py | 12 +- plotly/graph_objects/icicle/_hoverlabel.py | 9 +- .../graph_objects/icicle/_insidetextfont.py | 35 ++- plotly/graph_objects/icicle/_leaf.py | 3 +- plotly/graph_objects/icicle/_marker.py | 6 +- .../graph_objects/icicle/_outsidetextfont.py | 35 ++- plotly/graph_objects/icicle/_pathbar.py | 15 +- plotly/graph_objects/icicle/_stream.py | 3 +- plotly/graph_objects/icicle/_textfont.py | 35 ++- plotly/graph_objects/icicle/_tiling.py | 9 +- .../graph_objects/icicle/hoverlabel/_font.py | 35 ++- .../icicle/legendgrouptitle/_font.py | 23 +- .../graph_objects/icicle/marker/_colorbar.py | 125 ++++++--- plotly/graph_objects/icicle/marker/_line.py | 6 +- .../graph_objects/icicle/marker/_pattern.py | 30 +- .../icicle/marker/colorbar/_tickfont.py | 23 +- .../icicle/marker/colorbar/_title.py | 6 +- .../icicle/marker/colorbar/title/_font.py | 23 +- .../graph_objects/icicle/pathbar/_textfont.py | 35 ++- plotly/graph_objects/image/_hoverlabel.py | 9 +- plotly/graph_objects/image/_stream.py | 3 +- .../graph_objects/image/hoverlabel/_font.py | 35 ++- .../image/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/indicator/_delta.py | 8 +- plotly/graph_objects/indicator/_domain.py | 12 +- plotly/graph_objects/indicator/_gauge.py | 9 +- plotly/graph_objects/indicator/_stream.py | 3 +- plotly/graph_objects/indicator/_title.py | 6 +- plotly/graph_objects/indicator/delta/_font.py | 23 +- plotly/graph_objects/indicator/gauge/_axis.py | 45 ++- plotly/graph_objects/indicator/gauge/_bar.py | 3 +- plotly/graph_objects/indicator/gauge/_step.py | 3 +- .../indicator/gauge/_threshold.py | 5 +- .../indicator/gauge/axis/_tickfont.py | 23 +- .../indicator/gauge/bar/_line.py | 3 +- .../indicator/gauge/step/_line.py | 3 +- .../indicator/gauge/threshold/_line.py | 3 +- .../indicator/legendgrouptitle/_font.py | 23 +- .../graph_objects/indicator/number/_font.py | 23 +- plotly/graph_objects/indicator/title/_font.py | 23 +- plotly/graph_objects/isosurface/_colorbar.py | 125 ++++++--- plotly/graph_objects/isosurface/_contour.py | 3 +- .../graph_objects/isosurface/_hoverlabel.py | 9 +- plotly/graph_objects/isosurface/_lighting.py | 21 +- .../isosurface/_lightposition.py | 9 +- .../graph_objects/isosurface/_spaceframe.py | 3 +- plotly/graph_objects/isosurface/_stream.py | 3 +- plotly/graph_objects/isosurface/_surface.py | 3 +- plotly/graph_objects/isosurface/caps/_x.py | 3 +- plotly/graph_objects/isosurface/caps/_y.py | 3 +- plotly/graph_objects/isosurface/caps/_z.py | 3 +- .../isosurface/colorbar/_tickfont.py | 23 +- .../isosurface/colorbar/_title.py | 6 +- .../isosurface/colorbar/title/_font.py | 23 +- .../isosurface/hoverlabel/_font.py | 35 ++- .../isosurface/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/isosurface/slices/_x.py | 3 +- plotly/graph_objects/isosurface/slices/_y.py | 3 +- plotly/graph_objects/isosurface/slices/_z.py | 3 +- .../graph_objects/layout/_activeselection.py | 3 +- plotly/graph_objects/layout/_activeshape.py | 3 +- plotly/graph_objects/layout/_annotation.py | 112 +++++--- plotly/graph_objects/layout/_coloraxis.py | 6 +- plotly/graph_objects/layout/_font.py | 23 +- plotly/graph_objects/layout/_geo.py | 35 ++- plotly/graph_objects/layout/_grid.py | 71 +++-- plotly/graph_objects/layout/_hoverlabel.py | 6 +- plotly/graph_objects/layout/_image.py | 55 ++-- plotly/graph_objects/layout/_legend.py | 88 ++++-- plotly/graph_objects/layout/_map.py | 6 +- plotly/graph_objects/layout/_mapbox.py | 6 +- plotly/graph_objects/layout/_margin.py | 15 +- plotly/graph_objects/layout/_modebar.py | 6 +- plotly/graph_objects/layout/_newselection.py | 6 +- plotly/graph_objects/layout/_newshape.py | 32 ++- plotly/graph_objects/layout/_polar.py | 18 +- plotly/graph_objects/layout/_scene.py | 18 +- plotly/graph_objects/layout/_selection.py | 33 ++- plotly/graph_objects/layout/_shape.py | 80 ++++-- plotly/graph_objects/layout/_slider.py | 42 ++- plotly/graph_objects/layout/_ternary.py | 3 +- plotly/graph_objects/layout/_title.py | 30 +- plotly/graph_objects/layout/_transition.py | 30 +- plotly/graph_objects/layout/_uniformtext.py | 9 +- plotly/graph_objects/layout/_updatemenu.py | 33 ++- plotly/graph_objects/layout/_xaxis.py | 256 ++++++++++------- plotly/graph_objects/layout/_yaxis.py | 258 +++++++++++------- .../graph_objects/layout/annotation/_font.py | 23 +- .../layout/annotation/hoverlabel/_font.py | 23 +- .../layout/coloraxis/_colorbar.py | 125 ++++++--- .../layout/coloraxis/colorbar/_tickfont.py | 23 +- .../layout/coloraxis/colorbar/_title.py | 6 +- .../layout/coloraxis/colorbar/title/_font.py | 23 +- plotly/graph_objects/layout/geo/_center.py | 4 +- plotly/graph_objects/layout/geo/_domain.py | 12 +- plotly/graph_objects/layout/geo/_lataxis.py | 7 +- plotly/graph_objects/layout/geo/_lonaxis.py | 7 +- .../graph_objects/layout/geo/_projection.py | 58 ++-- .../layout/geo/projection/_rotation.py | 6 +- plotly/graph_objects/layout/grid/_domain.py | 12 +- .../graph_objects/layout/hoverlabel/_font.py | 23 +- .../layout/hoverlabel/_grouptitlefont.py | 23 +- plotly/graph_objects/layout/legend/_font.py | 23 +- .../layout/legend/_grouptitlefont.py | 23 +- plotly/graph_objects/layout/legend/_title.py | 6 +- .../layout/legend/title/_font.py | 23 +- plotly/graph_objects/layout/map/_bounds.py | 8 +- plotly/graph_objects/layout/map/_center.py | 4 +- plotly/graph_objects/layout/map/_domain.py | 12 +- plotly/graph_objects/layout/map/_layer.py | 21 +- .../graph_objects/layout/map/layer/_circle.py | 2 +- .../graph_objects/layout/map/layer/_line.py | 2 +- .../graph_objects/layout/map/layer/_symbol.py | 18 +- .../layout/map/layer/symbol/_textfont.py | 9 +- plotly/graph_objects/layout/mapbox/_bounds.py | 8 +- plotly/graph_objects/layout/mapbox/_center.py | 4 +- plotly/graph_objects/layout/mapbox/_domain.py | 12 +- plotly/graph_objects/layout/mapbox/_layer.py | 21 +- .../layout/mapbox/layer/_circle.py | 2 +- .../layout/mapbox/layer/_line.py | 2 +- .../layout/mapbox/layer/_symbol.py | 18 +- .../layout/mapbox/layer/symbol/_textfont.py | 9 +- .../layout/newselection/_line.py | 3 +- .../graph_objects/layout/newshape/_label.py | 25 +- plotly/graph_objects/layout/newshape/_line.py | 3 +- .../layout/newshape/label/_font.py | 23 +- .../layout/newshape/legendgrouptitle/_font.py | 23 +- .../layout/polar/_angularaxis.py | 102 ++++--- plotly/graph_objects/layout/polar/_domain.py | 12 +- .../graph_objects/layout/polar/_radialaxis.py | 129 +++++---- .../layout/polar/angularaxis/_tickfont.py | 23 +- .../layout/polar/radialaxis/_tickfont.py | 23 +- .../layout/polar/radialaxis/title/_font.py | 23 +- .../graph_objects/layout/scene/_annotation.py | 62 +++-- .../layout/scene/_aspectratio.py | 9 +- plotly/graph_objects/layout/scene/_domain.py | 12 +- plotly/graph_objects/layout/scene/_xaxis.py | 118 +++++--- plotly/graph_objects/layout/scene/_yaxis.py | 118 +++++--- plotly/graph_objects/layout/scene/_zaxis.py | 118 +++++--- .../layout/scene/annotation/_font.py | 23 +- .../scene/annotation/hoverlabel/_font.py | 23 +- .../layout/scene/camera/_center.py | 6 +- .../graph_objects/layout/scene/camera/_eye.py | 6 +- .../layout/scene/camera/_projection.py | 6 +- .../graph_objects/layout/scene/camera/_up.py | 6 +- .../layout/scene/xaxis/_tickfont.py | 23 +- .../layout/scene/xaxis/title/_font.py | 23 +- .../layout/scene/yaxis/_tickfont.py | 23 +- .../layout/scene/yaxis/title/_font.py | 23 +- .../layout/scene/zaxis/_tickfont.py | 23 +- .../layout/scene/zaxis/title/_font.py | 23 +- .../graph_objects/layout/selection/_line.py | 3 +- plotly/graph_objects/layout/shape/_label.py | 25 +- plotly/graph_objects/layout/shape/_line.py | 3 +- .../graph_objects/layout/shape/label/_font.py | 23 +- .../layout/shape/legendgrouptitle/_font.py | 23 +- .../layout/slider/_currentvalue.py | 8 +- plotly/graph_objects/layout/slider/_font.py | 23 +- plotly/graph_objects/layout/slider/_pad.py | 8 +- plotly/graph_objects/layout/slider/_step.py | 6 +- .../layout/slider/_transition.py | 24 +- .../layout/slider/currentvalue/_font.py | 23 +- plotly/graph_objects/layout/smith/_domain.py | 12 +- .../layout/smith/_imaginaryaxis.py | 36 ++- .../graph_objects/layout/smith/_realaxis.py | 42 ++- .../layout/smith/imaginaryaxis/_tickfont.py | 23 +- .../layout/smith/realaxis/_tickfont.py | 23 +- plotly/graph_objects/layout/ternary/_aaxis.py | 60 ++-- plotly/graph_objects/layout/ternary/_baxis.py | 60 ++-- plotly/graph_objects/layout/ternary/_caxis.py | 60 ++-- .../graph_objects/layout/ternary/_domain.py | 12 +- .../layout/ternary/aaxis/_tickfont.py | 23 +- .../layout/ternary/aaxis/title/_font.py | 23 +- .../layout/ternary/baxis/_tickfont.py | 23 +- .../layout/ternary/baxis/title/_font.py | 23 +- .../layout/ternary/caxis/_tickfont.py | 23 +- .../layout/ternary/caxis/title/_font.py | 23 +- plotly/graph_objects/layout/title/_font.py | 23 +- plotly/graph_objects/layout/title/_pad.py | 8 +- .../layout/title/subtitle/_font.py | 23 +- .../layout/updatemenu/_button.py | 6 +- .../graph_objects/layout/updatemenu/_font.py | 23 +- .../graph_objects/layout/updatemenu/_pad.py | 8 +- plotly/graph_objects/layout/xaxis/_minor.py | 21 +- .../graph_objects/layout/xaxis/_rangebreak.py | 13 +- .../layout/xaxis/_rangeselector.py | 21 +- .../layout/xaxis/_rangeslider.py | 3 +- .../graph_objects/layout/xaxis/_tickfont.py | 23 +- plotly/graph_objects/layout/xaxis/_title.py | 3 +- .../layout/xaxis/rangeselector/_button.py | 16 +- .../layout/xaxis/rangeselector/_font.py | 23 +- .../layout/xaxis/rangeslider/_yaxis.py | 6 +- .../graph_objects/layout/xaxis/title/_font.py | 23 +- plotly/graph_objects/layout/yaxis/_minor.py | 21 +- .../graph_objects/layout/yaxis/_rangebreak.py | 13 +- .../graph_objects/layout/yaxis/_tickfont.py | 23 +- plotly/graph_objects/layout/yaxis/_title.py | 3 +- .../graph_objects/layout/yaxis/title/_font.py | 23 +- plotly/graph_objects/mesh3d/_colorbar.py | 125 ++++++--- plotly/graph_objects/mesh3d/_contour.py | 3 +- plotly/graph_objects/mesh3d/_hoverlabel.py | 9 +- plotly/graph_objects/mesh3d/_lighting.py | 21 +- plotly/graph_objects/mesh3d/_lightposition.py | 9 +- plotly/graph_objects/mesh3d/_stream.py | 3 +- .../mesh3d/colorbar/_tickfont.py | 23 +- .../graph_objects/mesh3d/colorbar/_title.py | 6 +- .../mesh3d/colorbar/title/_font.py | 23 +- .../graph_objects/mesh3d/hoverlabel/_font.py | 35 ++- .../mesh3d/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/ohlc/_hoverlabel.py | 9 +- plotly/graph_objects/ohlc/_line.py | 3 +- plotly/graph_objects/ohlc/_stream.py | 3 +- plotly/graph_objects/ohlc/decreasing/_line.py | 3 +- plotly/graph_objects/ohlc/hoverlabel/_font.py | 35 ++- plotly/graph_objects/ohlc/increasing/_line.py | 3 +- .../ohlc/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/parcats/_dimension.py | 8 +- plotly/graph_objects/parcats/_domain.py | 12 +- plotly/graph_objects/parcats/_labelfont.py | 23 +- plotly/graph_objects/parcats/_line.py | 12 +- plotly/graph_objects/parcats/_stream.py | 3 +- plotly/graph_objects/parcats/_tickfont.py | 23 +- .../parcats/legendgrouptitle/_font.py | 23 +- .../graph_objects/parcats/line/_colorbar.py | 125 ++++++--- .../parcats/line/colorbar/_tickfont.py | 23 +- .../parcats/line/colorbar/_title.py | 6 +- .../parcats/line/colorbar/title/_font.py | 23 +- plotly/graph_objects/parcoords/_dimension.py | 4 +- plotly/graph_objects/parcoords/_domain.py | 12 +- plotly/graph_objects/parcoords/_labelfont.py | 23 +- plotly/graph_objects/parcoords/_line.py | 6 +- plotly/graph_objects/parcoords/_rangefont.py | 23 +- plotly/graph_objects/parcoords/_stream.py | 3 +- plotly/graph_objects/parcoords/_tickfont.py | 23 +- .../parcoords/legendgrouptitle/_font.py | 23 +- .../graph_objects/parcoords/line/_colorbar.py | 125 ++++++--- .../parcoords/line/colorbar/_tickfont.py | 23 +- .../parcoords/line/colorbar/_title.py | 6 +- .../parcoords/line/colorbar/title/_font.py | 23 +- .../parcoords/unselected/_line.py | 3 +- plotly/graph_objects/pie/_domain.py | 12 +- plotly/graph_objects/pie/_hoverlabel.py | 9 +- plotly/graph_objects/pie/_insidetextfont.py | 35 ++- plotly/graph_objects/pie/_outsidetextfont.py | 35 ++- plotly/graph_objects/pie/_stream.py | 3 +- plotly/graph_objects/pie/_textfont.py | 35 ++- plotly/graph_objects/pie/_title.py | 8 +- plotly/graph_objects/pie/hoverlabel/_font.py | 35 ++- .../pie/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/pie/marker/_line.py | 6 +- plotly/graph_objects/pie/marker/_pattern.py | 30 +- plotly/graph_objects/pie/title/_font.py | 35 ++- plotly/graph_objects/sankey/_domain.py | 12 +- plotly/graph_objects/sankey/_hoverlabel.py | 9 +- plotly/graph_objects/sankey/_link.py | 9 +- plotly/graph_objects/sankey/_node.py | 20 +- plotly/graph_objects/sankey/_stream.py | 3 +- plotly/graph_objects/sankey/_textfont.py | 23 +- .../graph_objects/sankey/hoverlabel/_font.py | 35 ++- .../sankey/legendgrouptitle/_font.py | 23 +- .../graph_objects/sankey/link/_colorscale.py | 4 +- .../graph_objects/sankey/link/_hoverlabel.py | 9 +- plotly/graph_objects/sankey/link/_line.py | 6 +- .../sankey/link/hoverlabel/_font.py | 35 ++- .../graph_objects/sankey/node/_hoverlabel.py | 9 +- plotly/graph_objects/sankey/node/_line.py | 6 +- .../sankey/node/hoverlabel/_font.py | 35 ++- plotly/graph_objects/scatter/_error_x.py | 18 +- plotly/graph_objects/scatter/_error_y.py | 18 +- plotly/graph_objects/scatter/_fillgradient.py | 10 +- plotly/graph_objects/scatter/_fillpattern.py | 30 +- plotly/graph_objects/scatter/_hoverlabel.py | 9 +- plotly/graph_objects/scatter/_line.py | 18 +- plotly/graph_objects/scatter/_marker.py | 222 +++++++-------- plotly/graph_objects/scatter/_stream.py | 3 +- plotly/graph_objects/scatter/_textfont.py | 35 ++- .../graph_objects/scatter/hoverlabel/_font.py | 35 ++- .../scatter/legendgrouptitle/_font.py | 23 +- .../graph_objects/scatter/marker/_colorbar.py | 125 ++++++--- .../graph_objects/scatter/marker/_gradient.py | 9 +- plotly/graph_objects/scatter/marker/_line.py | 12 +- .../scatter/marker/colorbar/_tickfont.py | 23 +- .../scatter/marker/colorbar/_title.py | 6 +- .../scatter/marker/colorbar/title/_font.py | 23 +- .../graph_objects/scatter/selected/_marker.py | 6 +- .../scatter/unselected/_marker.py | 6 +- plotly/graph_objects/scatter3d/_error_x.py | 18 +- plotly/graph_objects/scatter3d/_error_y.py | 18 +- plotly/graph_objects/scatter3d/_error_z.py | 18 +- plotly/graph_objects/scatter3d/_hoverlabel.py | 9 +- plotly/graph_objects/scatter3d/_line.py | 16 +- plotly/graph_objects/scatter3d/_marker.py | 37 ++- plotly/graph_objects/scatter3d/_stream.py | 3 +- plotly/graph_objects/scatter3d/_textfont.py | 24 +- .../scatter3d/hoverlabel/_font.py | 35 ++- .../scatter3d/legendgrouptitle/_font.py | 23 +- .../graph_objects/scatter3d/line/_colorbar.py | 125 ++++++--- .../scatter3d/line/colorbar/_tickfont.py | 23 +- .../scatter3d/line/colorbar/_title.py | 6 +- .../scatter3d/line/colorbar/title/_font.py | 23 +- .../scatter3d/marker/_colorbar.py | 125 ++++++--- .../graph_objects/scatter3d/marker/_line.py | 9 +- .../scatter3d/marker/colorbar/_tickfont.py | 23 +- .../scatter3d/marker/colorbar/_title.py | 6 +- .../scatter3d/marker/colorbar/title/_font.py | 23 +- .../graph_objects/scatter3d/projection/_x.py | 6 +- .../graph_objects/scatter3d/projection/_y.py | 6 +- .../graph_objects/scatter3d/projection/_z.py | 6 +- .../scattercarpet/_hoverlabel.py | 9 +- plotly/graph_objects/scattercarpet/_line.py | 18 +- plotly/graph_objects/scattercarpet/_marker.py | 222 +++++++-------- plotly/graph_objects/scattercarpet/_stream.py | 3 +- .../graph_objects/scattercarpet/_textfont.py | 35 ++- .../scattercarpet/hoverlabel/_font.py | 35 ++- .../scattercarpet/legendgrouptitle/_font.py | 23 +- .../scattercarpet/marker/_colorbar.py | 125 ++++++--- .../scattercarpet/marker/_gradient.py | 9 +- .../scattercarpet/marker/_line.py | 12 +- .../marker/colorbar/_tickfont.py | 23 +- .../scattercarpet/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 23 +- .../scattercarpet/selected/_marker.py | 6 +- .../scattercarpet/unselected/_marker.py | 6 +- .../graph_objects/scattergeo/_hoverlabel.py | 9 +- plotly/graph_objects/scattergeo/_line.py | 3 +- plotly/graph_objects/scattergeo/_marker.py | 219 ++++++++------- plotly/graph_objects/scattergeo/_stream.py | 3 +- plotly/graph_objects/scattergeo/_textfont.py | 35 ++- .../scattergeo/hoverlabel/_font.py | 35 ++- .../scattergeo/legendgrouptitle/_font.py | 23 +- .../scattergeo/marker/_colorbar.py | 125 ++++++--- .../scattergeo/marker/_gradient.py | 9 +- .../graph_objects/scattergeo/marker/_line.py | 12 +- .../scattergeo/marker/colorbar/_tickfont.py | 23 +- .../scattergeo/marker/colorbar/_title.py | 6 +- .../scattergeo/marker/colorbar/title/_font.py | 23 +- .../scattergeo/selected/_marker.py | 6 +- .../scattergeo/unselected/_marker.py | 6 +- plotly/graph_objects/scattergl/_error_x.py | 18 +- plotly/graph_objects/scattergl/_error_y.py | 18 +- plotly/graph_objects/scattergl/_hoverlabel.py | 9 +- plotly/graph_objects/scattergl/_line.py | 16 +- plotly/graph_objects/scattergl/_marker.py | 207 +++++++------- plotly/graph_objects/scattergl/_stream.py | 3 +- plotly/graph_objects/scattergl/_textfont.py | 33 ++- .../scattergl/hoverlabel/_font.py | 35 ++- .../scattergl/legendgrouptitle/_font.py | 23 +- .../scattergl/marker/_colorbar.py | 125 ++++++--- .../graph_objects/scattergl/marker/_line.py | 12 +- .../scattergl/marker/colorbar/_tickfont.py | 23 +- .../scattergl/marker/colorbar/_title.py | 6 +- .../scattergl/marker/colorbar/title/_font.py | 23 +- .../scattergl/selected/_marker.py | 6 +- .../scattergl/unselected/_marker.py | 6 +- plotly/graph_objects/scattermap/_cluster.py | 21 +- .../graph_objects/scattermap/_hoverlabel.py | 9 +- plotly/graph_objects/scattermap/_line.py | 3 +- plotly/graph_objects/scattermap/_marker.py | 34 ++- plotly/graph_objects/scattermap/_stream.py | 3 +- plotly/graph_objects/scattermap/_textfont.py | 9 +- .../scattermap/hoverlabel/_font.py | 35 ++- .../scattermap/legendgrouptitle/_font.py | 23 +- .../scattermap/marker/_colorbar.py | 125 ++++++--- .../scattermap/marker/colorbar/_tickfont.py | 23 +- .../scattermap/marker/colorbar/_title.py | 6 +- .../scattermap/marker/colorbar/title/_font.py | 23 +- .../scattermap/selected/_marker.py | 6 +- .../scattermap/unselected/_marker.py | 6 +- .../graph_objects/scattermapbox/_cluster.py | 21 +- .../scattermapbox/_hoverlabel.py | 9 +- plotly/graph_objects/scattermapbox/_line.py | 3 +- plotly/graph_objects/scattermapbox/_marker.py | 34 ++- plotly/graph_objects/scattermapbox/_stream.py | 3 +- .../graph_objects/scattermapbox/_textfont.py | 9 +- .../scattermapbox/hoverlabel/_font.py | 35 ++- .../scattermapbox/legendgrouptitle/_font.py | 23 +- .../scattermapbox/marker/_colorbar.py | 125 ++++++--- .../marker/colorbar/_tickfont.py | 23 +- .../scattermapbox/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 23 +- .../scattermapbox/selected/_marker.py | 6 +- .../scattermapbox/unselected/_marker.py | 6 +- .../graph_objects/scatterpolar/_hoverlabel.py | 9 +- plotly/graph_objects/scatterpolar/_line.py | 18 +- plotly/graph_objects/scatterpolar/_marker.py | 222 +++++++-------- plotly/graph_objects/scatterpolar/_stream.py | 3 +- .../graph_objects/scatterpolar/_textfont.py | 35 ++- .../scatterpolar/hoverlabel/_font.py | 35 ++- .../scatterpolar/legendgrouptitle/_font.py | 23 +- .../scatterpolar/marker/_colorbar.py | 125 ++++++--- .../scatterpolar/marker/_gradient.py | 9 +- .../scatterpolar/marker/_line.py | 12 +- .../scatterpolar/marker/colorbar/_tickfont.py | 23 +- .../scatterpolar/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 23 +- .../scatterpolar/selected/_marker.py | 6 +- .../scatterpolar/unselected/_marker.py | 6 +- .../scatterpolargl/_hoverlabel.py | 9 +- plotly/graph_objects/scatterpolargl/_line.py | 10 +- .../graph_objects/scatterpolargl/_marker.py | 207 +++++++------- .../graph_objects/scatterpolargl/_stream.py | 3 +- .../graph_objects/scatterpolargl/_textfont.py | 33 ++- .../scatterpolargl/hoverlabel/_font.py | 35 ++- .../scatterpolargl/legendgrouptitle/_font.py | 23 +- .../scatterpolargl/marker/_colorbar.py | 125 ++++++--- .../scatterpolargl/marker/_line.py | 12 +- .../marker/colorbar/_tickfont.py | 23 +- .../scatterpolargl/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 23 +- .../scatterpolargl/selected/_marker.py | 6 +- .../scatterpolargl/unselected/_marker.py | 6 +- .../graph_objects/scattersmith/_hoverlabel.py | 9 +- plotly/graph_objects/scattersmith/_line.py | 18 +- plotly/graph_objects/scattersmith/_marker.py | 222 +++++++-------- plotly/graph_objects/scattersmith/_stream.py | 3 +- .../graph_objects/scattersmith/_textfont.py | 35 ++- .../scattersmith/hoverlabel/_font.py | 35 ++- .../scattersmith/legendgrouptitle/_font.py | 23 +- .../scattersmith/marker/_colorbar.py | 125 ++++++--- .../scattersmith/marker/_gradient.py | 9 +- .../scattersmith/marker/_line.py | 12 +- .../scattersmith/marker/colorbar/_tickfont.py | 23 +- .../scattersmith/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 23 +- .../scattersmith/selected/_marker.py | 6 +- .../scattersmith/unselected/_marker.py | 6 +- .../scatterternary/_hoverlabel.py | 9 +- plotly/graph_objects/scatterternary/_line.py | 18 +- .../graph_objects/scatterternary/_marker.py | 222 +++++++-------- .../graph_objects/scatterternary/_stream.py | 3 +- .../graph_objects/scatterternary/_textfont.py | 35 ++- .../scatterternary/hoverlabel/_font.py | 35 ++- .../scatterternary/legendgrouptitle/_font.py | 23 +- .../scatterternary/marker/_colorbar.py | 125 ++++++--- .../scatterternary/marker/_gradient.py | 9 +- .../scatterternary/marker/_line.py | 12 +- .../marker/colorbar/_tickfont.py | 23 +- .../scatterternary/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 23 +- .../scatterternary/selected/_marker.py | 6 +- .../scatterternary/unselected/_marker.py | 6 +- plotly/graph_objects/splom/_hoverlabel.py | 9 +- plotly/graph_objects/splom/_marker.py | 207 +++++++------- plotly/graph_objects/splom/_stream.py | 3 +- plotly/graph_objects/splom/dimension/_axis.py | 6 +- .../graph_objects/splom/hoverlabel/_font.py | 35 ++- .../splom/legendgrouptitle/_font.py | 23 +- .../graph_objects/splom/marker/_colorbar.py | 125 ++++++--- plotly/graph_objects/splom/marker/_line.py | 12 +- .../splom/marker/colorbar/_tickfont.py | 23 +- .../splom/marker/colorbar/_title.py | 6 +- .../splom/marker/colorbar/title/_font.py | 23 +- .../graph_objects/splom/selected/_marker.py | 6 +- .../graph_objects/splom/unselected/_marker.py | 6 +- plotly/graph_objects/streamtube/_colorbar.py | 125 ++++++--- .../graph_objects/streamtube/_hoverlabel.py | 9 +- plotly/graph_objects/streamtube/_lighting.py | 21 +- .../streamtube/_lightposition.py | 9 +- plotly/graph_objects/streamtube/_stream.py | 3 +- .../streamtube/colorbar/_tickfont.py | 23 +- .../streamtube/colorbar/_title.py | 6 +- .../streamtube/colorbar/title/_font.py | 23 +- .../streamtube/hoverlabel/_font.py | 35 ++- .../streamtube/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/sunburst/_domain.py | 12 +- plotly/graph_objects/sunburst/_hoverlabel.py | 9 +- .../graph_objects/sunburst/_insidetextfont.py | 35 ++- plotly/graph_objects/sunburst/_leaf.py | 3 +- plotly/graph_objects/sunburst/_marker.py | 6 +- .../sunburst/_outsidetextfont.py | 35 ++- plotly/graph_objects/sunburst/_stream.py | 3 +- plotly/graph_objects/sunburst/_textfont.py | 35 ++- .../sunburst/hoverlabel/_font.py | 35 ++- .../sunburst/legendgrouptitle/_font.py | 23 +- .../sunburst/marker/_colorbar.py | 125 ++++++--- plotly/graph_objects/sunburst/marker/_line.py | 6 +- .../graph_objects/sunburst/marker/_pattern.py | 30 +- .../sunburst/marker/colorbar/_tickfont.py | 23 +- .../sunburst/marker/colorbar/_title.py | 6 +- .../sunburst/marker/colorbar/title/_font.py | 23 +- plotly/graph_objects/surface/_colorbar.py | 125 ++++++--- plotly/graph_objects/surface/_hoverlabel.py | 9 +- plotly/graph_objects/surface/_lighting.py | 15 +- .../graph_objects/surface/_lightposition.py | 9 +- plotly/graph_objects/surface/_stream.py | 3 +- .../surface/colorbar/_tickfont.py | 23 +- .../graph_objects/surface/colorbar/_title.py | 6 +- .../surface/colorbar/title/_font.py | 23 +- plotly/graph_objects/surface/contours/_x.py | 13 +- plotly/graph_objects/surface/contours/_y.py | 13 +- plotly/graph_objects/surface/contours/_z.py | 13 +- .../graph_objects/surface/hoverlabel/_font.py | 35 ++- .../surface/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/table/_cells.py | 11 +- plotly/graph_objects/table/_domain.py | 12 +- plotly/graph_objects/table/_header.py | 11 +- plotly/graph_objects/table/_hoverlabel.py | 9 +- plotly/graph_objects/table/_stream.py | 3 +- plotly/graph_objects/table/cells/_font.py | 35 ++- plotly/graph_objects/table/cells/_line.py | 5 +- plotly/graph_objects/table/header/_font.py | 35 ++- plotly/graph_objects/table/header/_line.py | 5 +- .../graph_objects/table/hoverlabel/_font.py | 35 ++- .../table/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/treemap/_domain.py | 12 +- plotly/graph_objects/treemap/_hoverlabel.py | 9 +- .../graph_objects/treemap/_insidetextfont.py | 35 ++- plotly/graph_objects/treemap/_marker.py | 15 +- .../graph_objects/treemap/_outsidetextfont.py | 35 ++- plotly/graph_objects/treemap/_pathbar.py | 15 +- plotly/graph_objects/treemap/_stream.py | 3 +- plotly/graph_objects/treemap/_textfont.py | 35 ++- plotly/graph_objects/treemap/_tiling.py | 14 +- .../graph_objects/treemap/hoverlabel/_font.py | 35 ++- .../treemap/legendgrouptitle/_font.py | 23 +- .../graph_objects/treemap/marker/_colorbar.py | 125 ++++++--- plotly/graph_objects/treemap/marker/_line.py | 6 +- plotly/graph_objects/treemap/marker/_pad.py | 12 +- .../graph_objects/treemap/marker/_pattern.py | 30 +- .../treemap/marker/colorbar/_tickfont.py | 23 +- .../treemap/marker/colorbar/_title.py | 6 +- .../treemap/marker/colorbar/title/_font.py | 23 +- .../treemap/pathbar/_textfont.py | 35 ++- plotly/graph_objects/violin/_box.py | 3 +- plotly/graph_objects/violin/_hoverlabel.py | 9 +- plotly/graph_objects/violin/_line.py | 3 +- plotly/graph_objects/violin/_marker.py | 181 ++++++------ plotly/graph_objects/violin/_meanline.py | 3 +- plotly/graph_objects/violin/_stream.py | 3 +- plotly/graph_objects/violin/box/_line.py | 3 +- .../graph_objects/violin/hoverlabel/_font.py | 35 ++- .../violin/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/violin/marker/_line.py | 6 +- .../graph_objects/violin/selected/_marker.py | 6 +- .../violin/unselected/_marker.py | 6 +- plotly/graph_objects/volume/_colorbar.py | 125 ++++++--- plotly/graph_objects/volume/_contour.py | 3 +- plotly/graph_objects/volume/_hoverlabel.py | 9 +- plotly/graph_objects/volume/_lighting.py | 21 +- plotly/graph_objects/volume/_lightposition.py | 9 +- plotly/graph_objects/volume/_spaceframe.py | 3 +- plotly/graph_objects/volume/_stream.py | 3 +- plotly/graph_objects/volume/_surface.py | 3 +- plotly/graph_objects/volume/caps/_x.py | 3 +- plotly/graph_objects/volume/caps/_y.py | 3 +- plotly/graph_objects/volume/caps/_z.py | 3 +- .../volume/colorbar/_tickfont.py | 23 +- .../graph_objects/volume/colorbar/_title.py | 6 +- .../volume/colorbar/title/_font.py | 23 +- .../graph_objects/volume/hoverlabel/_font.py | 35 ++- .../volume/legendgrouptitle/_font.py | 23 +- plotly/graph_objects/volume/slices/_x.py | 3 +- plotly/graph_objects/volume/slices/_y.py | 3 +- plotly/graph_objects/volume/slices/_z.py | 3 +- plotly/graph_objects/waterfall/_connector.py | 6 +- plotly/graph_objects/waterfall/_hoverlabel.py | 9 +- .../waterfall/_insidetextfont.py | 35 ++- .../waterfall/_outsidetextfont.py | 35 ++- plotly/graph_objects/waterfall/_stream.py | 3 +- plotly/graph_objects/waterfall/_textfont.py | 35 ++- .../waterfall/connector/_line.py | 3 +- .../waterfall/decreasing/marker/_line.py | 3 +- .../waterfall/hoverlabel/_font.py | 35 ++- .../waterfall/increasing/marker/_line.py | 3 +- .../waterfall/legendgrouptitle/_font.py | 23 +- .../waterfall/totals/marker/_line.py | 3 +- 832 files changed, 14495 insertions(+), 8318 deletions(-) diff --git a/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py index 496e23838d..53f2a29271 100644 --- a/_plotly_utils/basevalidators.py +++ b/_plotly_utils/basevalidators.py @@ -537,8 +537,8 @@ def description(self): enum_vals_str = "\n".join( textwrap.wrap( repr(enum_vals), - initial_indent=" " * 12, - subsequent_indent=" " * 12, + initial_indent=" " * 8, + subsequent_indent=" " * 8, break_on_hyphens=False, ) ) @@ -554,8 +554,8 @@ def description(self): enum_regexs_str = "\n".join( textwrap.wrap( repr(enum_regexs), - initial_indent=" " * 12, - subsequent_indent=" " * 12, + initial_indent=" " * 8, + subsequent_indent=" " * 8, break_on_hyphens=False, break_long_words=False, ) @@ -572,7 +572,7 @@ def description(self): desc = ( desc + """\n - - A tuple, list, or one-dimensional numpy array of the above""" + - A tuple, list, or one-dimensional numpy array of the above""" ) return desc @@ -727,14 +727,14 @@ def description(self): desc = ( desc + """\n - - An int or float""" + - An int or float""" ) else: desc = ( desc - + """ - - An int or float in the interval [{min_val}, {max_val}]""".format( + + """\n + - An int or float in the interval [{min_val}, {max_val}]""".format( min_val=self.min_val, max_val=self.max_val ) ) @@ -742,8 +742,8 @@ def description(self): if self.array_ok: desc = ( desc - + """ - - A tuple, list, or one-dimensional numpy array of the above""" + + """\n + - A tuple, list, or one-dimensional numpy array of the above""" ) return desc @@ -1992,10 +1992,12 @@ def description(self): for i, item_validator in enumerate(self.item_validators): el_desc = item_validator.description().strip() + lines = el_desc.splitlines() + el_desc_indented = '\n'.join([lines[0]] + [' ' + line for line in lines[1:]]) desc = ( desc + """\n - ({i}) {el_desc}""".format(i=i, el_desc=el_desc) + ({i}) {el_desc_indented}""".format(i=i, el_desc_indented=el_desc_indented) ) # ### Case 2 ### @@ -2030,10 +2032,15 @@ def description(self): el_desc = item_validator.description().strip() - desc += """ - * a list of elements where: - {el_desc} -""".format(el_desc=el_desc) + # Adds an indentation of 4 spaces, especially when el_desc + # is a fully auto-generated docstring with nested lists. + lines = el_desc.splitlines() + el_desc_indented = '\n'.join([lines[0]] + [' ' + line for line in lines[1:]]) + + desc += """\n + * a list of elements where:\n + {el_desc_indented} +""".format(el_desc_indented=el_desc_indented) if self.dimensions in ("1-2", 2): item_validator.plotly_name = "{name}\\\\[i\\\\]\\\\[j\\\\]".format( @@ -2041,10 +2048,12 @@ def description(self): ) el_desc = item_validator.description().strip() + lines = el_desc.splitlines() + el_desc_indented = '\n'.join([lines[0]] + [' ' + line for line in lines[1:]]) desc += """\n * a 2D list where:\n - {el_desc} -""".format(el_desc=el_desc) + {el_desc_indented} +""".format(el_desc_indented=el_desc_indented) item_validator.plotly_name = orig_name diff --git a/plotly/graph_objects/_bar.py b/plotly/graph_objects/_bar.py index 181cbec44e..1d059e51b7 100644 --- a/plotly/graph_objects/_bar.py +++ b/plotly/graph_objects/_bar.py @@ -172,8 +172,10 @@ def constraintext(self): larger than the bar itself. The 'constraintext' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['inside', 'outside', 'both', 'none'] + + - One of the following enumeration values: + + ['inside', 'outside', 'both', 'none'] Returns ------- @@ -232,7 +234,7 @@ def dx(self): The 'dx' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -251,7 +253,7 @@ def dy(self): The 'dy' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -514,8 +516,10 @@ def insidetextanchor(self): `textposition` "inside" mode. The 'insidetextanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['end', 'middle', 'start'] + + - One of the following enumeration values: + + ['end', 'middle', 'start'] Returns ------- @@ -625,7 +629,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -644,7 +648,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -748,8 +753,9 @@ def offset(self): The 'offset' property is a number and may be specified as: - - An int or float - - A tuple, list, or one-dimensional numpy array of the above + - An int or float + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -806,7 +812,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -825,8 +832,10 @@ def orientation(self): the each bar spans along the vertical (horizontal). The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['v', 'h'] + + - One of the following enumeration values: + + ['v', 'h'] Returns ------- @@ -1020,9 +1029,12 @@ def textposition(self): text appears. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['inside', 'outside', 'auto', 'none'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['inside', 'outside', 'auto', 'none'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1201,8 +1213,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1220,8 +1234,10 @@ def width(self): Sets the bar width (in position axis units). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1317,11 +1333,13 @@ def xcalendar(self): Sets the calendar system to use with `x` date data. The 'xcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1410,8 +1428,10 @@ def xperiodalignment(self): alignment of data points on the x axis. The 'xperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- @@ -1507,11 +1527,13 @@ def ycalendar(self): Sets the calendar system to use with `y` date data. The 'ycalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1600,8 +1622,10 @@ def yperiodalignment(self): alignment of data points on the y axis. The 'yperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- diff --git a/plotly/graph_objects/_barpolar.py b/plotly/graph_objects/_barpolar.py index a5b1aacf7b..471af73bb9 100644 --- a/plotly/graph_objects/_barpolar.py +++ b/plotly/graph_objects/_barpolar.py @@ -143,7 +143,7 @@ def dr(self): The 'dr' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -164,7 +164,7 @@ def dtheta(self): The 'dtheta' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -453,7 +453,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -472,7 +472,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -575,8 +576,9 @@ def offset(self): The 'offset' property is a number and may be specified as: - - An int or float - - A tuple, list, or one-dimensional numpy array of the above + - An int or float + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -612,7 +614,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -884,8 +887,10 @@ def thetaunit(self): on "linear" angular axes. The 'thetaunit' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['radians', 'degrees', 'gradians'] + + - One of the following enumeration values: + + ['radians', 'degrees', 'gradians'] Returns ------- @@ -975,8 +980,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -994,8 +1001,10 @@ def width(self): Sets the bar angular width (in "thetaunit" units). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/_box.py b/plotly/graph_objects/_box.py index 8aabbac18a..00000fb67c 100644 --- a/plotly/graph_objects/_box.py +++ b/plotly/graph_objects/_box.py @@ -128,8 +128,10 @@ def boxmean(self): Defaults to "sd" when `sd` is set Otherwise defaults to False. The 'boxmean' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, 'sd', False] + + - One of the following enumeration values: + + [True, 'sd', False] Returns ------- @@ -155,8 +157,10 @@ def boxpoints(self): defaults to "outliers". The 'boxpoints' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'outliers', 'suspectedoutliers', False] + + - One of the following enumeration values: + + ['all', 'outliers', 'suspectedoutliers', False] Returns ------- @@ -216,7 +220,7 @@ def dx(self): The 'dx' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -236,7 +240,7 @@ def dy(self): The 'dy' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -502,7 +506,8 @@ def jitter(self): the width of the box(es). The 'jitter' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -591,7 +596,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -610,7 +615,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -919,7 +925,8 @@ def notchwidth(self): example, with 0, the notches are as wide as the box(es). The 'notchwidth' property is a number and may be specified as: - - An int or float in the interval [0, 0.5] + + - An int or float in the interval [0, 0.5] Returns ------- @@ -958,7 +965,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -977,8 +985,10 @@ def orientation(self): distribution is visualized along the vertical (horizontal). The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['v', 'h'] + + - One of the following enumeration values: + + ['v', 'h'] Returns ------- @@ -1000,7 +1010,8 @@ def pointpos(self): horizontal boxes The 'pointpos' property is a number and may be specified as: - - An int or float in the interval [-2, 2] + + - An int or float in the interval [-2, 2] Returns ------- @@ -1103,8 +1114,10 @@ def quartilemethod(self): upper half. The 'quartilemethod' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['linear', 'exclusive', 'inclusive'] + + - One of the following enumeration values: + + ['linear', 'exclusive', 'inclusive'] Returns ------- @@ -1146,7 +1159,8 @@ def sdmultiple(self): 5-stddev The 'sdmultiple' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1265,8 +1279,10 @@ def sizemode(self): 3-stddev etc The 'sizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['quartiles', 'sd'] + + - One of the following enumeration values: + + ['quartiles', 'sd'] Returns ------- @@ -1458,8 +1474,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1478,7 +1496,8 @@ def whiskerwidth(self): example, with 1, the whiskers are as wide as the box(es). The 'whiskerwidth' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -1498,7 +1517,8 @@ def width(self): positions of other box traces in the same subplot. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1577,11 +1597,13 @@ def xcalendar(self): Sets the calendar system to use with `x` date data. The 'xcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1670,8 +1692,10 @@ def xperiodalignment(self): alignment of data points on the x axis. The 'xperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- @@ -1768,11 +1792,13 @@ def ycalendar(self): Sets the calendar system to use with `y` date data. The 'ycalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1861,8 +1887,10 @@ def yperiodalignment(self): alignment of data points on the y axis. The 'yperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- diff --git a/plotly/graph_objects/_candlestick.py b/plotly/graph_objects/_candlestick.py index e5f47c61d6..c8e6f9c1cf 100644 --- a/plotly/graph_objects/_candlestick.py +++ b/plotly/graph_objects/_candlestick.py @@ -427,7 +427,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -446,7 +446,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -583,7 +584,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -791,8 +793,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -811,7 +815,8 @@ def whiskerwidth(self): example, with 1, the whiskers are as wide as the box(es). The 'whiskerwidth' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -871,11 +876,13 @@ def xcalendar(self): Sets the calendar system to use with `x` date data. The 'xcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -964,8 +971,10 @@ def xperiodalignment(self): alignment of data points on the x axis. The 'xperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- diff --git a/plotly/graph_objects/_carpet.py b/plotly/graph_objects/_carpet.py index 5c1ef13a5e..c83917e298 100644 --- a/plotly/graph_objects/_carpet.py +++ b/plotly/graph_objects/_carpet.py @@ -76,7 +76,7 @@ def a0(self): The 'a0' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -152,7 +152,7 @@ def b0(self): The 'b0' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -230,7 +230,7 @@ def cheaterslope(self): The 'cheaterslope' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -314,7 +314,7 @@ def da(self): The 'da' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -333,7 +333,7 @@ def db(self): The 'db' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -460,7 +460,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -479,7 +479,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -561,7 +562,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -651,8 +653,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_choropleth.py b/plotly/graph_objects/_choropleth.py index 85ddda87ff..ff803fe60f 100644 --- a/plotly/graph_objects/_choropleth.py +++ b/plotly/graph_objects/_choropleth.py @@ -561,7 +561,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -580,7 +580,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -602,8 +603,10 @@ def locationmode(self): GeoJSON linked to the `geojson` attribute. The 'locationmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['ISO-3', 'USA-states', 'country names', 'geojson-id'] + + - One of the following enumeration values: + + ['ISO-3', 'USA-states', 'country names', 'geojson-id'] Returns ------- @@ -970,8 +973,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1030,7 +1035,7 @@ def zmax(self): The 'zmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1051,7 +1056,7 @@ def zmid(self): The 'zmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1071,7 +1076,7 @@ def zmin(self): The 'zmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/_choroplethmap.py b/plotly/graph_objects/_choroplethmap.py index f081206b15..e03908f0ff 100644 --- a/plotly/graph_objects/_choroplethmap.py +++ b/plotly/graph_objects/_choroplethmap.py @@ -559,7 +559,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -578,7 +578,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -968,8 +969,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1028,7 +1031,7 @@ def zmax(self): The 'zmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1049,7 +1052,7 @@ def zmid(self): The 'zmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1069,7 +1072,7 @@ def zmin(self): The 'zmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/_choroplethmapbox.py b/plotly/graph_objects/_choroplethmapbox.py index f6106784c2..5d228da229 100644 --- a/plotly/graph_objects/_choroplethmapbox.py +++ b/plotly/graph_objects/_choroplethmapbox.py @@ -560,7 +560,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -579,7 +579,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -973,8 +974,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1033,7 +1036,7 @@ def zmax(self): The 'zmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1054,7 +1057,7 @@ def zmid(self): The 'zmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1074,7 +1077,7 @@ def zmin(self): The 'zmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/_cone.py b/plotly/graph_objects/_cone.py index bc8abdf85b..1a968853de 100644 --- a/plotly/graph_objects/_cone.py +++ b/plotly/graph_objects/_cone.py @@ -81,8 +81,10 @@ def anchor(self): corresponds to 1/4 from the tail to tip. The 'anchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['tip', 'tail', 'cm', 'center'] + + - One of the following enumeration values: + + ['tip', 'tail', 'cm', 'center'] Returns ------- @@ -147,7 +149,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -169,7 +171,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -190,7 +192,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -615,7 +617,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -634,7 +636,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -759,7 +762,8 @@ def opacity(self): improved in the near future and is subject to change. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -862,8 +866,10 @@ def sizemode(self): "raw". The 'sizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['scaled', 'absolute', 'raw'] + + - One of the following enumeration values: + + ['scaled', 'absolute', 'raw'] Returns ------- @@ -891,7 +897,8 @@ def sizeref(self): sample's maximum vector norm. The 'sizeref' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1121,8 +1128,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_contour.py b/plotly/graph_objects/_contour.py index a2d3a8842c..8987e48253 100644 --- a/plotly/graph_objects/_contour.py +++ b/plotly/graph_objects/_contour.py @@ -310,7 +310,7 @@ def dx(self): The 'dx' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -329,7 +329,7 @@ def dy(self): The 'dy' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -661,7 +661,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -680,7 +680,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -803,7 +804,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -1060,8 +1062,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1139,11 +1143,13 @@ def xcalendar(self): Sets the calendar system to use with `x` date data. The 'xcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1232,8 +1238,10 @@ def xperiodalignment(self): alignment of data points on the x axis. The 'xperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- @@ -1272,8 +1280,10 @@ def xtype(self): behavior when `x` is not provided). The 'xtype' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['array', 'scaled'] + + - One of the following enumeration values: + + ['array', 'scaled'] Returns ------- @@ -1351,11 +1361,13 @@ def ycalendar(self): Sets the calendar system to use with `y` date data. The 'ycalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1444,8 +1456,10 @@ def yperiodalignment(self): alignment of data points on the y axis. The 'yperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- @@ -1484,8 +1498,10 @@ def ytype(self): behavior when `y` is not provided) The 'ytype' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['array', 'scaled'] + + - One of the following enumeration values: + + ['array', 'scaled'] Returns ------- @@ -1567,7 +1583,7 @@ def zmax(self): The 'zmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1588,7 +1604,7 @@ def zmid(self): The 'zmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1608,7 +1624,7 @@ def zmin(self): The 'zmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/_contourcarpet.py b/plotly/graph_objects/_contourcarpet.py index 5b43089df9..a7cbdc8652 100644 --- a/plotly/graph_objects/_contourcarpet.py +++ b/plotly/graph_objects/_contourcarpet.py @@ -130,8 +130,10 @@ def atype(self): behavior when `x` is not provided). The 'atype' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['array', 'scaled'] + + - One of the following enumeration values: + + ['array', 'scaled'] Returns ------- @@ -251,8 +253,10 @@ def btype(self): behavior when `y` is not provided) The 'btype' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['array', 'scaled'] + + - One of the following enumeration values: + + ['array', 'scaled'] Returns ------- @@ -445,7 +449,7 @@ def da(self): The 'da' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -464,7 +468,7 @@ def db(self): The 'db' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -654,7 +658,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -673,7 +677,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -796,7 +801,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -998,8 +1004,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1104,7 +1112,7 @@ def zmax(self): The 'zmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1125,7 +1133,7 @@ def zmid(self): The 'zmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1145,7 +1153,7 @@ def zmin(self): The 'zmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/_densitymap.py b/plotly/graph_objects/_densitymap.py index a5dc66f2b2..5b86eb85a2 100644 --- a/plotly/graph_objects/_densitymap.py +++ b/plotly/graph_objects/_densitymap.py @@ -556,7 +556,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -575,7 +575,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -693,7 +694,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -713,8 +715,10 @@ def radius(self): smoother, but less detailed. The 'radius' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -946,8 +950,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1007,7 +1013,7 @@ def zmax(self): The 'zmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1028,7 +1034,7 @@ def zmid(self): The 'zmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1048,7 +1054,7 @@ def zmin(self): The 'zmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/_densitymapbox.py b/plotly/graph_objects/_densitymapbox.py index fd23df3d53..30b8bd0482 100644 --- a/plotly/graph_objects/_densitymapbox.py +++ b/plotly/graph_objects/_densitymapbox.py @@ -557,7 +557,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -576,7 +576,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -694,7 +695,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -714,8 +716,10 @@ def radius(self): smoother, but less detailed. The 'radius' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -951,8 +955,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1012,7 +1018,7 @@ def zmax(self): The 'zmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1033,7 +1039,7 @@ def zmid(self): The 'zmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1053,7 +1059,7 @@ def zmin(self): The 'zmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/_funnel.py b/plotly/graph_objects/_funnel.py index c9667eb669..525de1994a 100644 --- a/plotly/graph_objects/_funnel.py +++ b/plotly/graph_objects/_funnel.py @@ -146,8 +146,10 @@ def constraintext(self): larger than the bar itself. The 'constraintext' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['inside', 'outside', 'both', 'none'] + + - One of the following enumeration values: + + ['inside', 'outside', 'both', 'none'] Returns ------- @@ -206,7 +208,7 @@ def dx(self): The 'dx' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -225,7 +227,7 @@ def dy(self): The 'dy' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -450,8 +452,10 @@ def insidetextanchor(self): `textposition` "inside" mode. The 'insidetextanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['end', 'middle', 'start'] + + - One of the following enumeration values: + + ['end', 'middle', 'start'] Returns ------- @@ -561,7 +565,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -580,7 +584,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -684,7 +689,7 @@ def offset(self): The 'offset' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -723,7 +728,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -746,8 +752,10 @@ def orientation(self): "autorange" on the "y-axis" are set to "reversed". The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['v', 'h'] + + - One of the following enumeration values: + + ['v', 'h'] Returns ------- @@ -945,9 +953,12 @@ def textposition(self): text appears. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['inside', 'outside', 'auto', 'none'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['inside', 'outside', 'auto', 'none'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1108,8 +1119,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1127,7 +1140,8 @@ def width(self): Sets the bar width (in position axis units). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1276,8 +1290,10 @@ def xperiodalignment(self): alignment of data points on the x axis. The 'xperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- @@ -1444,8 +1460,10 @@ def yperiodalignment(self): alignment of data points on the y axis. The 'yperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- diff --git a/plotly/graph_objects/_funnelarea.py b/plotly/graph_objects/_funnelarea.py index f2399fec75..de602e93d9 100644 --- a/plotly/graph_objects/_funnelarea.py +++ b/plotly/graph_objects/_funnelarea.py @@ -64,7 +64,8 @@ def aspectratio(self): Sets the ratio between height and width The 'aspectratio' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -82,7 +83,8 @@ def baseratio(self): Sets the ratio between bottom length and maximum top length. The 'baseratio' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -141,7 +143,7 @@ def dlabel(self): The 'dlabel' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -408,7 +410,7 @@ def label0(self): The 'label0' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -537,7 +539,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -556,7 +558,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -657,7 +660,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -798,9 +802,12 @@ def textposition(self): Specifies the location of the `textinfo`. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['inside', 'none'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['inside', 'none'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1016,8 +1023,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_heatmap.py b/plotly/graph_objects/_heatmap.py index 7cccc84959..62ba7ec585 100644 --- a/plotly/graph_objects/_heatmap.py +++ b/plotly/graph_objects/_heatmap.py @@ -269,7 +269,7 @@ def dx(self): The 'dx' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -288,7 +288,7 @@ def dy(self): The 'dy' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -594,7 +594,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -613,7 +613,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -695,7 +696,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -950,8 +952,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1029,11 +1033,13 @@ def xcalendar(self): Sets the calendar system to use with `x` date data. The 'xcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1051,7 +1057,8 @@ def xgap(self): Sets the horizontal gap (in pixels) between bricks. The 'xgap' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1140,8 +1147,10 @@ def xperiodalignment(self): alignment of data points on the x axis. The 'xperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- @@ -1180,8 +1189,10 @@ def xtype(self): behavior when `x` is not provided). The 'xtype' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['array', 'scaled'] + + - One of the following enumeration values: + + ['array', 'scaled'] Returns ------- @@ -1259,11 +1270,13 @@ def ycalendar(self): Sets the calendar system to use with `y` date data. The 'ycalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1281,7 +1294,8 @@ def ygap(self): Sets the vertical gap (in pixels) between bricks. The 'ygap' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1370,8 +1384,10 @@ def yperiodalignment(self): alignment of data points on the y axis. The 'yperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- @@ -1410,8 +1426,10 @@ def ytype(self): behavior when `y` is not provided) The 'ytype' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['array', 'scaled'] + + - One of the following enumeration values: + + ['array', 'scaled'] Returns ------- @@ -1493,7 +1511,7 @@ def zmax(self): The 'zmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1514,7 +1532,7 @@ def zmid(self): The 'zmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1534,7 +1552,7 @@ def zmin(self): The 'zmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1572,8 +1590,10 @@ def zsmooth(self): Picks a smoothing algorithm use to smooth `z` data. The 'zsmooth' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fast', 'best', False] + + - One of the following enumeration values: + + ['fast', 'best', False] Returns ------- diff --git a/plotly/graph_objects/_histogram.py b/plotly/graph_objects/_histogram.py index 3a3d6de8c4..1b334d59f0 100644 --- a/plotly/graph_objects/_histogram.py +++ b/plotly/graph_objects/_histogram.py @@ -194,8 +194,10 @@ def constraintext(self): larger than the bar itself. The 'constraintext' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['inside', 'outside', 'both', 'none'] + + - One of the following enumeration values: + + ['inside', 'outside', 'both', 'none'] Returns ------- @@ -315,8 +317,10 @@ def histfunc(self): each bin respectively. The 'histfunc' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['count', 'sum', 'avg', 'min', 'max'] + + - One of the following enumeration values: + + ['count', 'sum', 'avg', 'min', 'max'] Returns ------- @@ -346,9 +350,11 @@ def histnorm(self): (here, the sum of all bin AREAS equals 1). The 'histnorm' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['', 'percent', 'probability', 'density', 'probability - density'] + + - One of the following enumeration values: + + ['', 'percent', 'probability', 'density', 'probability + density'] Returns ------- @@ -568,8 +574,10 @@ def insidetextanchor(self): `textposition` "inside" mode. The 'insidetextanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['end', 'middle', 'start'] + + - One of the following enumeration values: + + ['end', 'middle', 'start'] Returns ------- @@ -679,7 +687,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -698,7 +706,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -864,7 +873,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -883,8 +893,10 @@ def orientation(self): the each bar spans along the vertical (horizontal). The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['v', 'h'] + + - One of the following enumeration values: + + ['v', 'h'] Returns ------- @@ -1076,8 +1088,10 @@ def textposition(self): text appears. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['inside', 'outside', 'auto', 'none'] + + - One of the following enumeration values: + + ['inside', 'outside', 'auto', 'none'] Returns ------- @@ -1217,8 +1231,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1296,11 +1312,13 @@ def xcalendar(self): Sets the calendar system to use with `x` date data. The 'xcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1425,11 +1443,13 @@ def ycalendar(self): Sets the calendar system to use with `y` date data. The 'ycalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- diff --git a/plotly/graph_objects/_histogram2d.py b/plotly/graph_objects/_histogram2d.py index 0a0c407d4f..5a419fcad3 100644 --- a/plotly/graph_objects/_histogram2d.py +++ b/plotly/graph_objects/_histogram2d.py @@ -307,8 +307,10 @@ def histfunc(self): each bin respectively. The 'histfunc' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['count', 'sum', 'avg', 'min', 'max'] + + - One of the following enumeration values: + + ['count', 'sum', 'avg', 'min', 'max'] Returns ------- @@ -338,9 +340,11 @@ def histnorm(self): (here, the sum of all bin AREAS equals 1). The 'histnorm' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['', 'percent', 'probability', 'density', 'probability - density'] + + - One of the following enumeration values: + + ['', 'percent', 'probability', 'density', 'probability + density'] Returns ------- @@ -591,7 +595,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -610,7 +614,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -755,7 +760,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -955,8 +961,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1057,11 +1065,13 @@ def xcalendar(self): Sets the calendar system to use with `x` date data. The 'xcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1079,7 +1089,8 @@ def xgap(self): Sets the horizontal gap (in pixels) between bricks. The 'xgap' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1227,11 +1238,13 @@ def ycalendar(self): Sets the calendar system to use with `y` date data. The 'ycalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1249,7 +1262,8 @@ def ygap(self): Sets the vertical gap (in pixels) between bricks. The 'ygap' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1378,7 +1392,7 @@ def zmax(self): The 'zmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1399,7 +1413,7 @@ def zmid(self): The 'zmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1419,7 +1433,7 @@ def zmin(self): The 'zmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1437,8 +1451,10 @@ def zsmooth(self): Picks a smoothing algorithm use to smooth `z` data. The 'zsmooth' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fast', 'best', False] + + - One of the following enumeration values: + + ['fast', 'best', False] Returns ------- diff --git a/plotly/graph_objects/_histogram2dcontour.py b/plotly/graph_objects/_histogram2dcontour.py index 4f9cebe88d..9dd8c8a928 100644 --- a/plotly/graph_objects/_histogram2dcontour.py +++ b/plotly/graph_objects/_histogram2dcontour.py @@ -348,8 +348,10 @@ def histfunc(self): each bin respectively. The 'histfunc' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['count', 'sum', 'avg', 'min', 'max'] + + - One of the following enumeration values: + + ['count', 'sum', 'avg', 'min', 'max'] Returns ------- @@ -379,9 +381,11 @@ def histnorm(self): (here, the sum of all bin AREAS equals 1). The 'histnorm' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['', 'percent', 'probability', 'density', 'probability - density'] + + - One of the following enumeration values: + + ['', 'percent', 'probability', 'density', 'probability + density'] Returns ------- @@ -632,7 +636,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -651,7 +655,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -837,7 +842,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -1040,8 +1046,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1142,11 +1150,13 @@ def xcalendar(self): Sets the calendar system to use with `x` date data. The 'xcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1294,11 +1304,13 @@ def ycalendar(self): Sets the calendar system to use with `y` date data. The 'ycalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1427,7 +1439,7 @@ def zmax(self): The 'zmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1448,7 +1460,7 @@ def zmid(self): The 'zmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1468,7 +1480,7 @@ def zmin(self): The 'zmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/_icicle.py b/plotly/graph_objects/_icicle.py index db26befac7..7fb04238ff 100644 --- a/plotly/graph_objects/_icicle.py +++ b/plotly/graph_objects/_icicle.py @@ -72,8 +72,10 @@ def branchvalues(self): leaves. The 'branchvalues' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['remainder', 'total'] + + - One of the following enumeration values: + + ['remainder', 'total'] Returns ------- @@ -505,7 +507,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -524,7 +526,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -664,7 +667,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -888,10 +892,12 @@ def textposition(self): Sets the positions of the `text` elements. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] Returns ------- @@ -1089,8 +1095,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_image.py b/plotly/graph_objects/_image.py index bed25fed9c..3eb7ec3868 100644 --- a/plotly/graph_objects/_image.py +++ b/plotly/graph_objects/_image.py @@ -60,8 +60,10 @@ def colormodel(self): `rgb`. The 'colormodel' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['rgb', 'rgba', 'rgba256', 'hsl', 'hsla'] + + - One of the following enumeration values: + + ['rgb', 'rgba', 'rgba256', 'hsl', 'hsla'] Returns ------- @@ -120,7 +122,7 @@ def dx(self): The 'dx' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -139,7 +141,7 @@ def dy(self): The 'dy' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -407,7 +409,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -426,7 +428,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -508,7 +511,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -654,8 +658,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -881,8 +887,10 @@ def zsmooth(self): applies for image traces that use the `source` attribute. The 'zsmooth' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fast', False] + + - One of the following enumeration values: + + ['fast', False] Returns ------- diff --git a/plotly/graph_objects/_indicator.py b/plotly/graph_objects/_indicator.py index 180678204d..100ee387d9 100644 --- a/plotly/graph_objects/_indicator.py +++ b/plotly/graph_objects/_indicator.py @@ -43,8 +43,10 @@ def align(self): displayed: in this case, it is always centered The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -249,7 +251,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -268,7 +270,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -482,7 +485,7 @@ def value(self): The 'value' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -502,8 +505,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_isosurface.py b/plotly/graph_objects/_isosurface.py index e984e461a3..8287c10864 100644 --- a/plotly/graph_objects/_isosurface.py +++ b/plotly/graph_objects/_isosurface.py @@ -143,7 +143,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -164,7 +164,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -184,7 +184,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -577,7 +577,7 @@ def isomax(self): The 'isomax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -596,7 +596,7 @@ def isomin(self): The 'isomin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -685,7 +685,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -704,7 +704,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -829,7 +830,8 @@ def opacity(self): improved in the near future and is subject to change. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -1156,8 +1158,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_layout.py b/plotly/graph_objects/_layout.py index b6d9e65692..414a16022f 100644 --- a/plotly/graph_objects/_layout.py +++ b/plotly/graph_objects/_layout.py @@ -264,8 +264,10 @@ def autotypenumbers(self): overridden for individual axes. The 'autotypenumbers' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['convert types', 'strict'] + + - One of the following enumeration values: + + ['convert types', 'strict'] Returns ------- @@ -302,7 +304,8 @@ def bargap(self): location coordinates. The 'bargap' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -321,7 +324,8 @@ def bargroupgap(self): location coordinate. The 'bargroupgap' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -346,8 +350,10 @@ def barmode(self): "opacity" to see multiple bars. The 'barmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['stack', 'group', 'overlay', 'relative'] + + - One of the following enumeration values: + + ['stack', 'group', 'overlay', 'relative'] Returns ------- @@ -368,8 +374,10 @@ def barnorm(self): multiplied by 100 to show percentages. The 'barnorm' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['', 'fraction', 'percent'] + + - One of the following enumeration values: + + ['', 'fraction', 'percent'] Returns ------- @@ -389,7 +397,8 @@ def boxgap(self): set. The 'boxgap' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -409,7 +418,8 @@ def boxgroupgap(self): set. The 'boxgroupgap' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -432,8 +442,10 @@ def boxmode(self): on traces that have "width" set. The 'boxmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['group', 'overlay'] + + - One of the following enumeration values: + + ['group', 'overlay'] Returns ------- @@ -452,11 +464,13 @@ def calendar(self): displaying dates throughout the plot. The 'calendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -608,10 +622,12 @@ def dragmode(self): "turntable" apply only to 3D scenes. The 'dragmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['zoom', 'pan', 'select', 'lasso', 'drawclosedpath', - 'drawopenpath', 'drawline', 'drawrect', 'drawcircle', - 'orbit', 'turntable', False] + + - One of the following enumeration values: + + ['zoom', 'pan', 'select', 'lasso', 'drawclosedpath', + 'drawopenpath', 'drawline', 'drawrect', 'drawcircle', 'orbit', + 'turntable', False] Returns ------- @@ -817,7 +833,8 @@ def funnelgap(self): location coordinates. The 'funnelgap' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -836,7 +853,8 @@ def funnelgroupgap(self): location coordinate. The 'funnelgroupgap' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -859,8 +877,10 @@ def funnelmode(self): need to reduce "opacity" to see multiple bars. The 'funnelmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['stack', 'group', 'overlay'] + + - One of the following enumeration values: + + ['stack', 'group', 'overlay'] Returns ------- @@ -916,7 +936,8 @@ def height(self): Sets the plot's height (in px). The 'height' property is a number and may be specified as: - - An int or float in the interval [10, inf] + + - An int or float in the interval [10, inf] Returns ------- @@ -1050,8 +1071,10 @@ def hovermode(self): false, hover interactions are disabled. The 'hovermode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['x', 'y', 'closest', False, 'x unified', 'y unified'] + + - One of the following enumeration values: + + ['x', 'y', 'closest', False, 'x unified', 'y unified'] Returns ------- @@ -1074,8 +1097,10 @@ def hoversubplots(self): `hovermode` is set to "x", *x unified*, "y" or *y unified*. The 'hoversubplots' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['single', 'overlaying', 'axis'] + + - One of the following enumeration values: + + ['single', 'overlaying', 'axis'] Returns ------- @@ -1276,7 +1301,8 @@ def minreducedheight(self): px) The 'minreducedheight' property is a number and may be specified as: - - An int or float in the interval [2, inf] + + - An int or float in the interval [2, inf] Returns ------- @@ -1295,7 +1321,8 @@ def minreducedwidth(self): px) The 'minreducedwidth' property is a number and may be specified as: - - An int or float in the interval [2, inf] + + - An int or float in the interval [2, inf] Returns ------- @@ -1458,7 +1485,8 @@ def scattergap(self): adjacent location coordinates. Defaults to `bargap`. The 'scattergap' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -1481,8 +1509,10 @@ def scattermode(self): scatter points. The 'scattermode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['group', 'overlay'] + + - One of the following enumeration values: + + ['group', 'overlay'] Returns ------- @@ -1522,8 +1552,10 @@ def selectdirection(self): diagonal and "any" sets no limit. The 'selectdirection' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v', 'd', 'any'] + + - One of the following enumeration values: + + ['h', 'v', 'd', 'any'] Returns ------- @@ -2019,7 +2051,8 @@ def violingap(self): set. The 'violingap' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -2039,7 +2072,8 @@ def violingroupgap(self): set. The 'violingroupgap' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -2062,8 +2096,10 @@ def violinmode(self): effect on traces that have "width" set. The 'violinmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['group', 'overlay'] + + - One of the following enumeration values: + + ['group', 'overlay'] Returns ------- @@ -2082,7 +2118,8 @@ def waterfallgap(self): location coordinates. The 'waterfallgap' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -2101,7 +2138,8 @@ def waterfallgroupgap(self): location coordinate. The 'waterfallgroupgap' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -2123,8 +2161,10 @@ def waterfallmode(self): need to reduce "opacity" to see multiple bars. The 'waterfallmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['group', 'overlay'] + + - One of the following enumeration values: + + ['group', 'overlay'] Returns ------- @@ -2142,7 +2182,8 @@ def width(self): Sets the plot's width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [10, inf] + + - An int or float in the interval [10, inf] Returns ------- diff --git a/plotly/graph_objects/_mesh3d.py b/plotly/graph_objects/_mesh3d.py index b826ae0756..5481e1317f 100644 --- a/plotly/graph_objects/_mesh3d.py +++ b/plotly/graph_objects/_mesh3d.py @@ -104,7 +104,7 @@ def alphahull(self): The 'alphahull' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -169,7 +169,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -191,7 +191,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -212,7 +212,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -411,8 +411,10 @@ def delaunayaxis(self): indicate Delaunay triangulation. The 'delaunayaxis' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['x', 'y', 'z'] + + - One of the following enumeration values: + + ['x', 'y', 'z'] Returns ------- @@ -731,8 +733,10 @@ def intensitymode(self): Determines the source of `intensity` values. The 'intensitymode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['vertex', 'cell'] + + - One of the following enumeration values: + + ['vertex', 'cell'] Returns ------- @@ -942,7 +946,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -961,7 +965,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1086,7 +1091,8 @@ def opacity(self): improved in the near future and is subject to change. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -1337,8 +1343,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1376,11 +1384,13 @@ def xcalendar(self): Sets the calendar system to use with `x` date data. The 'xcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1465,11 +1475,13 @@ def ycalendar(self): Sets the calendar system to use with `y` date data. The 'ycalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1554,11 +1566,13 @@ def zcalendar(self): Sets the calendar system to use with `z` date data. The 'zcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- diff --git a/plotly/graph_objects/_ohlc.py b/plotly/graph_objects/_ohlc.py index 42aad5137d..0e0f6efca1 100644 --- a/plotly/graph_objects/_ohlc.py +++ b/plotly/graph_objects/_ohlc.py @@ -427,7 +427,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -446,7 +446,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -583,7 +584,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -739,7 +741,8 @@ def tickwidth(self): minimal interval. The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, 0.5] + + - An int or float in the interval [0, 0.5] Returns ------- @@ -810,8 +813,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -871,11 +876,13 @@ def xcalendar(self): Sets the calendar system to use with `x` date data. The 'xcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -964,8 +971,10 @@ def xperiodalignment(self): alignment of data points on the x axis. The 'xperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- diff --git a/plotly/graph_objects/_parcats.py b/plotly/graph_objects/_parcats.py index 01a4198eeb..8b3c537be1 100644 --- a/plotly/graph_objects/_parcats.py +++ b/plotly/graph_objects/_parcats.py @@ -45,8 +45,10 @@ def arrangement(self): dimensions are stationary. The 'arrangement' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['perpendicular', 'freeform', 'fixed'] + + - One of the following enumeration values: + + ['perpendicular', 'freeform', 'fixed'] Returns ------- @@ -84,8 +86,10 @@ def counts(self): to 1 so that each state represents one observation The 'counts' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -212,8 +216,10 @@ def hoveron(self): categories per dimension. The 'hoveron' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['category', 'color', 'dimension'] + + - One of the following enumeration values: + + ['category', 'color', 'dimension'] Returns ------- @@ -319,7 +325,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -422,8 +429,10 @@ def sortpaths(self): paths based on dimensions categories from right to left. The 'sortpaths' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['forward', 'backward'] + + - One of the following enumeration values: + + ['forward', 'backward'] Returns ------- @@ -534,8 +543,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_parcoords.py b/plotly/graph_objects/_parcoords.py index 9ae5db8ada..deb4517f28 100644 --- a/plotly/graph_objects/_parcoords.py +++ b/plotly/graph_objects/_parcoords.py @@ -233,8 +233,10 @@ def labelside(self): inside margins when `labelposition` is set to "bottom". The 'labelside' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'bottom'] + + - One of the following enumeration values: + + ['top', 'bottom'] Returns ------- @@ -302,7 +304,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -321,7 +323,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -555,8 +558,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_pie.py b/plotly/graph_objects/_pie.py index 81207e9f65..fa877adc74 100644 --- a/plotly/graph_objects/_pie.py +++ b/plotly/graph_objects/_pie.py @@ -130,8 +130,10 @@ def direction(self): another. The 'direction' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['clockwise', 'counterclockwise'] + + - One of the following enumeration values: + + ['clockwise', 'counterclockwise'] Returns ------- @@ -150,7 +152,7 @@ def dlabel(self): The 'dlabel' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -188,7 +190,8 @@ def hole(self): to make a donut chart. The 'hole' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -440,8 +443,10 @@ def insidetextorientation(self): to the radius of the sector. The 'insidetextorientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['horizontal', 'radial', 'tangential', 'auto'] + + - One of the following enumeration values: + + ['horizontal', 'radial', 'tangential', 'auto'] Returns ------- @@ -462,7 +467,7 @@ def label0(self): The 'label0' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -591,7 +596,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -610,7 +615,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -711,7 +717,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -753,8 +760,10 @@ def pull(self): slices. The 'pull' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -953,9 +962,12 @@ def textposition(self): Specifies the location of the `textinfo`. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['inside', 'outside', 'auto', 'none'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['inside', 'outside', 'auto', 'none'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1171,8 +1183,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_sankey.py b/plotly/graph_objects/_sankey.py index 6136ac9580..173cd16dc8 100644 --- a/plotly/graph_objects/_sankey.py +++ b/plotly/graph_objects/_sankey.py @@ -50,8 +50,10 @@ def arrangement(self): are stationary. The 'arrangement' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['snap', 'perpendicular', 'freeform', 'fixed'] + + - One of the following enumeration values: + + ['snap', 'perpendicular', 'freeform', 'fixed'] Returns ------- @@ -260,7 +262,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -279,7 +281,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -403,8 +406,10 @@ def orientation(self): Sets the orientation of the Sankey diagram. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['v', 'h'] + + - One of the following enumeration values: + + ['v', 'h'] Returns ------- @@ -579,8 +584,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_scatter.py b/plotly/graph_objects/_scatter.py index 731247eddc..6cd33a22bd 100644 --- a/plotly/graph_objects/_scatter.py +++ b/plotly/graph_objects/_scatter.py @@ -194,7 +194,7 @@ def dx(self): The 'dx' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -213,7 +213,7 @@ def dy(self): The 'dy' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -287,9 +287,11 @@ def fill(self): be pushed down in the drawing order. The 'fill' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'tozeroy', 'tozerox', 'tonexty', 'tonextx', - 'toself', 'tonext'] + + - One of the following enumeration values: + + ['none', 'tozeroy', 'tozerox', 'tonexty', 'tonextx', 'toself', + 'tonext'] Returns ------- @@ -384,8 +386,10 @@ def groupnorm(self): subplot, each will be normalized within its own set. The 'groupnorm' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['', 'fraction', 'percent'] + + - One of the following enumeration values: + + ['', 'fraction', 'percent'] Returns ------- @@ -701,7 +705,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -720,7 +724,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -887,7 +892,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -911,8 +917,10 @@ def orientation(self): value of `fill`. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['v', 'h'] + + - One of the following enumeration values: + + ['v', 'h'] Returns ------- @@ -997,8 +1005,10 @@ def stackgaps(self): constant beyond the existing values. The 'stackgaps' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['infer zero', 'interpolate'] + + - One of the following enumeration values: + + ['infer zero', 'interpolate'] Returns ------- @@ -1112,11 +1122,14 @@ def textposition(self): (x,y) coordinates. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1293,8 +1306,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1372,11 +1387,13 @@ def xcalendar(self): Sets the calendar system to use with `x` date data. The 'xcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1465,8 +1482,10 @@ def xperiodalignment(self): alignment of data points on the x axis. The 'xperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- @@ -1562,11 +1581,13 @@ def ycalendar(self): Sets the calendar system to use with `y` date data. The 'ycalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1655,8 +1676,10 @@ def yperiodalignment(self): alignment of data points on the y axis. The 'yperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- diff --git a/plotly/graph_objects/_scatter3d.py b/plotly/graph_objects/_scatter3d.py index 1aa95c6a70..6a52789405 100644 --- a/plotly/graph_objects/_scatter3d.py +++ b/plotly/graph_objects/_scatter3d.py @@ -464,7 +464,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -483,7 +483,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -629,7 +630,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -729,8 +731,10 @@ def surfaceaxis(self): about the x, y, z respectively. The 'surfaceaxis' property is an enumeration that may be specified as: - - One of the following enumeration values: - [-1, 0, 1, 2] + + - One of the following enumeration values: + + [-1, 0, 1, 2] Returns ------- @@ -817,11 +821,14 @@ def textposition(self): (x,y) coordinates. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -979,8 +986,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1016,11 +1025,13 @@ def xcalendar(self): Sets the calendar system to use with `x` date data. The 'xcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1103,11 +1114,13 @@ def ycalendar(self): Sets the calendar system to use with `y` date data. The 'ycalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1190,11 +1203,13 @@ def zcalendar(self): Sets the calendar system to use with `z` date data. The 'zcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- diff --git a/plotly/graph_objects/_scattercarpet.py b/plotly/graph_objects/_scattercarpet.py index edb3eea98b..94fbd9fe16 100644 --- a/plotly/graph_objects/_scattercarpet.py +++ b/plotly/graph_objects/_scattercarpet.py @@ -228,8 +228,10 @@ def fill(self): the other. The 'fill' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'toself', 'tonext'] + + - One of the following enumeration values: + + ['none', 'toself', 'tonext'] Returns ------- @@ -569,7 +571,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -588,7 +590,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -734,7 +737,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -878,11 +882,14 @@ def textposition(self): (x,y) coordinates. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1061,8 +1068,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_scattergeo.py b/plotly/graph_objects/_scattergeo.py index 4e6b0bb463..d91cdadaf6 100644 --- a/plotly/graph_objects/_scattergeo.py +++ b/plotly/graph_objects/_scattergeo.py @@ -152,8 +152,10 @@ def fill(self): each segment of the trace if it has gaps) into a closed shape. The 'fill' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'toself'] + + - One of the following enumeration values: + + ['none', 'toself'] Returns ------- @@ -552,7 +554,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -571,7 +573,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -612,8 +615,10 @@ def locationmode(self): GeoJSON linked to the `geojson` attribute. The 'locationmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['ISO-3', 'USA-states', 'country names', 'geojson-id'] + + - One of the following enumeration values: + + ['ISO-3', 'USA-states', 'country names', 'geojson-id'] Returns ------- @@ -815,7 +820,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -960,11 +966,14 @@ def textposition(self): (x,y) coordinates. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1143,8 +1152,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_scattergl.py b/plotly/graph_objects/_scattergl.py index 21ca09656a..02d70ce1f8 100644 --- a/plotly/graph_objects/_scattergl.py +++ b/plotly/graph_objects/_scattergl.py @@ -141,7 +141,7 @@ def dx(self): The 'dx' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -160,7 +160,7 @@ def dy(self): The 'dy' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -234,9 +234,11 @@ def fill(self): be pushed down in the drawing order. The 'fill' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'tozeroy', 'tozerox', 'tonexty', 'tonextx', - 'toself', 'tonext'] + + - One of the following enumeration values: + + ['none', 'tozeroy', 'tozerox', 'tonexty', 'tonextx', 'toself', + 'tonext'] Returns ------- @@ -553,7 +555,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -572,7 +574,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -713,7 +716,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -857,11 +861,14 @@ def textposition(self): (x,y) coordinates. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1038,8 +1045,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1117,11 +1126,13 @@ def xcalendar(self): Sets the calendar system to use with `x` date data. The 'xcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1210,8 +1221,10 @@ def xperiodalignment(self): alignment of data points on the x axis. The 'xperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- @@ -1307,11 +1320,13 @@ def ycalendar(self): Sets the calendar system to use with `y` date data. The 'ycalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1400,8 +1415,10 @@ def yperiodalignment(self): alignment of data points on the y axis. The 'yperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- diff --git a/plotly/graph_objects/_scattermap.py b/plotly/graph_objects/_scattermap.py index d8e84e6d66..278c705228 100644 --- a/plotly/graph_objects/_scattermap.py +++ b/plotly/graph_objects/_scattermap.py @@ -167,8 +167,10 @@ def fill(self): each segment of the trace if it has gaps) into a closed shape. The 'fill' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'toself'] + + - One of the following enumeration values: + + ['none', 'toself'] Returns ------- @@ -521,7 +523,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -540,7 +542,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -720,7 +723,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -889,10 +893,12 @@ def textposition(self): (x,y) coordinates. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] Returns ------- @@ -1052,8 +1058,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_scattermapbox.py b/plotly/graph_objects/_scattermapbox.py index 60e16ffc62..943412c998 100644 --- a/plotly/graph_objects/_scattermapbox.py +++ b/plotly/graph_objects/_scattermapbox.py @@ -169,8 +169,10 @@ def fill(self): each segment of the trace if it has gaps) into a closed shape. The 'fill' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'toself'] + + - One of the following enumeration values: + + ['none', 'toself'] Returns ------- @@ -523,7 +525,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -542,7 +544,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -722,7 +725,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -895,10 +899,12 @@ def textposition(self): (x,y) coordinates. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] Returns ------- @@ -1058,8 +1064,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_scatterpolar.py b/plotly/graph_objects/_scatterpolar.py index 8480e10d02..59ddff9180 100644 --- a/plotly/graph_objects/_scatterpolar.py +++ b/plotly/graph_objects/_scatterpolar.py @@ -152,7 +152,7 @@ def dr(self): The 'dr' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -173,7 +173,7 @@ def dtheta(self): The 'dtheta' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -199,8 +199,10 @@ def fill(self): the other. The 'fill' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'toself', 'tonext'] + + - One of the following enumeration values: + + ['none', 'toself', 'tonext'] Returns ------- @@ -540,7 +542,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -559,7 +561,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -705,7 +708,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -927,11 +931,14 @@ def textposition(self): (x,y) coordinates. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1094,8 +1101,10 @@ def thetaunit(self): on "linear" angular axes. The 'thetaunit' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['radians', 'degrees', 'gradians'] + + - One of the following enumeration values: + + ['radians', 'degrees', 'gradians'] Returns ------- @@ -1185,8 +1194,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_scatterpolargl.py b/plotly/graph_objects/_scatterpolargl.py index 38f7bf04f5..bfd152ac36 100644 --- a/plotly/graph_objects/_scatterpolargl.py +++ b/plotly/graph_objects/_scatterpolargl.py @@ -129,7 +129,7 @@ def dr(self): The 'dr' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -150,7 +150,7 @@ def dtheta(self): The 'dtheta' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -186,9 +186,11 @@ def fill(self): be pushed down in the drawing order. The 'fill' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'tozeroy', 'tozerox', 'tonexty', 'tonextx', - 'toself', 'tonext'] + + - One of the following enumeration values: + + ['none', 'tozeroy', 'tozerox', 'tonexty', 'tonextx', 'toself', + 'tonext'] Returns ------- @@ -505,7 +507,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -524,7 +526,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -670,7 +673,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -892,11 +896,14 @@ def textposition(self): (x,y) coordinates. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1059,8 +1066,10 @@ def thetaunit(self): on "linear" angular axes. The 'thetaunit' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['radians', 'degrees', 'gradians'] + + - One of the following enumeration values: + + ['radians', 'degrees', 'gradians'] Returns ------- @@ -1150,8 +1159,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_scattersmith.py b/plotly/graph_objects/_scattersmith.py index 18af610385..e38e08343c 100644 --- a/plotly/graph_objects/_scattersmith.py +++ b/plotly/graph_objects/_scattersmith.py @@ -154,8 +154,10 @@ def fill(self): the other. The 'fill' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'toself', 'tonext'] + + - One of the following enumeration values: + + ['none', 'toself', 'tonext'] Returns ------- @@ -533,7 +535,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -552,7 +554,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -698,7 +701,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -902,11 +906,14 @@ def textposition(self): (x,y) coordinates. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1085,8 +1092,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_scatterternary.py b/plotly/graph_objects/_scatterternary.py index b7275e1cb1..56fe50ab53 100644 --- a/plotly/graph_objects/_scatterternary.py +++ b/plotly/graph_objects/_scatterternary.py @@ -274,8 +274,10 @@ def fill(self): the other. The 'fill' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'toself', 'tonext'] + + - One of the following enumeration values: + + ['none', 'toself', 'tonext'] Returns ------- @@ -615,7 +617,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -634,7 +636,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -780,7 +783,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -904,7 +908,8 @@ def sum(self): ternary.sum The 'sum' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -969,11 +974,14 @@ def textposition(self): (x,y) coordinates. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1152,8 +1160,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_splom.py b/plotly/graph_objects/_splom.py index 5c7cf0ef51..57826c66b1 100644 --- a/plotly/graph_objects/_splom.py +++ b/plotly/graph_objects/_splom.py @@ -430,7 +430,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -449,7 +449,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -550,7 +551,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -798,8 +800,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -822,11 +826,13 @@ def xaxes(self): less x-axis and one less y-axis. The 'xaxes' property is an info array that may be specified as: + * a list of elements where: - The 'xaxes[i]' property is an identifier of a particular - subplot, of type 'x', that may be specified as the string 'x' - optionally followed by an integer >= 1 - (e.g. 'x', 'x1', 'x2', 'x3', etc.) + + The 'xaxes[i]' property is an identifier of a particular + subplot, of type 'x', that may be specified as the string 'x' + optionally followed by an integer >= 1 + (e.g. 'x', 'x1', 'x2', 'x3', etc.) Returns ------- @@ -878,11 +884,13 @@ def yaxes(self): less x-axis and one less y-axis. The 'yaxes' property is an info array that may be specified as: + * a list of elements where: - The 'yaxes[i]' property is an identifier of a particular - subplot, of type 'y', that may be specified as the string 'y' - optionally followed by an integer >= 1 - (e.g. 'y', 'y1', 'y2', 'y3', etc.) + + The 'yaxes[i]' property is an identifier of a particular + subplot, of type 'y', that may be specified as the string 'y' + optionally followed by an integer >= 1 + (e.g. 'y', 'y1', 'y2', 'y3', etc.) Returns ------- diff --git a/plotly/graph_objects/_streamtube.py b/plotly/graph_objects/_streamtube.py index f2397389a2..733cd5606d 100644 --- a/plotly/graph_objects/_streamtube.py +++ b/plotly/graph_objects/_streamtube.py @@ -124,7 +124,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -146,7 +146,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -167,7 +167,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -574,7 +574,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -593,7 +593,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -737,7 +738,8 @@ def opacity(self): improved in the near future and is subject to change. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -838,7 +840,8 @@ def sizeref(self): starting positions. The 'sizeref' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1069,8 +1072,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_sunburst.py b/plotly/graph_objects/_sunburst.py index 564eac7460..7fe752712d 100644 --- a/plotly/graph_objects/_sunburst.py +++ b/plotly/graph_objects/_sunburst.py @@ -71,8 +71,10 @@ def branchvalues(self): leaves. The 'branchvalues' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['remainder', 'total'] + + - One of the following enumeration values: + + ['remainder', 'total'] Returns ------- @@ -406,8 +408,10 @@ def insidetextorientation(self): to the radius of the sector. The 'insidetextorientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['horizontal', 'radial', 'tangential', 'auto'] + + - One of the following enumeration values: + + ['horizontal', 'radial', 'tangential', 'auto'] Returns ------- @@ -530,7 +534,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -549,7 +553,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -689,7 +694,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -1076,8 +1082,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_surface.py b/plotly/graph_objects/_surface.py index 78281708d1..deee23b0f7 100644 --- a/plotly/graph_objects/_surface.py +++ b/plotly/graph_objects/_surface.py @@ -123,7 +123,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -145,7 +145,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -166,7 +166,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -648,7 +648,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -667,7 +667,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -792,7 +793,8 @@ def opacity(self): improved in the near future and is subject to change. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -1066,8 +1068,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1103,11 +1107,13 @@ def xcalendar(self): Sets the calendar system to use with `x` date data. The 'xcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1190,11 +1196,13 @@ def ycalendar(self): Sets the calendar system to use with `y` date data. The 'ycalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -1277,11 +1285,13 @@ def zcalendar(self): Sets the calendar system to use with `z` date data. The 'zcalendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- diff --git a/plotly/graph_objects/_table.py b/plotly/graph_objects/_table.py index 4ce577b68d..64d0743a25 100644 --- a/plotly/graph_objects/_table.py +++ b/plotly/graph_objects/_table.py @@ -104,8 +104,9 @@ def columnwidth(self): The 'columnwidth' property is a number and may be specified as: - - An int or float - - A tuple, list, or one-dimensional numpy array of the above + - An int or float + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -370,7 +371,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -389,7 +390,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -543,8 +545,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_treemap.py b/plotly/graph_objects/_treemap.py index d78689cc79..44ddc163db 100644 --- a/plotly/graph_objects/_treemap.py +++ b/plotly/graph_objects/_treemap.py @@ -71,8 +71,10 @@ def branchvalues(self): leaves. The 'branchvalues' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['remainder', 'total'] + + - One of the following enumeration values: + + ['remainder', 'total'] Returns ------- @@ -485,7 +487,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -504,7 +506,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -644,7 +647,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -868,10 +872,12 @@ def textposition(self): Sets the positions of the `text` elements. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] Returns ------- @@ -1069,8 +1075,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_violin.py b/plotly/graph_objects/_violin.py index 7cde37ba8f..70dcbc3813 100644 --- a/plotly/graph_objects/_violin.py +++ b/plotly/graph_objects/_violin.py @@ -102,7 +102,8 @@ def bandwidth(self): thumb. The 'bandwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -429,7 +430,8 @@ def jitter(self): the width of the violins. The 'jitter' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -518,7 +520,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -537,7 +539,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -702,7 +705,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -721,8 +725,10 @@ def orientation(self): distribution is visualized along the vertical (horizontal). The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['v', 'h'] + + - One of the following enumeration values: + + ['v', 'h'] Returns ------- @@ -744,7 +750,8 @@ def pointpos(self): horizontal violins. The 'pointpos' property is a number and may be specified as: - - An int or float in the interval [-2, 2] + + - An int or float in the interval [-2, 2] Returns ------- @@ -769,8 +776,10 @@ def points(self): otherwise defaults to "outliers". The 'points' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'outliers', 'suspectedoutliers', False] + + - One of the following enumeration values: + + ['all', 'outliers', 'suspectedoutliers', False] Returns ------- @@ -799,8 +808,10 @@ def quartilemethod(self): upper half. The 'quartilemethod' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['linear', 'exclusive', 'inclusive'] + + - One of the following enumeration values: + + ['linear', 'exclusive', 'inclusive'] Returns ------- @@ -845,8 +856,10 @@ def scalemode(self): points making up each violin. The 'scalemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['width', 'count'] + + - One of the following enumeration values: + + ['width', 'count'] Returns ------- @@ -927,8 +940,10 @@ def side(self): trace has `side` set to "positive" and the other to "negative". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['both', 'positive', 'negative'] + + - One of the following enumeration values: + + ['both', 'positive', 'negative'] Returns ------- @@ -977,8 +992,10 @@ def spanmode(self): attribute. The 'spanmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['soft', 'hard', 'manual'] + + - One of the following enumeration values: + + ['soft', 'hard', 'manual'] Returns ------- @@ -1129,8 +1146,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1150,7 +1169,8 @@ def width(self): positions of other violin traces in the same subplot. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/_volume.py b/plotly/graph_objects/_volume.py index c209602c95..78d5404ae6 100644 --- a/plotly/graph_objects/_volume.py +++ b/plotly/graph_objects/_volume.py @@ -144,7 +144,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -165,7 +165,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -185,7 +185,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -578,7 +578,7 @@ def isomax(self): The 'isomax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -597,7 +597,7 @@ def isomin(self): The 'isomin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -686,7 +686,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -705,7 +705,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -830,7 +831,8 @@ def opacity(self): improved in the near future and is subject to change. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -1182,8 +1184,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/_waterfall.py b/plotly/graph_objects/_waterfall.py index 47bb8633b9..81e4b0e73a 100644 --- a/plotly/graph_objects/_waterfall.py +++ b/plotly/graph_objects/_waterfall.py @@ -113,7 +113,7 @@ def base(self): The 'base' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -172,8 +172,10 @@ def constraintext(self): larger than the bar itself. The 'constraintext' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['inside', 'outside', 'both', 'none'] + + - One of the following enumeration values: + + ['inside', 'outside', 'both', 'none'] Returns ------- @@ -251,7 +253,7 @@ def dx(self): The 'dx' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -270,7 +272,7 @@ def dy(self): The 'dy' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -514,8 +516,10 @@ def insidetextanchor(self): `textposition` "inside" mode. The 'insidetextanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['end', 'middle', 'start'] + + - One of the following enumeration values: + + ['end', 'middle', 'start'] Returns ------- @@ -625,7 +629,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -644,7 +648,8 @@ def legendwidth(self): trace. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -769,8 +774,9 @@ def offset(self): The 'offset' property is a number and may be specified as: - - An int or float - - A tuple, list, or one-dimensional numpy array of the above + - An int or float + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -827,7 +833,8 @@ def opacity(self): Sets the opacity of the trace. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -846,8 +853,10 @@ def orientation(self): the each bar spans along the vertical (horizontal). The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['v', 'h'] + + - One of the following enumeration values: + + ['v', 'h'] Returns ------- @@ -1045,9 +1054,12 @@ def textposition(self): text appears. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['inside', 'outside', 'auto', 'none'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['inside', 'outside', 'auto', 'none'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1226,8 +1238,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -1245,8 +1259,10 @@ def width(self): Sets the bar width (in position axis units). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1413,8 +1429,10 @@ def xperiodalignment(self): alignment of data points on the x axis. The 'xperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- @@ -1581,8 +1599,10 @@ def yperiodalignment(self): alignment of data points on the y axis. The 'yperiodalignment' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'middle', 'end'] + + - One of the following enumeration values: + + ['start', 'middle', 'end'] Returns ------- diff --git a/plotly/graph_objects/bar/_error_x.py b/plotly/graph_objects/bar/_error_x.py index 8884d01ea2..283796720b 100644 --- a/plotly/graph_objects/bar/_error_x.py +++ b/plotly/graph_objects/bar/_error_x.py @@ -166,7 +166,8 @@ def thickness(self): Sets the thickness (in px) of the error bars. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -224,8 +225,10 @@ def type(self): data set `array`. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['percent', 'constant', 'sqrt', 'data'] + + - One of the following enumeration values: + + ['percent', 'constant', 'sqrt', 'data'] Returns ------- @@ -245,7 +248,8 @@ def value(self): corresponding to the lengths of the error bars. The 'value' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -266,7 +270,8 @@ def valueminus(self): (left) direction for vertical (horizontal) bars The 'valueminus' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -303,7 +308,8 @@ def width(self): error bars. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/bar/_error_y.py b/plotly/graph_objects/bar/_error_y.py index 78d86ba279..b9bf3a89ee 100644 --- a/plotly/graph_objects/bar/_error_y.py +++ b/plotly/graph_objects/bar/_error_y.py @@ -149,7 +149,8 @@ def thickness(self): Sets the thickness (in px) of the error bars. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -207,8 +208,10 @@ def type(self): data set `array`. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['percent', 'constant', 'sqrt', 'data'] + + - One of the following enumeration values: + + ['percent', 'constant', 'sqrt', 'data'] Returns ------- @@ -228,7 +231,8 @@ def value(self): corresponding to the lengths of the error bars. The 'value' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -249,7 +253,8 @@ def valueminus(self): (left) direction for vertical (horizontal) bars The 'valueminus' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -286,7 +291,8 @@ def width(self): error bars. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/bar/_hoverlabel.py b/plotly/graph_objects/bar/_hoverlabel.py index abdcaac63d..144fc65e3b 100644 --- a/plotly/graph_objects/bar/_hoverlabel.py +++ b/plotly/graph_objects/bar/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/bar/_insidetextfont.py b/plotly/graph_objects/bar/_insidetextfont.py index 574a60d82b..5cd165b282 100644 --- a/plotly/graph_objects/bar/_insidetextfont.py +++ b/plotly/graph_objects/bar/_insidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/bar/_marker.py b/plotly/graph_objects/bar/_marker.py index cb3f34ea75..13b0609055 100644 --- a/plotly/graph_objects/bar/_marker.py +++ b/plotly/graph_objects/bar/_marker.py @@ -85,7 +85,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -108,7 +108,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -130,7 +130,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -330,8 +330,10 @@ def opacity(self): Sets the opacity of the bars. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/bar/_outsidetextfont.py b/plotly/graph_objects/bar/_outsidetextfont.py index b63b2300a0..902b96b876 100644 --- a/plotly/graph_objects/bar/_outsidetextfont.py +++ b/plotly/graph_objects/bar/_outsidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/bar/_stream.py b/plotly/graph_objects/bar/_stream.py index 0bfef39183..04a1c159cd 100644 --- a/plotly/graph_objects/bar/_stream.py +++ b/plotly/graph_objects/bar/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/bar/_textfont.py b/plotly/graph_objects/bar/_textfont.py index f924283ec2..4ea781dca7 100644 --- a/plotly/graph_objects/bar/_textfont.py +++ b/plotly/graph_objects/bar/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/bar/hoverlabel/_font.py b/plotly/graph_objects/bar/hoverlabel/_font.py index 78c94a9b7c..16e78388a3 100644 --- a/plotly/graph_objects/bar/hoverlabel/_font.py +++ b/plotly/graph_objects/bar/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/bar/legendgrouptitle/_font.py b/plotly/graph_objects/bar/legendgrouptitle/_font.py index dfcabd1007..adb2e25e50 100644 --- a/plotly/graph_objects/bar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/bar/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/bar/marker/_colorbar.py b/plotly/graph_objects/bar/marker/_colorbar.py index e53090e1b6..93d550eec9 100644 --- a/plotly/graph_objects/bar/marker/_colorbar.py +++ b/plotly/graph_objects/bar/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -655,8 +674,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -676,10 +697,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -721,7 +744,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -745,8 +769,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -785,8 +811,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -898,7 +926,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -942,7 +971,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -963,8 +992,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -982,7 +1013,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1002,8 +1034,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1028,7 +1062,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1049,8 +1083,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1068,7 +1104,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1088,8 +1125,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/bar/marker/_line.py b/plotly/graph_objects/bar/marker/_line.py index 44846e5569..f543afe8de 100644 --- a/plotly/graph_objects/bar/marker/_line.py +++ b/plotly/graph_objects/bar/marker/_line.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -290,8 +290,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/bar/marker/_pattern.py b/plotly/graph_objects/bar/marker/_pattern.py index a94aefebec..3d752926ac 100644 --- a/plotly/graph_objects/bar/marker/_pattern.py +++ b/plotly/graph_objects/bar/marker/_pattern.py @@ -120,7 +120,8 @@ def fgopacity(self): 0.5 when `fillmode` is "overlay". Otherwise, defaults to 1. The 'fgopacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -139,8 +140,10 @@ def fillmode(self): to `bgcolor` or a `fgcolor`. The 'fillmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['replace', 'overlay'] + + - One of the following enumeration values: + + ['replace', 'overlay'] Returns ------- @@ -199,9 +202,12 @@ def shape(self): used for filling the area. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['', '/', '\\', 'x', '-', '|', '+', '.'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['', '/', '\\', 'x', '-', '|', '+', '.'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -238,8 +244,10 @@ def size(self): which corresponds to the interval of repetition of the pattern. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -278,8 +286,10 @@ def solidity(self): shows only the foreground color without pattern. The 'solidity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/bar/marker/colorbar/_tickfont.py b/plotly/graph_objects/bar/marker/colorbar/_tickfont.py index 329412e46a..3f83fb035a 100644 --- a/plotly/graph_objects/bar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/bar/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/bar/marker/colorbar/_title.py b/plotly/graph_objects/bar/marker/colorbar/_title.py index 62f49e2748..52cd702174 100644 --- a/plotly/graph_objects/bar/marker/colorbar/_title.py +++ b/plotly/graph_objects/bar/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/bar/marker/colorbar/title/_font.py b/plotly/graph_objects/bar/marker/colorbar/title/_font.py index 51ac5cd79d..28ebe76490 100644 --- a/plotly/graph_objects/bar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/bar/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/bar/selected/_marker.py b/plotly/graph_objects/bar/selected/_marker.py index 72356f5b6d..bd8e29d77e 100644 --- a/plotly/graph_objects/bar/selected/_marker.py +++ b/plotly/graph_objects/bar/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/bar/unselected/_marker.py b/plotly/graph_objects/bar/unselected/_marker.py index 95e6746a07..6639c28249 100644 --- a/plotly/graph_objects/bar/unselected/_marker.py +++ b/plotly/graph_objects/bar/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/barpolar/_hoverlabel.py b/plotly/graph_objects/barpolar/_hoverlabel.py index 8fa6a6c9de..e8bf8773ec 100644 --- a/plotly/graph_objects/barpolar/_hoverlabel.py +++ b/plotly/graph_objects/barpolar/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/barpolar/_marker.py b/plotly/graph_objects/barpolar/_marker.py index 31f7a15d2d..2312c24907 100644 --- a/plotly/graph_objects/barpolar/_marker.py +++ b/plotly/graph_objects/barpolar/_marker.py @@ -84,7 +84,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -107,7 +107,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -129,7 +129,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -308,8 +308,10 @@ def opacity(self): Sets the opacity of the bars. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/barpolar/_stream.py b/plotly/graph_objects/barpolar/_stream.py index b12006d5c4..9aa8a7ecea 100644 --- a/plotly/graph_objects/barpolar/_stream.py +++ b/plotly/graph_objects/barpolar/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/barpolar/hoverlabel/_font.py b/plotly/graph_objects/barpolar/hoverlabel/_font.py index d0ce2da1b7..d4e61cee3c 100644 --- a/plotly/graph_objects/barpolar/hoverlabel/_font.py +++ b/plotly/graph_objects/barpolar/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/barpolar/legendgrouptitle/_font.py b/plotly/graph_objects/barpolar/legendgrouptitle/_font.py index 7ebe47080e..0e33d7dff4 100644 --- a/plotly/graph_objects/barpolar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/barpolar/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/_colorbar.py b/plotly/graph_objects/barpolar/marker/_colorbar.py index 991d8c66ef..aed3b019e0 100644 --- a/plotly/graph_objects/barpolar/marker/_colorbar.py +++ b/plotly/graph_objects/barpolar/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/_line.py b/plotly/graph_objects/barpolar/marker/_line.py index dbef8e2b70..3ddc4e2fd3 100644 --- a/plotly/graph_objects/barpolar/marker/_line.py +++ b/plotly/graph_objects/barpolar/marker/_line.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -290,8 +290,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/_pattern.py b/plotly/graph_objects/barpolar/marker/_pattern.py index 7b6f34fe06..2f1dce56ec 100644 --- a/plotly/graph_objects/barpolar/marker/_pattern.py +++ b/plotly/graph_objects/barpolar/marker/_pattern.py @@ -120,7 +120,8 @@ def fgopacity(self): 0.5 when `fillmode` is "overlay". Otherwise, defaults to 1. The 'fgopacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -139,8 +140,10 @@ def fillmode(self): to `bgcolor` or a `fgcolor`. The 'fillmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['replace', 'overlay'] + + - One of the following enumeration values: + + ['replace', 'overlay'] Returns ------- @@ -199,9 +202,12 @@ def shape(self): used for filling the area. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['', '/', '\\', 'x', '-', '|', '+', '.'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['', '/', '\\', 'x', '-', '|', '+', '.'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -238,8 +244,10 @@ def size(self): which corresponds to the interval of repetition of the pattern. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -278,8 +286,10 @@ def solidity(self): shows only the foreground color without pattern. The 'solidity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py b/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py index d66a931390..adf5f4e476 100644 --- a/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/colorbar/_title.py b/plotly/graph_objects/barpolar/marker/colorbar/_title.py index f8f68fb880..68a2b90f33 100644 --- a/plotly/graph_objects/barpolar/marker/colorbar/_title.py +++ b/plotly/graph_objects/barpolar/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py b/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py index 6e92eeab83..b17fbea900 100644 --- a/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/barpolar/selected/_marker.py b/plotly/graph_objects/barpolar/selected/_marker.py index 8150a6dba4..86fb844239 100644 --- a/plotly/graph_objects/barpolar/selected/_marker.py +++ b/plotly/graph_objects/barpolar/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/barpolar/unselected/_marker.py b/plotly/graph_objects/barpolar/unselected/_marker.py index 11bc394ca5..2e8c4e9215 100644 --- a/plotly/graph_objects/barpolar/unselected/_marker.py +++ b/plotly/graph_objects/barpolar/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/box/_hoverlabel.py b/plotly/graph_objects/box/_hoverlabel.py index b305523f0c..2c3238c8fc 100644 --- a/plotly/graph_objects/box/_hoverlabel.py +++ b/plotly/graph_objects/box/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/box/_line.py b/plotly/graph_objects/box/_line.py index ea6f4667d2..0ecb6f8264 100644 --- a/plotly/graph_objects/box/_line.py +++ b/plotly/graph_objects/box/_line.py @@ -38,7 +38,8 @@ def width(self): Sets the width (in px) of line bounding the box(es). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/box/_marker.py b/plotly/graph_objects/box/_marker.py index 2c82c744fd..1739768ac1 100644 --- a/plotly/graph_objects/box/_marker.py +++ b/plotly/graph_objects/box/_marker.py @@ -88,7 +88,8 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -128,7 +129,8 @@ def size(self): Sets the marker size (in px). The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -149,96 +151,91 @@ def symbol(self): appending "-open-dot" or "dot-open" to a symbol name. The 'symbol' property is an enumeration that may be specified as: - - One of the following enumeration values: - [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', - 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', - 'square', 101, '101', 'square-open', 201, '201', - 'square-dot', 301, '301', 'square-open-dot', 2, '2', - 'diamond', 102, '102', 'diamond-open', 202, '202', - 'diamond-dot', 302, '302', 'diamond-open-dot', 3, '3', - 'cross', 103, '103', 'cross-open', 203, '203', - 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', 'x', - 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', - 'x-open-dot', 5, '5', 'triangle-up', 105, '105', - 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, - '305', 'triangle-up-open-dot', 6, '6', 'triangle-down', - 106, '106', 'triangle-down-open', 206, '206', - 'triangle-down-dot', 306, '306', 'triangle-down-open-dot', - 7, '7', 'triangle-left', 107, '107', 'triangle-left-open', - 207, '207', 'triangle-left-dot', 307, '307', - 'triangle-left-open-dot', 8, '8', 'triangle-right', 108, - '108', 'triangle-right-open', 208, '208', - 'triangle-right-dot', 308, '308', - 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, - '109', 'triangle-ne-open', 209, '209', 'triangle-ne-dot', - 309, '309', 'triangle-ne-open-dot', 10, '10', - 'triangle-se', 110, '110', 'triangle-se-open', 210, '210', - 'triangle-se-dot', 310, '310', 'triangle-se-open-dot', 11, - '11', 'triangle-sw', 111, '111', 'triangle-sw-open', 211, - '211', 'triangle-sw-dot', 311, '311', - 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, - '112', 'triangle-nw-open', 212, '212', 'triangle-nw-dot', - 312, '312', 'triangle-nw-open-dot', 13, '13', 'pentagon', - 113, '113', 'pentagon-open', 213, '213', 'pentagon-dot', - 313, '313', 'pentagon-open-dot', 14, '14', 'hexagon', 114, - '114', 'hexagon-open', 214, '214', 'hexagon-dot', 314, - '314', 'hexagon-open-dot', 15, '15', 'hexagon2', 115, - '115', 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, - '315', 'hexagon2-open-dot', 16, '16', 'octagon', 116, - '116', 'octagon-open', 216, '216', 'octagon-dot', 316, - '316', 'octagon-open-dot', 17, '17', 'star', 117, '117', - 'star-open', 217, '217', 'star-dot', 317, '317', - 'star-open-dot', 18, '18', 'hexagram', 118, '118', - 'hexagram-open', 218, '218', 'hexagram-dot', 318, '318', - 'hexagram-open-dot', 19, '19', 'star-triangle-up', 119, - '119', 'star-triangle-up-open', 219, '219', - 'star-triangle-up-dot', 319, '319', - 'star-triangle-up-open-dot', 20, '20', - 'star-triangle-down', 120, '120', - 'star-triangle-down-open', 220, '220', - 'star-triangle-down-dot', 320, '320', - 'star-triangle-down-open-dot', 21, '21', 'star-square', - 121, '121', 'star-square-open', 221, '221', - 'star-square-dot', 321, '321', 'star-square-open-dot', 22, - '22', 'star-diamond', 122, '122', 'star-diamond-open', - 222, '222', 'star-diamond-dot', 322, '322', - 'star-diamond-open-dot', 23, '23', 'diamond-tall', 123, - '123', 'diamond-tall-open', 223, '223', - 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', - 24, '24', 'diamond-wide', 124, '124', 'diamond-wide-open', - 224, '224', 'diamond-wide-dot', 324, '324', - 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, - '125', 'hourglass-open', 26, '26', 'bowtie', 126, '126', - 'bowtie-open', 27, '27', 'circle-cross', 127, '127', - 'circle-cross-open', 28, '28', 'circle-x', 128, '128', - 'circle-x-open', 29, '29', 'square-cross', 129, '129', - 'square-cross-open', 30, '30', 'square-x', 130, '130', - 'square-x-open', 31, '31', 'diamond-cross', 131, '131', - 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', - 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', - 'cross-thin-open', 34, '34', 'x-thin', 134, '134', - 'x-thin-open', 35, '35', 'asterisk', 135, '135', - 'asterisk-open', 36, '36', 'hash', 136, '136', - 'hash-open', 236, '236', 'hash-dot', 336, '336', - 'hash-open-dot', 37, '37', 'y-up', 137, '137', - 'y-up-open', 38, '38', 'y-down', 138, '138', - 'y-down-open', 39, '39', 'y-left', 139, '139', - 'y-left-open', 40, '40', 'y-right', 140, '140', - 'y-right-open', 41, '41', 'line-ew', 141, '141', - 'line-ew-open', 42, '42', 'line-ns', 142, '142', - 'line-ns-open', 43, '43', 'line-ne', 143, '143', - 'line-ne-open', 44, '44', 'line-nw', 144, '144', - 'line-nw-open', 45, '45', 'arrow-up', 145, '145', - 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', - 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', - 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', - 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', - 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, - '150', 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', - 151, '151', 'arrow-bar-left-open', 52, '52', - 'arrow-bar-right', 152, '152', 'arrow-bar-right-open', 53, - '53', 'arrow', 153, '153', 'arrow-open', 54, '54', - 'arrow-wide', 154, '154', 'arrow-wide-open'] + + - One of the following enumeration values: + + [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', + 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', 'square', + 101, '101', 'square-open', 201, '201', 'square-dot', 301, + '301', 'square-open-dot', 2, '2', 'diamond', 102, '102', + 'diamond-open', 202, '202', 'diamond-dot', 302, '302', + 'diamond-open-dot', 3, '3', 'cross', 103, '103', 'cross-open', + 203, '203', 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', + 'x', 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', + 'x-open-dot', 5, '5', 'triangle-up', 105, '105', + 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, '305', + 'triangle-up-open-dot', 6, '6', 'triangle-down', 106, '106', + 'triangle-down-open', 206, '206', 'triangle-down-dot', 306, + '306', 'triangle-down-open-dot', 7, '7', 'triangle-left', 107, + '107', 'triangle-left-open', 207, '207', 'triangle-left-dot', + 307, '307', 'triangle-left-open-dot', 8, '8', + 'triangle-right', 108, '108', 'triangle-right-open', 208, + '208', 'triangle-right-dot', 308, '308', + 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, '109', + 'triangle-ne-open', 209, '209', 'triangle-ne-dot', 309, '309', + 'triangle-ne-open-dot', 10, '10', 'triangle-se', 110, '110', + 'triangle-se-open', 210, '210', 'triangle-se-dot', 310, '310', + 'triangle-se-open-dot', 11, '11', 'triangle-sw', 111, '111', + 'triangle-sw-open', 211, '211', 'triangle-sw-dot', 311, '311', + 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, '112', + 'triangle-nw-open', 212, '212', 'triangle-nw-dot', 312, '312', + 'triangle-nw-open-dot', 13, '13', 'pentagon', 113, '113', + 'pentagon-open', 213, '213', 'pentagon-dot', 313, '313', + 'pentagon-open-dot', 14, '14', 'hexagon', 114, '114', + 'hexagon-open', 214, '214', 'hexagon-dot', 314, '314', + 'hexagon-open-dot', 15, '15', 'hexagon2', 115, '115', + 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, '315', + 'hexagon2-open-dot', 16, '16', 'octagon', 116, '116', + 'octagon-open', 216, '216', 'octagon-dot', 316, '316', + 'octagon-open-dot', 17, '17', 'star', 117, '117', 'star-open', + 217, '217', 'star-dot', 317, '317', 'star-open-dot', 18, '18', + 'hexagram', 118, '118', 'hexagram-open', 218, '218', + 'hexagram-dot', 318, '318', 'hexagram-open-dot', 19, '19', + 'star-triangle-up', 119, '119', 'star-triangle-up-open', 219, + '219', 'star-triangle-up-dot', 319, '319', + 'star-triangle-up-open-dot', 20, '20', 'star-triangle-down', + 120, '120', 'star-triangle-down-open', 220, '220', + 'star-triangle-down-dot', 320, '320', + 'star-triangle-down-open-dot', 21, '21', 'star-square', 121, + '121', 'star-square-open', 221, '221', 'star-square-dot', 321, + '321', 'star-square-open-dot', 22, '22', 'star-diamond', 122, + '122', 'star-diamond-open', 222, '222', 'star-diamond-dot', + 322, '322', 'star-diamond-open-dot', 23, '23', 'diamond-tall', + 123, '123', 'diamond-tall-open', 223, '223', + 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', 24, + '24', 'diamond-wide', 124, '124', 'diamond-wide-open', 224, + '224', 'diamond-wide-dot', 324, '324', + 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, '125', + 'hourglass-open', 26, '26', 'bowtie', 126, '126', + 'bowtie-open', 27, '27', 'circle-cross', 127, '127', + 'circle-cross-open', 28, '28', 'circle-x', 128, '128', + 'circle-x-open', 29, '29', 'square-cross', 129, '129', + 'square-cross-open', 30, '30', 'square-x', 130, '130', + 'square-x-open', 31, '31', 'diamond-cross', 131, '131', + 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', + 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', + 'cross-thin-open', 34, '34', 'x-thin', 134, '134', + 'x-thin-open', 35, '35', 'asterisk', 135, '135', + 'asterisk-open', 36, '36', 'hash', 136, '136', 'hash-open', + 236, '236', 'hash-dot', 336, '336', 'hash-open-dot', 37, '37', + 'y-up', 137, '137', 'y-up-open', 38, '38', 'y-down', 138, + '138', 'y-down-open', 39, '39', 'y-left', 139, '139', + 'y-left-open', 40, '40', 'y-right', 140, '140', + 'y-right-open', 41, '41', 'line-ew', 141, '141', + 'line-ew-open', 42, '42', 'line-ns', 142, '142', + 'line-ns-open', 43, '43', 'line-ne', 143, '143', + 'line-ne-open', 44, '44', 'line-nw', 144, '144', + 'line-nw-open', 45, '45', 'arrow-up', 145, '145', + 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', + 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', + 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', + 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', + 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, '150', + 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', 151, '151', + 'arrow-bar-left-open', 52, '52', 'arrow-bar-right', 152, + '152', 'arrow-bar-right-open', 53, '53', 'arrow', 153, '153', + 'arrow-open', 54, '54', 'arrow-wide', 154, '154', + 'arrow-wide-open'] Returns ------- diff --git a/plotly/graph_objects/box/_stream.py b/plotly/graph_objects/box/_stream.py index 1e15786c76..3263eea579 100644 --- a/plotly/graph_objects/box/_stream.py +++ b/plotly/graph_objects/box/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/box/hoverlabel/_font.py b/plotly/graph_objects/box/hoverlabel/_font.py index ecf47360e2..e95575f46b 100644 --- a/plotly/graph_objects/box/hoverlabel/_font.py +++ b/plotly/graph_objects/box/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/box/legendgrouptitle/_font.py b/plotly/graph_objects/box/legendgrouptitle/_font.py index 3255714d3d..d0a3ce6fbd 100644 --- a/plotly/graph_objects/box/legendgrouptitle/_font.py +++ b/plotly/graph_objects/box/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/box/marker/_line.py b/plotly/graph_objects/box/marker/_line.py index 90a07d7a3d..c3675a39f8 100644 --- a/plotly/graph_objects/box/marker/_line.py +++ b/plotly/graph_objects/box/marker/_line.py @@ -65,7 +65,8 @@ def outlierwidth(self): points. The 'outlierwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -83,7 +84,8 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/box/selected/_marker.py b/plotly/graph_objects/box/selected/_marker.py index 34d009cc98..08dbb31d5e 100644 --- a/plotly/graph_objects/box/selected/_marker.py +++ b/plotly/graph_objects/box/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -56,7 +57,8 @@ def size(self): Sets the marker size of selected points. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/box/unselected/_marker.py b/plotly/graph_objects/box/unselected/_marker.py index 05cd68c4d2..8179f2175f 100644 --- a/plotly/graph_objects/box/unselected/_marker.py +++ b/plotly/graph_objects/box/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -59,7 +60,8 @@ def size(self): selection exists. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/candlestick/_hoverlabel.py b/plotly/graph_objects/candlestick/_hoverlabel.py index 6ff9169a1b..95dc432346 100644 --- a/plotly/graph_objects/candlestick/_hoverlabel.py +++ b/plotly/graph_objects/candlestick/_hoverlabel.py @@ -29,9 +29,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/candlestick/_line.py b/plotly/graph_objects/candlestick/_line.py index 8b08bd66db..82ce0eac90 100644 --- a/plotly/graph_objects/candlestick/_line.py +++ b/plotly/graph_objects/candlestick/_line.py @@ -18,7 +18,8 @@ def width(self): `increasing.line.width` and `decreasing.line.width`. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/candlestick/_stream.py b/plotly/graph_objects/candlestick/_stream.py index 209ba8966e..81e6b867c3 100644 --- a/plotly/graph_objects/candlestick/_stream.py +++ b/plotly/graph_objects/candlestick/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/candlestick/decreasing/_line.py b/plotly/graph_objects/candlestick/decreasing/_line.py index a7ba10193f..c8cd2eae20 100644 --- a/plotly/graph_objects/candlestick/decreasing/_line.py +++ b/plotly/graph_objects/candlestick/decreasing/_line.py @@ -38,7 +38,8 @@ def width(self): Sets the width (in px) of line bounding the box(es). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/candlestick/hoverlabel/_font.py b/plotly/graph_objects/candlestick/hoverlabel/_font.py index a08474b3e1..68fab1ce5b 100644 --- a/plotly/graph_objects/candlestick/hoverlabel/_font.py +++ b/plotly/graph_objects/candlestick/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/candlestick/increasing/_line.py b/plotly/graph_objects/candlestick/increasing/_line.py index 6f309d6538..b4589b7051 100644 --- a/plotly/graph_objects/candlestick/increasing/_line.py +++ b/plotly/graph_objects/candlestick/increasing/_line.py @@ -38,7 +38,8 @@ def width(self): Sets the width (in px) of line bounding the box(es). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/candlestick/legendgrouptitle/_font.py b/plotly/graph_objects/candlestick/legendgrouptitle/_font.py index 80a325855f..1eec7958ca 100644 --- a/plotly/graph_objects/candlestick/legendgrouptitle/_font.py +++ b/plotly/graph_objects/candlestick/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/carpet/_aaxis.py b/plotly/graph_objects/carpet/_aaxis.py index 3c6a25bcbf..9966dea1ec 100644 --- a/plotly/graph_objects/carpet/_aaxis.py +++ b/plotly/graph_objects/carpet/_aaxis.py @@ -115,8 +115,10 @@ def autorange(self): `range` is provided, then `autorange` is set to False. The 'autorange' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'reversed'] + + - One of the following enumeration values: + + [True, False, 'reversed'] Returns ------- @@ -137,8 +139,10 @@ def autotypenumbers(self): detection. Defaults to layout.autotypenumbers. The 'autotypenumbers' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['convert types', 'strict'] + + - One of the following enumeration values: + + ['convert types', 'strict'] Returns ------- @@ -205,9 +209,11 @@ def categoryorder(self): `categoryarray`. The 'categoryorder' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['trace', 'category ascending', 'category descending', - 'array'] + + - One of the following enumeration values: + + ['trace', 'category ascending', 'category descending', + 'array'] Returns ------- @@ -223,8 +229,10 @@ def categoryorder(self, val): def cheatertype(self): """ The 'cheatertype' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['index', 'value'] + + - One of the following enumeration values: + + ['index', 'value'] Returns ------- @@ -267,7 +275,8 @@ def dtick(self): The stride between grid lines along the axis The 'dtick' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -328,7 +337,7 @@ def endlinewidth(self): The 'endlinewidth' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -350,8 +359,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -434,7 +445,8 @@ def gridwidth(self): Sets the width (in px) of the axis line. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -555,7 +567,8 @@ def linewidth(self): Sets the width (in px) of the axis line. The 'linewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -573,7 +586,8 @@ def minexponent(self): Hide SI prefix for 10^n if |n| is below this number The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -656,7 +670,8 @@ def minorgridwidth(self): Sets the width (in px) of the grid lines. The 'minorgridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -729,8 +744,10 @@ def rangemode(self): non-negative, regardless of the input data. The 'rangemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'tozero', 'nonnegative'] + + - One of the following enumeration values: + + ['normal', 'tozero', 'nonnegative'] Returns ------- @@ -769,8 +786,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -826,8 +845,10 @@ def showticklabels(self): high side, both, or neither side of the axis. The 'showticklabels' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'end', 'both', 'none'] + + - One of the following enumeration values: + + ['start', 'end', 'both', 'none'] Returns ------- @@ -848,8 +869,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -867,8 +890,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -884,7 +909,8 @@ def showticksuffix(self, val): def smoothing(self): """ The 'smoothing' property is a number and may be specified as: - - An int or float in the interval [0, 1.3] + + - An int or float in the interval [0, 1.3] Returns ------- @@ -945,7 +971,7 @@ def startlinewidth(self): The 'startlinewidth' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -963,7 +989,8 @@ def tick0(self): The starting index of grid lines along the axis The 'tick0' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1093,8 +1120,10 @@ def tickformatstopdefaults(self, val): def tickmode(self): """ The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['linear', 'array'] + + - One of the following enumeration values: + + ['linear', 'array'] Returns ------- @@ -1246,8 +1275,10 @@ def type(self): referenced the axis in question. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['-', 'linear', 'date', 'category'] + + - One of the following enumeration values: + + ['-', 'linear', 'date', 'category'] Returns ------- diff --git a/plotly/graph_objects/carpet/_baxis.py b/plotly/graph_objects/carpet/_baxis.py index a5e6b3d433..101a52a842 100644 --- a/plotly/graph_objects/carpet/_baxis.py +++ b/plotly/graph_objects/carpet/_baxis.py @@ -115,8 +115,10 @@ def autorange(self): `range` is provided, then `autorange` is set to False. The 'autorange' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'reversed'] + + - One of the following enumeration values: + + [True, False, 'reversed'] Returns ------- @@ -137,8 +139,10 @@ def autotypenumbers(self): detection. Defaults to layout.autotypenumbers. The 'autotypenumbers' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['convert types', 'strict'] + + - One of the following enumeration values: + + ['convert types', 'strict'] Returns ------- @@ -205,9 +209,11 @@ def categoryorder(self): `categoryarray`. The 'categoryorder' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['trace', 'category ascending', 'category descending', - 'array'] + + - One of the following enumeration values: + + ['trace', 'category ascending', 'category descending', + 'array'] Returns ------- @@ -223,8 +229,10 @@ def categoryorder(self, val): def cheatertype(self): """ The 'cheatertype' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['index', 'value'] + + - One of the following enumeration values: + + ['index', 'value'] Returns ------- @@ -267,7 +275,8 @@ def dtick(self): The stride between grid lines along the axis The 'dtick' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -328,7 +337,7 @@ def endlinewidth(self): The 'endlinewidth' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -350,8 +359,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -434,7 +445,8 @@ def gridwidth(self): Sets the width (in px) of the axis line. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -555,7 +567,8 @@ def linewidth(self): Sets the width (in px) of the axis line. The 'linewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -573,7 +586,8 @@ def minexponent(self): Hide SI prefix for 10^n if |n| is below this number The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -656,7 +670,8 @@ def minorgridwidth(self): Sets the width (in px) of the grid lines. The 'minorgridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -729,8 +744,10 @@ def rangemode(self): non-negative, regardless of the input data. The 'rangemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'tozero', 'nonnegative'] + + - One of the following enumeration values: + + ['normal', 'tozero', 'nonnegative'] Returns ------- @@ -769,8 +786,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -826,8 +845,10 @@ def showticklabels(self): high side, both, or neither side of the axis. The 'showticklabels' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['start', 'end', 'both', 'none'] + + - One of the following enumeration values: + + ['start', 'end', 'both', 'none'] Returns ------- @@ -848,8 +869,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -867,8 +890,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -884,7 +909,8 @@ def showticksuffix(self, val): def smoothing(self): """ The 'smoothing' property is a number and may be specified as: - - An int or float in the interval [0, 1.3] + + - An int or float in the interval [0, 1.3] Returns ------- @@ -945,7 +971,7 @@ def startlinewidth(self): The 'startlinewidth' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -963,7 +989,8 @@ def tick0(self): The starting index of grid lines along the axis The 'tick0' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1093,8 +1120,10 @@ def tickformatstopdefaults(self, val): def tickmode(self): """ The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['linear', 'array'] + + - One of the following enumeration values: + + ['linear', 'array'] Returns ------- @@ -1246,8 +1275,10 @@ def type(self): referenced the axis in question. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['-', 'linear', 'date', 'category'] + + - One of the following enumeration values: + + ['-', 'linear', 'date', 'category'] Returns ------- diff --git a/plotly/graph_objects/carpet/_font.py b/plotly/graph_objects/carpet/_font.py index d67a375503..4770e1e185 100644 --- a/plotly/graph_objects/carpet/_font.py +++ b/plotly/graph_objects/carpet/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/carpet/_stream.py b/plotly/graph_objects/carpet/_stream.py index ae5b5ce32e..48f4f52dee 100644 --- a/plotly/graph_objects/carpet/_stream.py +++ b/plotly/graph_objects/carpet/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/carpet/aaxis/_tickfont.py b/plotly/graph_objects/carpet/aaxis/_tickfont.py index 156fed4c1d..7eaeaf5833 100644 --- a/plotly/graph_objects/carpet/aaxis/_tickfont.py +++ b/plotly/graph_objects/carpet/aaxis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/carpet/aaxis/_title.py b/plotly/graph_objects/carpet/aaxis/_title.py index 534ae3576b..05af694ef0 100644 --- a/plotly/graph_objects/carpet/aaxis/_title.py +++ b/plotly/graph_objects/carpet/aaxis/_title.py @@ -39,7 +39,7 @@ def offset(self): The 'offset' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/carpet/aaxis/title/_font.py b/plotly/graph_objects/carpet/aaxis/title/_font.py index 0be22d45ef..c345d0e908 100644 --- a/plotly/graph_objects/carpet/aaxis/title/_font.py +++ b/plotly/graph_objects/carpet/aaxis/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/carpet/baxis/_tickfont.py b/plotly/graph_objects/carpet/baxis/_tickfont.py index be1a5a559e..c9e065b281 100644 --- a/plotly/graph_objects/carpet/baxis/_tickfont.py +++ b/plotly/graph_objects/carpet/baxis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/carpet/baxis/_title.py b/plotly/graph_objects/carpet/baxis/_title.py index 4fdd80a5bc..657a7905f4 100644 --- a/plotly/graph_objects/carpet/baxis/_title.py +++ b/plotly/graph_objects/carpet/baxis/_title.py @@ -39,7 +39,7 @@ def offset(self): The 'offset' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/carpet/baxis/title/_font.py b/plotly/graph_objects/carpet/baxis/title/_font.py index 7d39c5f710..c647e4c52f 100644 --- a/plotly/graph_objects/carpet/baxis/title/_font.py +++ b/plotly/graph_objects/carpet/baxis/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/carpet/legendgrouptitle/_font.py b/plotly/graph_objects/carpet/legendgrouptitle/_font.py index 49eae3bd2b..ada3ce084a 100644 --- a/plotly/graph_objects/carpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/carpet/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/choropleth/_colorbar.py b/plotly/graph_objects/choropleth/_colorbar.py index 96511e5044..ff73c8855b 100644 --- a/plotly/graph_objects/choropleth/_colorbar.py +++ b/plotly/graph_objects/choropleth/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -655,8 +674,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -676,10 +697,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -721,7 +744,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -745,8 +769,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -785,8 +811,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -898,7 +926,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -942,7 +971,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -963,8 +992,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -982,7 +1013,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1002,8 +1034,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1028,7 +1062,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1049,8 +1083,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1068,7 +1104,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1088,8 +1125,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/choropleth/_hoverlabel.py b/plotly/graph_objects/choropleth/_hoverlabel.py index 09bcf5424c..4424fd8457 100644 --- a/plotly/graph_objects/choropleth/_hoverlabel.py +++ b/plotly/graph_objects/choropleth/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choropleth/_marker.py b/plotly/graph_objects/choropleth/_marker.py index 67ca1a1cf9..ec92d44789 100644 --- a/plotly/graph_objects/choropleth/_marker.py +++ b/plotly/graph_objects/choropleth/_marker.py @@ -35,8 +35,10 @@ def opacity(self): Sets the opacity of the locations. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choropleth/_stream.py b/plotly/graph_objects/choropleth/_stream.py index f6a3669860..e221b79a84 100644 --- a/plotly/graph_objects/choropleth/_stream.py +++ b/plotly/graph_objects/choropleth/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/choropleth/colorbar/_tickfont.py b/plotly/graph_objects/choropleth/colorbar/_tickfont.py index 039c66b8b9..07f8a3f718 100644 --- a/plotly/graph_objects/choropleth/colorbar/_tickfont.py +++ b/plotly/graph_objects/choropleth/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/choropleth/colorbar/_title.py b/plotly/graph_objects/choropleth/colorbar/_title.py index 9bd179c34b..53f7fe1b78 100644 --- a/plotly/graph_objects/choropleth/colorbar/_title.py +++ b/plotly/graph_objects/choropleth/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/choropleth/colorbar/title/_font.py b/plotly/graph_objects/choropleth/colorbar/title/_font.py index 4c8a22a9a5..afb030e225 100644 --- a/plotly/graph_objects/choropleth/colorbar/title/_font.py +++ b/plotly/graph_objects/choropleth/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/choropleth/hoverlabel/_font.py b/plotly/graph_objects/choropleth/hoverlabel/_font.py index 0bc77937e0..b9c0ed8140 100644 --- a/plotly/graph_objects/choropleth/hoverlabel/_font.py +++ b/plotly/graph_objects/choropleth/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choropleth/legendgrouptitle/_font.py b/plotly/graph_objects/choropleth/legendgrouptitle/_font.py index 12e09e40b1..ca2a00871c 100644 --- a/plotly/graph_objects/choropleth/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choropleth/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/choropleth/marker/_line.py b/plotly/graph_objects/choropleth/marker/_line.py index cb874d16eb..8c3e0f88c1 100644 --- a/plotly/graph_objects/choropleth/marker/_line.py +++ b/plotly/graph_objects/choropleth/marker/_line.py @@ -60,8 +60,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choropleth/selected/_marker.py b/plotly/graph_objects/choropleth/selected/_marker.py index abc136f206..5197cebde1 100644 --- a/plotly/graph_objects/choropleth/selected/_marker.py +++ b/plotly/graph_objects/choropleth/selected/_marker.py @@ -16,7 +16,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/choropleth/unselected/_marker.py b/plotly/graph_objects/choropleth/unselected/_marker.py index 8fdd72a36d..1927eec28f 100644 --- a/plotly/graph_objects/choropleth/unselected/_marker.py +++ b/plotly/graph_objects/choropleth/unselected/_marker.py @@ -17,7 +17,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/choroplethmap/_colorbar.py b/plotly/graph_objects/choroplethmap/_colorbar.py index f7ccee0ad2..f0995ba62a 100644 --- a/plotly/graph_objects/choroplethmap/_colorbar.py +++ b/plotly/graph_objects/choroplethmap/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/choroplethmap/_hoverlabel.py b/plotly/graph_objects/choroplethmap/_hoverlabel.py index bea147289d..d19b15711d 100644 --- a/plotly/graph_objects/choroplethmap/_hoverlabel.py +++ b/plotly/graph_objects/choroplethmap/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmap/_marker.py b/plotly/graph_objects/choroplethmap/_marker.py index e73d01b0b0..c3dece2da8 100644 --- a/plotly/graph_objects/choroplethmap/_marker.py +++ b/plotly/graph_objects/choroplethmap/_marker.py @@ -35,8 +35,10 @@ def opacity(self): Sets the opacity of the locations. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmap/_stream.py b/plotly/graph_objects/choroplethmap/_stream.py index 6bd4273349..53ebe042d8 100644 --- a/plotly/graph_objects/choroplethmap/_stream.py +++ b/plotly/graph_objects/choroplethmap/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py b/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py index 3619cd6f56..b89dc1cb21 100644 --- a/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py +++ b/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/choroplethmap/colorbar/_title.py b/plotly/graph_objects/choroplethmap/colorbar/_title.py index e91b2a5638..03e011b151 100644 --- a/plotly/graph_objects/choroplethmap/colorbar/_title.py +++ b/plotly/graph_objects/choroplethmap/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/choroplethmap/colorbar/title/_font.py b/plotly/graph_objects/choroplethmap/colorbar/title/_font.py index 8bfc13c4da..7797eaa079 100644 --- a/plotly/graph_objects/choroplethmap/colorbar/title/_font.py +++ b/plotly/graph_objects/choroplethmap/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/choroplethmap/hoverlabel/_font.py b/plotly/graph_objects/choroplethmap/hoverlabel/_font.py index 852abfdae6..a3a3041f02 100644 --- a/plotly/graph_objects/choroplethmap/hoverlabel/_font.py +++ b/plotly/graph_objects/choroplethmap/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py b/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py index 47a8a01b48..f491ba9e66 100644 --- a/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/choroplethmap/marker/_line.py b/plotly/graph_objects/choroplethmap/marker/_line.py index 7cf279dfed..77c4b2f93f 100644 --- a/plotly/graph_objects/choroplethmap/marker/_line.py +++ b/plotly/graph_objects/choroplethmap/marker/_line.py @@ -60,8 +60,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmap/selected/_marker.py b/plotly/graph_objects/choroplethmap/selected/_marker.py index 03e8bb9b9b..1a139451d8 100644 --- a/plotly/graph_objects/choroplethmap/selected/_marker.py +++ b/plotly/graph_objects/choroplethmap/selected/_marker.py @@ -16,7 +16,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/choroplethmap/unselected/_marker.py b/plotly/graph_objects/choroplethmap/unselected/_marker.py index ad80d3b880..fe5cfd3677 100644 --- a/plotly/graph_objects/choroplethmap/unselected/_marker.py +++ b/plotly/graph_objects/choroplethmap/unselected/_marker.py @@ -17,7 +17,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/_colorbar.py b/plotly/graph_objects/choroplethmapbox/_colorbar.py index 9a56179df6..6b95aed730 100644 --- a/plotly/graph_objects/choroplethmapbox/_colorbar.py +++ b/plotly/graph_objects/choroplethmapbox/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/_hoverlabel.py b/plotly/graph_objects/choroplethmapbox/_hoverlabel.py index bf80839c4e..096f41e4cc 100644 --- a/plotly/graph_objects/choroplethmapbox/_hoverlabel.py +++ b/plotly/graph_objects/choroplethmapbox/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/_marker.py b/plotly/graph_objects/choroplethmapbox/_marker.py index cff9ced343..0cb32ca0d0 100644 --- a/plotly/graph_objects/choroplethmapbox/_marker.py +++ b/plotly/graph_objects/choroplethmapbox/_marker.py @@ -35,8 +35,10 @@ def opacity(self): Sets the opacity of the locations. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/_stream.py b/plotly/graph_objects/choroplethmapbox/_stream.py index 7e8f355703..8fff18d866 100644 --- a/plotly/graph_objects/choroplethmapbox/_stream.py +++ b/plotly/graph_objects/choroplethmapbox/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py b/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py index d302023663..a1bee31f07 100644 --- a/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py +++ b/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/colorbar/_title.py b/plotly/graph_objects/choroplethmapbox/colorbar/_title.py index f9e0b23a62..7ec7878a47 100644 --- a/plotly/graph_objects/choroplethmapbox/colorbar/_title.py +++ b/plotly/graph_objects/choroplethmapbox/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py b/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py index d5ea2c01a1..b144d14312 100644 --- a/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py +++ b/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py b/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py index 4295ab76a1..26dee5fb8a 100644 --- a/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py b/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py index 4dec64fb79..398934b1fa 100644 --- a/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/marker/_line.py b/plotly/graph_objects/choroplethmapbox/marker/_line.py index 941029ef5a..ee3d6f681b 100644 --- a/plotly/graph_objects/choroplethmapbox/marker/_line.py +++ b/plotly/graph_objects/choroplethmapbox/marker/_line.py @@ -60,8 +60,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/selected/_marker.py b/plotly/graph_objects/choroplethmapbox/selected/_marker.py index 53590ff1f6..61d0457d95 100644 --- a/plotly/graph_objects/choroplethmapbox/selected/_marker.py +++ b/plotly/graph_objects/choroplethmapbox/selected/_marker.py @@ -16,7 +16,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/unselected/_marker.py b/plotly/graph_objects/choroplethmapbox/unselected/_marker.py index 2bb0c402c5..ad5a4436e6 100644 --- a/plotly/graph_objects/choroplethmapbox/unselected/_marker.py +++ b/plotly/graph_objects/choroplethmapbox/unselected/_marker.py @@ -17,7 +17,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/cone/_colorbar.py b/plotly/graph_objects/cone/_colorbar.py index 2e7d4a986c..e0b71feb32 100644 --- a/plotly/graph_objects/cone/_colorbar.py +++ b/plotly/graph_objects/cone/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/cone/_hoverlabel.py b/plotly/graph_objects/cone/_hoverlabel.py index 1e6c079f0e..d59782fc3b 100644 --- a/plotly/graph_objects/cone/_hoverlabel.py +++ b/plotly/graph_objects/cone/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/cone/_lighting.py b/plotly/graph_objects/cone/_lighting.py index 3292df234d..33ed706c06 100644 --- a/plotly/graph_objects/cone/_lighting.py +++ b/plotly/graph_objects/cone/_lighting.py @@ -25,7 +25,8 @@ def ambient(self): out the image. The 'ambient' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -44,7 +45,8 @@ def diffuse(self): range of angles. The 'diffuse' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -63,7 +65,8 @@ def facenormalsepsilon(self): from degenerate geometry. The 'facenormalsepsilon' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -83,7 +86,8 @@ def fresnel(self): of the paper (almost 90 degrees), causing shine. The 'fresnel' property is a number and may be specified as: - - An int or float in the interval [0, 5] + + - An int or float in the interval [0, 5] Returns ------- @@ -102,7 +106,8 @@ def roughness(self): and less contrasty the shine. The 'roughness' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -121,7 +126,8 @@ def specular(self): single direction, causing shine. The 'specular' property is a number and may be specified as: - - An int or float in the interval [0, 2] + + - An int or float in the interval [0, 2] Returns ------- @@ -140,7 +146,8 @@ def vertexnormalsepsilon(self): arising from degenerate geometry. The 'vertexnormalsepsilon' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/cone/_lightposition.py b/plotly/graph_objects/cone/_lightposition.py index 84468912ad..48677f4001 100644 --- a/plotly/graph_objects/cone/_lightposition.py +++ b/plotly/graph_objects/cone/_lightposition.py @@ -16,7 +16,8 @@ def x(self): Numeric vector, representing the X coordinate for each vertex. The 'x' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- @@ -34,7 +35,8 @@ def y(self): Numeric vector, representing the Y coordinate for each vertex. The 'y' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- @@ -52,7 +54,8 @@ def z(self): Numeric vector, representing the Z coordinate for each vertex. The 'z' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- diff --git a/plotly/graph_objects/cone/_stream.py b/plotly/graph_objects/cone/_stream.py index 5e438b1222..bb3f718d7d 100644 --- a/plotly/graph_objects/cone/_stream.py +++ b/plotly/graph_objects/cone/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/cone/colorbar/_tickfont.py b/plotly/graph_objects/cone/colorbar/_tickfont.py index e1f3047752..db90faf6dd 100644 --- a/plotly/graph_objects/cone/colorbar/_tickfont.py +++ b/plotly/graph_objects/cone/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/cone/colorbar/_title.py b/plotly/graph_objects/cone/colorbar/_title.py index 14cf34ae98..4e600bae13 100644 --- a/plotly/graph_objects/cone/colorbar/_title.py +++ b/plotly/graph_objects/cone/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/cone/colorbar/title/_font.py b/plotly/graph_objects/cone/colorbar/title/_font.py index c966f8c32e..b175a1a818 100644 --- a/plotly/graph_objects/cone/colorbar/title/_font.py +++ b/plotly/graph_objects/cone/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/cone/hoverlabel/_font.py b/plotly/graph_objects/cone/hoverlabel/_font.py index 20df1b8ab5..0b1710bf1f 100644 --- a/plotly/graph_objects/cone/hoverlabel/_font.py +++ b/plotly/graph_objects/cone/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/cone/legendgrouptitle/_font.py b/plotly/graph_objects/cone/legendgrouptitle/_font.py index d32dcfd644..3ba6839a7a 100644 --- a/plotly/graph_objects/cone/legendgrouptitle/_font.py +++ b/plotly/graph_objects/cone/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/contour/_colorbar.py b/plotly/graph_objects/contour/_colorbar.py index e21636f320..5bbba48e4b 100644 --- a/plotly/graph_objects/contour/_colorbar.py +++ b/plotly/graph_objects/contour/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/contour/_contours.py b/plotly/graph_objects/contour/_contours.py index 1e21654f7f..d550b535f0 100644 --- a/plotly/graph_objects/contour/_contours.py +++ b/plotly/graph_objects/contour/_contours.py @@ -32,8 +32,10 @@ def coloring(self): lines. If "none", no coloring is applied on this trace. The 'coloring' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fill', 'heatmap', 'lines', 'none'] + + - One of the following enumeration values: + + ['fill', 'heatmap', 'lines', 'none'] Returns ------- @@ -53,7 +55,7 @@ def end(self): The 'end' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -123,9 +125,11 @@ def operation(self): transforms. The 'operation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['=', '<', '>=', '>', '<=', '[]', '()', '[)', '(]', '][', - ')(', '](', ')['] + + - One of the following enumeration values: + + ['=', '<', '>=', '>', '<=', '[]', '()', '[)', '(]', '][', + ')(', '](', ')['] Returns ------- @@ -181,7 +185,8 @@ def size(self): Sets the step between each contour level. Must be positive. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -201,7 +206,7 @@ def start(self): The 'start' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -222,8 +227,10 @@ def type(self): specified by the `operation` and `value` parameters. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['levels', 'constraint'] + + - One of the following enumeration values: + + ['levels', 'constraint'] Returns ------- diff --git a/plotly/graph_objects/contour/_hoverlabel.py b/plotly/graph_objects/contour/_hoverlabel.py index c82d18febd..cbd62dc8cc 100644 --- a/plotly/graph_objects/contour/_hoverlabel.py +++ b/plotly/graph_objects/contour/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/contour/_line.py b/plotly/graph_objects/contour/_line.py index f153f0d077..219a90b1e4 100644 --- a/plotly/graph_objects/contour/_line.py +++ b/plotly/graph_objects/contour/_line.py @@ -64,7 +64,8 @@ def smoothing(self): corresponds to no smoothing. The 'smoothing' property is a number and may be specified as: - - An int or float in the interval [0, 1.3] + + - An int or float in the interval [0, 1.3] Returns ------- @@ -84,7 +85,8 @@ def width(self): is "constraint". The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/contour/_stream.py b/plotly/graph_objects/contour/_stream.py index 106f43e2f8..6b60fb16a7 100644 --- a/plotly/graph_objects/contour/_stream.py +++ b/plotly/graph_objects/contour/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/contour/_textfont.py b/plotly/graph_objects/contour/_textfont.py index 96f056fe23..a504a8db4c 100644 --- a/plotly/graph_objects/contour/_textfont.py +++ b/plotly/graph_objects/contour/_textfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/contour/colorbar/_tickfont.py b/plotly/graph_objects/contour/colorbar/_tickfont.py index b7793f5aa7..7407c66832 100644 --- a/plotly/graph_objects/contour/colorbar/_tickfont.py +++ b/plotly/graph_objects/contour/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/contour/colorbar/_title.py b/plotly/graph_objects/contour/colorbar/_title.py index d3808bedaf..faac3892d6 100644 --- a/plotly/graph_objects/contour/colorbar/_title.py +++ b/plotly/graph_objects/contour/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/contour/colorbar/title/_font.py b/plotly/graph_objects/contour/colorbar/title/_font.py index db981d4477..9b2d5703b6 100644 --- a/plotly/graph_objects/contour/colorbar/title/_font.py +++ b/plotly/graph_objects/contour/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/contour/contours/_labelfont.py b/plotly/graph_objects/contour/contours/_labelfont.py index 18f50636cb..7dce2cd5cf 100644 --- a/plotly/graph_objects/contour/contours/_labelfont.py +++ b/plotly/graph_objects/contour/contours/_labelfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/contour/hoverlabel/_font.py b/plotly/graph_objects/contour/hoverlabel/_font.py index 5dbbaf010f..f11cb55d49 100644 --- a/plotly/graph_objects/contour/hoverlabel/_font.py +++ b/plotly/graph_objects/contour/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/contour/legendgrouptitle/_font.py b/plotly/graph_objects/contour/legendgrouptitle/_font.py index 0c045d40bc..7a34cdb91e 100644 --- a/plotly/graph_objects/contour/legendgrouptitle/_font.py +++ b/plotly/graph_objects/contour/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/contourcarpet/_colorbar.py b/plotly/graph_objects/contourcarpet/_colorbar.py index f958dc7ab0..69c3d82783 100644 --- a/plotly/graph_objects/contourcarpet/_colorbar.py +++ b/plotly/graph_objects/contourcarpet/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/contourcarpet/_contours.py b/plotly/graph_objects/contourcarpet/_contours.py index 65abd1c416..ac113ae557 100644 --- a/plotly/graph_objects/contourcarpet/_contours.py +++ b/plotly/graph_objects/contourcarpet/_contours.py @@ -31,8 +31,10 @@ def coloring(self): coloring is applied on this trace. The 'coloring' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fill', 'lines', 'none'] + + - One of the following enumeration values: + + ['fill', 'lines', 'none'] Returns ------- @@ -52,7 +54,7 @@ def end(self): The 'end' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -122,9 +124,11 @@ def operation(self): transforms. The 'operation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['=', '<', '>=', '>', '<=', '[]', '()', '[)', '(]', '][', - ')(', '](', ')['] + + - One of the following enumeration values: + + ['=', '<', '>=', '>', '<=', '[]', '()', '[)', '(]', '][', + ')(', '](', ')['] Returns ------- @@ -180,7 +184,8 @@ def size(self): Sets the step between each contour level. Must be positive. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -200,7 +205,7 @@ def start(self): The 'start' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -221,8 +226,10 @@ def type(self): specified by the `operation` and `value` parameters. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['levels', 'constraint'] + + - One of the following enumeration values: + + ['levels', 'constraint'] Returns ------- diff --git a/plotly/graph_objects/contourcarpet/_line.py b/plotly/graph_objects/contourcarpet/_line.py index a2b76baef1..16c2cba494 100644 --- a/plotly/graph_objects/contourcarpet/_line.py +++ b/plotly/graph_objects/contourcarpet/_line.py @@ -64,7 +64,8 @@ def smoothing(self): corresponds to no smoothing. The 'smoothing' property is a number and may be specified as: - - An int or float in the interval [0, 1.3] + + - An int or float in the interval [0, 1.3] Returns ------- @@ -84,7 +85,8 @@ def width(self): is "constraint". The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/contourcarpet/_stream.py b/plotly/graph_objects/contourcarpet/_stream.py index 9ee95acb5f..56a4a8c644 100644 --- a/plotly/graph_objects/contourcarpet/_stream.py +++ b/plotly/graph_objects/contourcarpet/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py b/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py index e449943f78..1edd71076b 100644 --- a/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py +++ b/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/contourcarpet/colorbar/_title.py b/plotly/graph_objects/contourcarpet/colorbar/_title.py index 57a53740ef..898cdefedd 100644 --- a/plotly/graph_objects/contourcarpet/colorbar/_title.py +++ b/plotly/graph_objects/contourcarpet/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/contourcarpet/colorbar/title/_font.py b/plotly/graph_objects/contourcarpet/colorbar/title/_font.py index d32d51aaed..0974b0893d 100644 --- a/plotly/graph_objects/contourcarpet/colorbar/title/_font.py +++ b/plotly/graph_objects/contourcarpet/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/contourcarpet/contours/_labelfont.py b/plotly/graph_objects/contourcarpet/contours/_labelfont.py index 6123417d38..e209248947 100644 --- a/plotly/graph_objects/contourcarpet/contours/_labelfont.py +++ b/plotly/graph_objects/contourcarpet/contours/_labelfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py b/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py index 1d0147a974..a60da113db 100644 --- a/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/densitymap/_colorbar.py b/plotly/graph_objects/densitymap/_colorbar.py index 2b7211fc4f..51cf51fc9f 100644 --- a/plotly/graph_objects/densitymap/_colorbar.py +++ b/plotly/graph_objects/densitymap/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -655,8 +674,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -676,10 +697,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -721,7 +744,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -745,8 +769,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -785,8 +811,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -898,7 +926,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -942,7 +971,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -963,8 +992,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -982,7 +1013,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1002,8 +1034,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1028,7 +1062,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1049,8 +1083,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1068,7 +1104,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1088,8 +1125,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/densitymap/_hoverlabel.py b/plotly/graph_objects/densitymap/_hoverlabel.py index f9a0775d72..eb06781a3a 100644 --- a/plotly/graph_objects/densitymap/_hoverlabel.py +++ b/plotly/graph_objects/densitymap/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/densitymap/_stream.py b/plotly/graph_objects/densitymap/_stream.py index 7ef7fb642c..e284184c85 100644 --- a/plotly/graph_objects/densitymap/_stream.py +++ b/plotly/graph_objects/densitymap/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/densitymap/colorbar/_tickfont.py b/plotly/graph_objects/densitymap/colorbar/_tickfont.py index 4a3a5c8987..d6822a6a55 100644 --- a/plotly/graph_objects/densitymap/colorbar/_tickfont.py +++ b/plotly/graph_objects/densitymap/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/densitymap/colorbar/_title.py b/plotly/graph_objects/densitymap/colorbar/_title.py index 64634af3cc..5c5c0d72f5 100644 --- a/plotly/graph_objects/densitymap/colorbar/_title.py +++ b/plotly/graph_objects/densitymap/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/densitymap/colorbar/title/_font.py b/plotly/graph_objects/densitymap/colorbar/title/_font.py index 2cf038ede6..f49ee4b8ba 100644 --- a/plotly/graph_objects/densitymap/colorbar/title/_font.py +++ b/plotly/graph_objects/densitymap/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/densitymap/hoverlabel/_font.py b/plotly/graph_objects/densitymap/hoverlabel/_font.py index 6ac4d97c17..c3d8da05cb 100644 --- a/plotly/graph_objects/densitymap/hoverlabel/_font.py +++ b/plotly/graph_objects/densitymap/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/densitymap/legendgrouptitle/_font.py b/plotly/graph_objects/densitymap/legendgrouptitle/_font.py index d1cee28ca0..da705c8a02 100644 --- a/plotly/graph_objects/densitymap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/densitymap/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/densitymapbox/_colorbar.py b/plotly/graph_objects/densitymapbox/_colorbar.py index 9e1011a40f..4abd239f4a 100644 --- a/plotly/graph_objects/densitymapbox/_colorbar.py +++ b/plotly/graph_objects/densitymapbox/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/densitymapbox/_hoverlabel.py b/plotly/graph_objects/densitymapbox/_hoverlabel.py index 75ecf5f1ce..4545506ab6 100644 --- a/plotly/graph_objects/densitymapbox/_hoverlabel.py +++ b/plotly/graph_objects/densitymapbox/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/densitymapbox/_stream.py b/plotly/graph_objects/densitymapbox/_stream.py index 493fea6c8f..75929b3984 100644 --- a/plotly/graph_objects/densitymapbox/_stream.py +++ b/plotly/graph_objects/densitymapbox/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py b/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py index 6a3fb922b4..6fa3f18717 100644 --- a/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py +++ b/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/densitymapbox/colorbar/_title.py b/plotly/graph_objects/densitymapbox/colorbar/_title.py index 1b4d804747..f58aaebf28 100644 --- a/plotly/graph_objects/densitymapbox/colorbar/_title.py +++ b/plotly/graph_objects/densitymapbox/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/densitymapbox/colorbar/title/_font.py b/plotly/graph_objects/densitymapbox/colorbar/title/_font.py index 8a93dd999d..939e45889a 100644 --- a/plotly/graph_objects/densitymapbox/colorbar/title/_font.py +++ b/plotly/graph_objects/densitymapbox/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/densitymapbox/hoverlabel/_font.py b/plotly/graph_objects/densitymapbox/hoverlabel/_font.py index 25e12dd0ad..8d775bbc6a 100644 --- a/plotly/graph_objects/densitymapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/densitymapbox/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py b/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py index ea16e04734..f2e936308f 100644 --- a/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/funnel/_hoverlabel.py b/plotly/graph_objects/funnel/_hoverlabel.py index 6736fee980..1b7aeac446 100644 --- a/plotly/graph_objects/funnel/_hoverlabel.py +++ b/plotly/graph_objects/funnel/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/_insidetextfont.py b/plotly/graph_objects/funnel/_insidetextfont.py index 0719936a77..23df81f961 100644 --- a/plotly/graph_objects/funnel/_insidetextfont.py +++ b/plotly/graph_objects/funnel/_insidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/_marker.py b/plotly/graph_objects/funnel/_marker.py index 9a3ea917bc..e97493e451 100644 --- a/plotly/graph_objects/funnel/_marker.py +++ b/plotly/graph_objects/funnel/_marker.py @@ -83,7 +83,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -106,7 +106,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -128,7 +128,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -307,8 +307,10 @@ def opacity(self): Sets the opacity of the bars. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/_outsidetextfont.py b/plotly/graph_objects/funnel/_outsidetextfont.py index f87224b09b..f07448e6cd 100644 --- a/plotly/graph_objects/funnel/_outsidetextfont.py +++ b/plotly/graph_objects/funnel/_outsidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/_stream.py b/plotly/graph_objects/funnel/_stream.py index 829cc3e303..a063e0cf2d 100644 --- a/plotly/graph_objects/funnel/_stream.py +++ b/plotly/graph_objects/funnel/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/funnel/_textfont.py b/plotly/graph_objects/funnel/_textfont.py index c27949fcfd..93b72bdb7e 100644 --- a/plotly/graph_objects/funnel/_textfont.py +++ b/plotly/graph_objects/funnel/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/connector/_line.py b/plotly/graph_objects/funnel/connector/_line.py index 77017ee4c2..63d9952771 100644 --- a/plotly/graph_objects/funnel/connector/_line.py +++ b/plotly/graph_objects/funnel/connector/_line.py @@ -62,7 +62,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/funnel/hoverlabel/_font.py b/plotly/graph_objects/funnel/hoverlabel/_font.py index 9984ee8694..0e3aa2e3e8 100644 --- a/plotly/graph_objects/funnel/hoverlabel/_font.py +++ b/plotly/graph_objects/funnel/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/legendgrouptitle/_font.py b/plotly/graph_objects/funnel/legendgrouptitle/_font.py index 7753733137..7d2f1c84b9 100644 --- a/plotly/graph_objects/funnel/legendgrouptitle/_font.py +++ b/plotly/graph_objects/funnel/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/funnel/marker/_colorbar.py b/plotly/graph_objects/funnel/marker/_colorbar.py index e5e7f65f50..27962fa6ae 100644 --- a/plotly/graph_objects/funnel/marker/_colorbar.py +++ b/plotly/graph_objects/funnel/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/funnel/marker/_line.py b/plotly/graph_objects/funnel/marker/_line.py index a015be96a2..59f8861d9e 100644 --- a/plotly/graph_objects/funnel/marker/_line.py +++ b/plotly/graph_objects/funnel/marker/_line.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -290,8 +290,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py b/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py index 6a50ba85c0..bb7ef5f2e8 100644 --- a/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/funnel/marker/colorbar/_title.py b/plotly/graph_objects/funnel/marker/colorbar/_title.py index 509841a159..3244e7536a 100644 --- a/plotly/graph_objects/funnel/marker/colorbar/_title.py +++ b/plotly/graph_objects/funnel/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/funnel/marker/colorbar/title/_font.py b/plotly/graph_objects/funnel/marker/colorbar/title/_font.py index 1cc6879702..c384db3bce 100644 --- a/plotly/graph_objects/funnel/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/funnel/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/funnelarea/_domain.py b/plotly/graph_objects/funnelarea/_domain.py index e05d580fdc..d74a5f7724 100644 --- a/plotly/graph_objects/funnelarea/_domain.py +++ b/plotly/graph_objects/funnelarea/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/funnelarea/_hoverlabel.py b/plotly/graph_objects/funnelarea/_hoverlabel.py index b0886e4781..fc65d1f50a 100644 --- a/plotly/graph_objects/funnelarea/_hoverlabel.py +++ b/plotly/graph_objects/funnelarea/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/_insidetextfont.py b/plotly/graph_objects/funnelarea/_insidetextfont.py index cd37d59c49..04fbd9d825 100644 --- a/plotly/graph_objects/funnelarea/_insidetextfont.py +++ b/plotly/graph_objects/funnelarea/_insidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/_stream.py b/plotly/graph_objects/funnelarea/_stream.py index 53eb5c2fe1..5fa40b6c09 100644 --- a/plotly/graph_objects/funnelarea/_stream.py +++ b/plotly/graph_objects/funnelarea/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/funnelarea/_textfont.py b/plotly/graph_objects/funnelarea/_textfont.py index be318e48e7..74b2b66b60 100644 --- a/plotly/graph_objects/funnelarea/_textfont.py +++ b/plotly/graph_objects/funnelarea/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/_title.py b/plotly/graph_objects/funnelarea/_title.py index 2a996f10dd..f428227e2b 100644 --- a/plotly/graph_objects/funnelarea/_title.py +++ b/plotly/graph_objects/funnelarea/_title.py @@ -37,8 +37,10 @@ def position(self): Specifies the location of the `title`. The 'position' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right'] + + - One of the following enumeration values: + + ['top left', 'top center', 'top right'] Returns ------- diff --git a/plotly/graph_objects/funnelarea/hoverlabel/_font.py b/plotly/graph_objects/funnelarea/hoverlabel/_font.py index c078c7781d..cfe0e81847 100644 --- a/plotly/graph_objects/funnelarea/hoverlabel/_font.py +++ b/plotly/graph_objects/funnelarea/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py b/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py index 789123911c..d259ee5742 100644 --- a/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py +++ b/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/funnelarea/marker/_line.py b/plotly/graph_objects/funnelarea/marker/_line.py index 8fe4b4f244..ba812f44e3 100644 --- a/plotly/graph_objects/funnelarea/marker/_line.py +++ b/plotly/graph_objects/funnelarea/marker/_line.py @@ -58,8 +58,10 @@ def width(self): Sets the width (in px) of the line enclosing each sector. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/marker/_pattern.py b/plotly/graph_objects/funnelarea/marker/_pattern.py index 2256681e23..113d948c82 100644 --- a/plotly/graph_objects/funnelarea/marker/_pattern.py +++ b/plotly/graph_objects/funnelarea/marker/_pattern.py @@ -120,7 +120,8 @@ def fgopacity(self): 0.5 when `fillmode` is "overlay". Otherwise, defaults to 1. The 'fgopacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -139,8 +140,10 @@ def fillmode(self): to `bgcolor` or a `fgcolor`. The 'fillmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['replace', 'overlay'] + + - One of the following enumeration values: + + ['replace', 'overlay'] Returns ------- @@ -199,9 +202,12 @@ def shape(self): used for filling the area. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['', '/', '\\', 'x', '-', '|', '+', '.'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['', '/', '\\', 'x', '-', '|', '+', '.'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -238,8 +244,10 @@ def size(self): which corresponds to the interval of repetition of the pattern. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -278,8 +286,10 @@ def solidity(self): shows only the foreground color without pattern. The 'solidity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/title/_font.py b/plotly/graph_objects/funnelarea/title/_font.py index 7a20474917..9944b6f46b 100644 --- a/plotly/graph_objects/funnelarea/title/_font.py +++ b/plotly/graph_objects/funnelarea/title/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/heatmap/_colorbar.py b/plotly/graph_objects/heatmap/_colorbar.py index b29d49eecf..77547dcb03 100644 --- a/plotly/graph_objects/heatmap/_colorbar.py +++ b/plotly/graph_objects/heatmap/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/heatmap/_hoverlabel.py b/plotly/graph_objects/heatmap/_hoverlabel.py index a4d91a73b9..d133945d34 100644 --- a/plotly/graph_objects/heatmap/_hoverlabel.py +++ b/plotly/graph_objects/heatmap/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/heatmap/_stream.py b/plotly/graph_objects/heatmap/_stream.py index 364b296e27..812552e02c 100644 --- a/plotly/graph_objects/heatmap/_stream.py +++ b/plotly/graph_objects/heatmap/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/heatmap/_textfont.py b/plotly/graph_objects/heatmap/_textfont.py index 259b292a18..981e19e5bf 100644 --- a/plotly/graph_objects/heatmap/_textfont.py +++ b/plotly/graph_objects/heatmap/_textfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/heatmap/colorbar/_tickfont.py b/plotly/graph_objects/heatmap/colorbar/_tickfont.py index 31cb137aeb..f032c4dbdb 100644 --- a/plotly/graph_objects/heatmap/colorbar/_tickfont.py +++ b/plotly/graph_objects/heatmap/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/heatmap/colorbar/_title.py b/plotly/graph_objects/heatmap/colorbar/_title.py index e967c610b6..55fc6bbda9 100644 --- a/plotly/graph_objects/heatmap/colorbar/_title.py +++ b/plotly/graph_objects/heatmap/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/heatmap/colorbar/title/_font.py b/plotly/graph_objects/heatmap/colorbar/title/_font.py index 4dff370a45..9d3ee65fc8 100644 --- a/plotly/graph_objects/heatmap/colorbar/title/_font.py +++ b/plotly/graph_objects/heatmap/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/heatmap/hoverlabel/_font.py b/plotly/graph_objects/heatmap/hoverlabel/_font.py index 508c5a3350..d7367e1f6a 100644 --- a/plotly/graph_objects/heatmap/hoverlabel/_font.py +++ b/plotly/graph_objects/heatmap/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/heatmap/legendgrouptitle/_font.py b/plotly/graph_objects/heatmap/legendgrouptitle/_font.py index 9396f92086..7177944d50 100644 --- a/plotly/graph_objects/heatmap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/heatmap/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram/_cumulative.py b/plotly/graph_objects/histogram/_cumulative.py index eae8cab2ad..683ac53cee 100644 --- a/plotly/graph_objects/histogram/_cumulative.py +++ b/plotly/graph_objects/histogram/_cumulative.py @@ -21,8 +21,10 @@ def currentbin(self): half-bin bias, and "half" removes it. The 'currentbin' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['include', 'exclude', 'half'] + + - One of the following enumeration values: + + ['include', 'exclude', 'half'] Returns ------- @@ -43,8 +45,10 @@ def direction(self): decreases from left to right. The 'direction' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['increasing', 'decreasing'] + + - One of the following enumeration values: + + ['increasing', 'decreasing'] Returns ------- diff --git a/plotly/graph_objects/histogram/_error_x.py b/plotly/graph_objects/histogram/_error_x.py index 092390b019..c3cc74ec15 100644 --- a/plotly/graph_objects/histogram/_error_x.py +++ b/plotly/graph_objects/histogram/_error_x.py @@ -166,7 +166,8 @@ def thickness(self): Sets the thickness (in px) of the error bars. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -224,8 +225,10 @@ def type(self): data set `array`. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['percent', 'constant', 'sqrt', 'data'] + + - One of the following enumeration values: + + ['percent', 'constant', 'sqrt', 'data'] Returns ------- @@ -245,7 +248,8 @@ def value(self): corresponding to the lengths of the error bars. The 'value' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -266,7 +270,8 @@ def valueminus(self): (left) direction for vertical (horizontal) bars The 'valueminus' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -303,7 +308,8 @@ def width(self): error bars. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/histogram/_error_y.py b/plotly/graph_objects/histogram/_error_y.py index 44edc06656..e6213d21f3 100644 --- a/plotly/graph_objects/histogram/_error_y.py +++ b/plotly/graph_objects/histogram/_error_y.py @@ -149,7 +149,8 @@ def thickness(self): Sets the thickness (in px) of the error bars. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -207,8 +208,10 @@ def type(self): data set `array`. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['percent', 'constant', 'sqrt', 'data'] + + - One of the following enumeration values: + + ['percent', 'constant', 'sqrt', 'data'] Returns ------- @@ -228,7 +231,8 @@ def value(self): corresponding to the lengths of the error bars. The 'value' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -249,7 +253,8 @@ def valueminus(self): (left) direction for vertical (horizontal) bars The 'valueminus' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -286,7 +291,8 @@ def width(self): error bars. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/histogram/_hoverlabel.py b/plotly/graph_objects/histogram/_hoverlabel.py index c4532ec00d..d368a8ff56 100644 --- a/plotly/graph_objects/histogram/_hoverlabel.py +++ b/plotly/graph_objects/histogram/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/histogram/_insidetextfont.py b/plotly/graph_objects/histogram/_insidetextfont.py index b06ab1f9d2..18d42d5385 100644 --- a/plotly/graph_objects/histogram/_insidetextfont.py +++ b/plotly/graph_objects/histogram/_insidetextfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram/_marker.py b/plotly/graph_objects/histogram/_marker.py index 658a6413fa..c6a0e16a12 100644 --- a/plotly/graph_objects/histogram/_marker.py +++ b/plotly/graph_objects/histogram/_marker.py @@ -85,7 +85,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -108,7 +108,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -130,7 +130,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -330,8 +330,10 @@ def opacity(self): Sets the opacity of the bars. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/histogram/_outsidetextfont.py b/plotly/graph_objects/histogram/_outsidetextfont.py index 51f1c9c3c4..2e617b84b7 100644 --- a/plotly/graph_objects/histogram/_outsidetextfont.py +++ b/plotly/graph_objects/histogram/_outsidetextfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram/_stream.py b/plotly/graph_objects/histogram/_stream.py index b17ee1cff8..fa73e1287d 100644 --- a/plotly/graph_objects/histogram/_stream.py +++ b/plotly/graph_objects/histogram/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/histogram/_textfont.py b/plotly/graph_objects/histogram/_textfont.py index 2884f35acb..820ae25c20 100644 --- a/plotly/graph_objects/histogram/_textfont.py +++ b/plotly/graph_objects/histogram/_textfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram/hoverlabel/_font.py b/plotly/graph_objects/histogram/hoverlabel/_font.py index 60a7a508dc..d8ae18106e 100644 --- a/plotly/graph_objects/histogram/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/histogram/legendgrouptitle/_font.py b/plotly/graph_objects/histogram/legendgrouptitle/_font.py index fa4090d12f..be8b00ec48 100644 --- a/plotly/graph_objects/histogram/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram/marker/_colorbar.py b/plotly/graph_objects/histogram/marker/_colorbar.py index bd8c3926b4..aed44b61bb 100644 --- a/plotly/graph_objects/histogram/marker/_colorbar.py +++ b/plotly/graph_objects/histogram/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/histogram/marker/_line.py b/plotly/graph_objects/histogram/marker/_line.py index 8ffe3cd97f..88923030d2 100644 --- a/plotly/graph_objects/histogram/marker/_line.py +++ b/plotly/graph_objects/histogram/marker/_line.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -290,8 +290,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/histogram/marker/_pattern.py b/plotly/graph_objects/histogram/marker/_pattern.py index 18a57eb3bd..6835dff3ab 100644 --- a/plotly/graph_objects/histogram/marker/_pattern.py +++ b/plotly/graph_objects/histogram/marker/_pattern.py @@ -120,7 +120,8 @@ def fgopacity(self): 0.5 when `fillmode` is "overlay". Otherwise, defaults to 1. The 'fgopacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -139,8 +140,10 @@ def fillmode(self): to `bgcolor` or a `fgcolor`. The 'fillmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['replace', 'overlay'] + + - One of the following enumeration values: + + ['replace', 'overlay'] Returns ------- @@ -199,9 +202,12 @@ def shape(self): used for filling the area. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['', '/', '\\', 'x', '-', '|', '+', '.'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['', '/', '\\', 'x', '-', '|', '+', '.'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -238,8 +244,10 @@ def size(self): which corresponds to the interval of repetition of the pattern. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -278,8 +286,10 @@ def solidity(self): shows only the foreground color without pattern. The 'solidity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py b/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py index a0e554bfdf..08006b5414 100644 --- a/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram/marker/colorbar/_title.py b/plotly/graph_objects/histogram/marker/colorbar/_title.py index aa9059bfdf..b127dda294 100644 --- a/plotly/graph_objects/histogram/marker/colorbar/_title.py +++ b/plotly/graph_objects/histogram/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/histogram/marker/colorbar/title/_font.py b/plotly/graph_objects/histogram/marker/colorbar/title/_font.py index cba9055e16..78584b6575 100644 --- a/plotly/graph_objects/histogram/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram/selected/_marker.py b/plotly/graph_objects/histogram/selected/_marker.py index 05b444cdeb..674a4581e0 100644 --- a/plotly/graph_objects/histogram/selected/_marker.py +++ b/plotly/graph_objects/histogram/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/histogram/unselected/_marker.py b/plotly/graph_objects/histogram/unselected/_marker.py index 8a3e50ed65..199670e17a 100644 --- a/plotly/graph_objects/histogram/unselected/_marker.py +++ b/plotly/graph_objects/histogram/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/histogram2d/_colorbar.py b/plotly/graph_objects/histogram2d/_colorbar.py index 8d0a75018e..4e23b1866b 100644 --- a/plotly/graph_objects/histogram2d/_colorbar.py +++ b/plotly/graph_objects/histogram2d/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/histogram2d/_hoverlabel.py b/plotly/graph_objects/histogram2d/_hoverlabel.py index 3fa609f61f..bdf0a40025 100644 --- a/plotly/graph_objects/histogram2d/_hoverlabel.py +++ b/plotly/graph_objects/histogram2d/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/histogram2d/_stream.py b/plotly/graph_objects/histogram2d/_stream.py index b572eb4de0..dc626d10e6 100644 --- a/plotly/graph_objects/histogram2d/_stream.py +++ b/plotly/graph_objects/histogram2d/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/histogram2d/_textfont.py b/plotly/graph_objects/histogram2d/_textfont.py index 12d26730b7..e331e30b3e 100644 --- a/plotly/graph_objects/histogram2d/_textfont.py +++ b/plotly/graph_objects/histogram2d/_textfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram2d/colorbar/_tickfont.py b/plotly/graph_objects/histogram2d/colorbar/_tickfont.py index f57fcb48da..5ae64ef9f8 100644 --- a/plotly/graph_objects/histogram2d/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram2d/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram2d/colorbar/_title.py b/plotly/graph_objects/histogram2d/colorbar/_title.py index f873d8a932..d649f859d3 100644 --- a/plotly/graph_objects/histogram2d/colorbar/_title.py +++ b/plotly/graph_objects/histogram2d/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/histogram2d/colorbar/title/_font.py b/plotly/graph_objects/histogram2d/colorbar/title/_font.py index 6161d53924..87f893e392 100644 --- a/plotly/graph_objects/histogram2d/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram2d/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram2d/hoverlabel/_font.py b/plotly/graph_objects/histogram2d/hoverlabel/_font.py index 1288c4f030..080f6436db 100644 --- a/plotly/graph_objects/histogram2d/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram2d/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py b/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py index 7d47938acb..5f0a78b491 100644 --- a/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_colorbar.py b/plotly/graph_objects/histogram2dcontour/_colorbar.py index 50e4a79bc2..af8c526a5f 100644 --- a/plotly/graph_objects/histogram2dcontour/_colorbar.py +++ b/plotly/graph_objects/histogram2dcontour/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_contours.py b/plotly/graph_objects/histogram2dcontour/_contours.py index 437c0dbafa..aef0de6749 100644 --- a/plotly/graph_objects/histogram2dcontour/_contours.py +++ b/plotly/graph_objects/histogram2dcontour/_contours.py @@ -32,8 +32,10 @@ def coloring(self): lines. If "none", no coloring is applied on this trace. The 'coloring' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fill', 'heatmap', 'lines', 'none'] + + - One of the following enumeration values: + + ['fill', 'heatmap', 'lines', 'none'] Returns ------- @@ -53,7 +55,7 @@ def end(self): The 'end' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -123,9 +125,11 @@ def operation(self): transforms. The 'operation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['=', '<', '>=', '>', '<=', '[]', '()', '[)', '(]', '][', - ')(', '](', ')['] + + - One of the following enumeration values: + + ['=', '<', '>=', '>', '<=', '[]', '()', '[)', '(]', '][', + ')(', '](', ')['] Returns ------- @@ -181,7 +185,8 @@ def size(self): Sets the step between each contour level. Must be positive. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -201,7 +206,7 @@ def start(self): The 'start' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -222,8 +227,10 @@ def type(self): specified by the `operation` and `value` parameters. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['levels', 'constraint'] + + - One of the following enumeration values: + + ['levels', 'constraint'] Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_hoverlabel.py b/plotly/graph_objects/histogram2dcontour/_hoverlabel.py index 08eaa835d0..ab2484fa05 100644 --- a/plotly/graph_objects/histogram2dcontour/_hoverlabel.py +++ b/plotly/graph_objects/histogram2dcontour/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_line.py b/plotly/graph_objects/histogram2dcontour/_line.py index b82a2b30d1..25bf5e5027 100644 --- a/plotly/graph_objects/histogram2dcontour/_line.py +++ b/plotly/graph_objects/histogram2dcontour/_line.py @@ -64,7 +64,8 @@ def smoothing(self): corresponds to no smoothing. The 'smoothing' property is a number and may be specified as: - - An int or float in the interval [0, 1.3] + + - An int or float in the interval [0, 1.3] Returns ------- @@ -82,7 +83,8 @@ def width(self): Sets the contour line width in (in px) The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_stream.py b/plotly/graph_objects/histogram2dcontour/_stream.py index c4a8a2da7a..9532eac830 100644 --- a/plotly/graph_objects/histogram2dcontour/_stream.py +++ b/plotly/graph_objects/histogram2dcontour/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_textfont.py b/plotly/graph_objects/histogram2dcontour/_textfont.py index 098c5e7cf4..19e95fe7f0 100644 --- a/plotly/graph_objects/histogram2dcontour/_textfont.py +++ b/plotly/graph_objects/histogram2dcontour/_textfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py b/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py index 6a832cb0fe..a00a90d1ae 100644 --- a/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/colorbar/_title.py b/plotly/graph_objects/histogram2dcontour/colorbar/_title.py index 67e83d2a2b..c9fc6af062 100644 --- a/plotly/graph_objects/histogram2dcontour/colorbar/_title.py +++ b/plotly/graph_objects/histogram2dcontour/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py b/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py index 9d281b93b1..3fd491b587 100644 --- a/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py b/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py index 6383a3fa79..54c1050dce 100644 --- a/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py +++ b/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py b/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py index d71d9284a8..a9e43b64d8 100644 --- a/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py b/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py index cf23ade7d2..d45ae8478c 100644 --- a/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/icicle/_domain.py b/plotly/graph_objects/icicle/_domain.py index 1d160d6548..40c4d90da0 100644 --- a/plotly/graph_objects/icicle/_domain.py +++ b/plotly/graph_objects/icicle/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/icicle/_hoverlabel.py b/plotly/graph_objects/icicle/_hoverlabel.py index 8b6c52e755..304d1c8ca5 100644 --- a/plotly/graph_objects/icicle/_hoverlabel.py +++ b/plotly/graph_objects/icicle/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/_insidetextfont.py b/plotly/graph_objects/icicle/_insidetextfont.py index 1bea15c764..4d9d84c8a6 100644 --- a/plotly/graph_objects/icicle/_insidetextfont.py +++ b/plotly/graph_objects/icicle/_insidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/_leaf.py b/plotly/graph_objects/icicle/_leaf.py index 4b72dfd410..f2869343e8 100644 --- a/plotly/graph_objects/icicle/_leaf.py +++ b/plotly/graph_objects/icicle/_leaf.py @@ -17,7 +17,8 @@ def opacity(self): to 1; otherwise it is defaulted to 0.7 The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/icicle/_marker.py b/plotly/graph_objects/icicle/_marker.py index c703919f14..4f9ed01282 100644 --- a/plotly/graph_objects/icicle/_marker.py +++ b/plotly/graph_objects/icicle/_marker.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -103,7 +103,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -124,7 +124,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/icicle/_outsidetextfont.py b/plotly/graph_objects/icicle/_outsidetextfont.py index fae078fad5..7e4b47964c 100644 --- a/plotly/graph_objects/icicle/_outsidetextfont.py +++ b/plotly/graph_objects/icicle/_outsidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/_pathbar.py b/plotly/graph_objects/icicle/_pathbar.py index dc3b0d987b..39ec18361c 100644 --- a/plotly/graph_objects/icicle/_pathbar.py +++ b/plotly/graph_objects/icicle/_pathbar.py @@ -17,8 +17,10 @@ def edgeshape(self): labels. The 'edgeshape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['>', '<', '|', '/', '\\'] + + - One of the following enumeration values: + + ['>', '<', '|', '/', '\\'] Returns ------- @@ -37,8 +39,10 @@ def side(self): should be presented. The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'bottom'] + + - One of the following enumeration values: + + ['top', 'bottom'] Returns ------- @@ -79,7 +83,8 @@ def thickness(self): each side. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [12, inf] + + - An int or float in the interval [12, inf] Returns ------- diff --git a/plotly/graph_objects/icicle/_stream.py b/plotly/graph_objects/icicle/_stream.py index d57f0cd01f..dc6c1a7a18 100644 --- a/plotly/graph_objects/icicle/_stream.py +++ b/plotly/graph_objects/icicle/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/icicle/_textfont.py b/plotly/graph_objects/icicle/_textfont.py index 0942dc3e94..6f617f6b35 100644 --- a/plotly/graph_objects/icicle/_textfont.py +++ b/plotly/graph_objects/icicle/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/_tiling.py b/plotly/graph_objects/icicle/_tiling.py index 2331959106..9a9ac99bf7 100644 --- a/plotly/graph_objects/icicle/_tiling.py +++ b/plotly/graph_objects/icicle/_tiling.py @@ -44,8 +44,10 @@ def orientation(self): `tiling.flip` is "x", the root nodes appear at the right. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['v', 'h'] + + - One of the following enumeration values: + + ['v', 'h'] Returns ------- @@ -63,7 +65,8 @@ def pad(self): Sets the inner padding (in px). The 'pad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/icicle/hoverlabel/_font.py b/plotly/graph_objects/icicle/hoverlabel/_font.py index ea6d266b29..bd136a58be 100644 --- a/plotly/graph_objects/icicle/hoverlabel/_font.py +++ b/plotly/graph_objects/icicle/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/legendgrouptitle/_font.py b/plotly/graph_objects/icicle/legendgrouptitle/_font.py index bcbd7e5ca3..46ead356c1 100644 --- a/plotly/graph_objects/icicle/legendgrouptitle/_font.py +++ b/plotly/graph_objects/icicle/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/icicle/marker/_colorbar.py b/plotly/graph_objects/icicle/marker/_colorbar.py index 1ce3caa41e..f696a81b79 100644 --- a/plotly/graph_objects/icicle/marker/_colorbar.py +++ b/plotly/graph_objects/icicle/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/icicle/marker/_line.py b/plotly/graph_objects/icicle/marker/_line.py index ae6632ac38..fab67d3ff0 100644 --- a/plotly/graph_objects/icicle/marker/_line.py +++ b/plotly/graph_objects/icicle/marker/_line.py @@ -58,8 +58,10 @@ def width(self): Sets the width (in px) of the line enclosing each sector. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/marker/_pattern.py b/plotly/graph_objects/icicle/marker/_pattern.py index f335b645f7..72d11867a1 100644 --- a/plotly/graph_objects/icicle/marker/_pattern.py +++ b/plotly/graph_objects/icicle/marker/_pattern.py @@ -120,7 +120,8 @@ def fgopacity(self): 0.5 when `fillmode` is "overlay". Otherwise, defaults to 1. The 'fgopacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -139,8 +140,10 @@ def fillmode(self): to `bgcolor` or a `fgcolor`. The 'fillmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['replace', 'overlay'] + + - One of the following enumeration values: + + ['replace', 'overlay'] Returns ------- @@ -199,9 +202,12 @@ def shape(self): used for filling the area. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['', '/', '\\', 'x', '-', '|', '+', '.'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['', '/', '\\', 'x', '-', '|', '+', '.'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -238,8 +244,10 @@ def size(self): which corresponds to the interval of repetition of the pattern. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -278,8 +286,10 @@ def solidity(self): shows only the foreground color without pattern. The 'solidity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py b/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py index 6b65471bcf..8c9bfd9a89 100644 --- a/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/icicle/marker/colorbar/_title.py b/plotly/graph_objects/icicle/marker/colorbar/_title.py index d893f51ca1..d6d1a5563e 100644 --- a/plotly/graph_objects/icicle/marker/colorbar/_title.py +++ b/plotly/graph_objects/icicle/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/icicle/marker/colorbar/title/_font.py b/plotly/graph_objects/icicle/marker/colorbar/title/_font.py index 209683a1df..5773a7ad0a 100644 --- a/plotly/graph_objects/icicle/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/icicle/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/icicle/pathbar/_textfont.py b/plotly/graph_objects/icicle/pathbar/_textfont.py index 7011269e70..59e4081b86 100644 --- a/plotly/graph_objects/icicle/pathbar/_textfont.py +++ b/plotly/graph_objects/icicle/pathbar/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/image/_hoverlabel.py b/plotly/graph_objects/image/_hoverlabel.py index e9a317645b..6e9d35e9a6 100644 --- a/plotly/graph_objects/image/_hoverlabel.py +++ b/plotly/graph_objects/image/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/image/_stream.py b/plotly/graph_objects/image/_stream.py index 5bbc921d90..3b32fab4d5 100644 --- a/plotly/graph_objects/image/_stream.py +++ b/plotly/graph_objects/image/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/image/hoverlabel/_font.py b/plotly/graph_objects/image/hoverlabel/_font.py index 5ce4dc71db..f63ef42e14 100644 --- a/plotly/graph_objects/image/hoverlabel/_font.py +++ b/plotly/graph_objects/image/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/image/legendgrouptitle/_font.py b/plotly/graph_objects/image/legendgrouptitle/_font.py index 3f1d31e835..ca486c474b 100644 --- a/plotly/graph_objects/image/legendgrouptitle/_font.py +++ b/plotly/graph_objects/image/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/indicator/_delta.py b/plotly/graph_objects/indicator/_delta.py index 30fa90a933..0c4d25465b 100644 --- a/plotly/graph_objects/indicator/_delta.py +++ b/plotly/graph_objects/indicator/_delta.py @@ -85,8 +85,10 @@ def position(self): Sets the position of delta with respect to the number. The 'position' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'bottom', 'left', 'right'] + + - One of the following enumeration values: + + ['top', 'bottom', 'left', 'right'] Returns ------- @@ -125,7 +127,7 @@ def reference(self): The 'reference' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/indicator/_domain.py b/plotly/graph_objects/indicator/_domain.py index 344a3f25db..60bc878c90 100644 --- a/plotly/graph_objects/indicator/_domain.py +++ b/plotly/graph_objects/indicator/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/indicator/_gauge.py b/plotly/graph_objects/indicator/_gauge.py index a1b76735ee..548e6ea82b 100644 --- a/plotly/graph_objects/indicator/_gauge.py +++ b/plotly/graph_objects/indicator/_gauge.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) of the border enclosing the gauge. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -128,8 +129,10 @@ def shape(self): Set the shape of the gauge The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['angular', 'bullet'] + + - One of the following enumeration values: + + ['angular', 'bullet'] Returns ------- diff --git a/plotly/graph_objects/indicator/_stream.py b/plotly/graph_objects/indicator/_stream.py index 0f8288568f..6a3373c284 100644 --- a/plotly/graph_objects/indicator/_stream.py +++ b/plotly/graph_objects/indicator/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/indicator/_title.py b/plotly/graph_objects/indicator/_title.py index 2315ec9d4f..0954aa32d0 100644 --- a/plotly/graph_objects/indicator/_title.py +++ b/plotly/graph_objects/indicator/_title.py @@ -18,8 +18,10 @@ def align(self): right. The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- diff --git a/plotly/graph_objects/indicator/delta/_font.py b/plotly/graph_objects/indicator/delta/_font.py index f1de630996..1f1bb7f3bd 100644 --- a/plotly/graph_objects/indicator/delta/_font.py +++ b/plotly/graph_objects/indicator/delta/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/_axis.py b/plotly/graph_objects/indicator/gauge/_axis.py index ff454f8fae..2e22352aad 100644 --- a/plotly/graph_objects/indicator/gauge/_axis.py +++ b/plotly/graph_objects/indicator/gauge/_axis.py @@ -87,8 +87,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -132,7 +134,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -220,8 +223,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -260,8 +265,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -279,8 +286,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -483,7 +492,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -507,8 +517,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -547,8 +559,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -660,7 +674,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/_bar.py b/plotly/graph_objects/indicator/gauge/_bar.py index b2e29b1d3a..eef23860d1 100644 --- a/plotly/graph_objects/indicator/gauge/_bar.py +++ b/plotly/graph_objects/indicator/gauge/_bar.py @@ -58,7 +58,8 @@ def thickness(self): thickness of the gauge. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/_step.py b/plotly/graph_objects/indicator/gauge/_step.py index 81571c8880..898d9f1837 100644 --- a/plotly/graph_objects/indicator/gauge/_step.py +++ b/plotly/graph_objects/indicator/gauge/_step.py @@ -136,7 +136,8 @@ def thickness(self): thickness of the gauge. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/_threshold.py b/plotly/graph_objects/indicator/gauge/_threshold.py index 39d696b2e5..fab701816e 100644 --- a/plotly/graph_objects/indicator/gauge/_threshold.py +++ b/plotly/graph_objects/indicator/gauge/_threshold.py @@ -36,7 +36,8 @@ def thickness(self): thickness of the gauge. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -55,7 +56,7 @@ def value(self): The 'value' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/axis/_tickfont.py b/plotly/graph_objects/indicator/gauge/axis/_tickfont.py index f4cb654127..a8f413d646 100644 --- a/plotly/graph_objects/indicator/gauge/axis/_tickfont.py +++ b/plotly/graph_objects/indicator/gauge/axis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/bar/_line.py b/plotly/graph_objects/indicator/gauge/bar/_line.py index b6f1514245..62bec2f28f 100644 --- a/plotly/graph_objects/indicator/gauge/bar/_line.py +++ b/plotly/graph_objects/indicator/gauge/bar/_line.py @@ -38,7 +38,8 @@ def width(self): Sets the width (in px) of the line enclosing each sector. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/step/_line.py b/plotly/graph_objects/indicator/gauge/step/_line.py index 6b1f56d87e..454d9ea5ec 100644 --- a/plotly/graph_objects/indicator/gauge/step/_line.py +++ b/plotly/graph_objects/indicator/gauge/step/_line.py @@ -38,7 +38,8 @@ def width(self): Sets the width (in px) of the line enclosing each sector. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/threshold/_line.py b/plotly/graph_objects/indicator/gauge/threshold/_line.py index 472c15a413..baeadde833 100644 --- a/plotly/graph_objects/indicator/gauge/threshold/_line.py +++ b/plotly/graph_objects/indicator/gauge/threshold/_line.py @@ -38,7 +38,8 @@ def width(self): Sets the width (in px) of the threshold line. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/indicator/legendgrouptitle/_font.py b/plotly/graph_objects/indicator/legendgrouptitle/_font.py index 2e611911c4..ce991c6660 100644 --- a/plotly/graph_objects/indicator/legendgrouptitle/_font.py +++ b/plotly/graph_objects/indicator/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/indicator/number/_font.py b/plotly/graph_objects/indicator/number/_font.py index 4880c91119..cee21b82d8 100644 --- a/plotly/graph_objects/indicator/number/_font.py +++ b/plotly/graph_objects/indicator/number/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/indicator/title/_font.py b/plotly/graph_objects/indicator/title/_font.py index 8b8cb6c937..015d802a3a 100644 --- a/plotly/graph_objects/indicator/title/_font.py +++ b/plotly/graph_objects/indicator/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/isosurface/_colorbar.py b/plotly/graph_objects/isosurface/_colorbar.py index cef04117e2..e30d17efdb 100644 --- a/plotly/graph_objects/isosurface/_colorbar.py +++ b/plotly/graph_objects/isosurface/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -655,8 +674,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -676,10 +697,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -721,7 +744,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -745,8 +769,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -785,8 +811,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -898,7 +926,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -942,7 +971,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -963,8 +992,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -982,7 +1013,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1002,8 +1034,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1028,7 +1062,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1049,8 +1083,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1068,7 +1104,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1088,8 +1125,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/isosurface/_contour.py b/plotly/graph_objects/isosurface/_contour.py index 8a4b68853f..4c656a3928 100644 --- a/plotly/graph_objects/isosurface/_contour.py +++ b/plotly/graph_objects/isosurface/_contour.py @@ -56,7 +56,8 @@ def width(self): Sets the width of the contour lines. The 'width' property is a number and may be specified as: - - An int or float in the interval [1, 16] + + - An int or float in the interval [1, 16] Returns ------- diff --git a/plotly/graph_objects/isosurface/_hoverlabel.py b/plotly/graph_objects/isosurface/_hoverlabel.py index 0e1f4ad3d4..e95c505f25 100644 --- a/plotly/graph_objects/isosurface/_hoverlabel.py +++ b/plotly/graph_objects/isosurface/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/isosurface/_lighting.py b/plotly/graph_objects/isosurface/_lighting.py index 0069991100..add9eae0e8 100644 --- a/plotly/graph_objects/isosurface/_lighting.py +++ b/plotly/graph_objects/isosurface/_lighting.py @@ -25,7 +25,8 @@ def ambient(self): out the image. The 'ambient' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -44,7 +45,8 @@ def diffuse(self): range of angles. The 'diffuse' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -63,7 +65,8 @@ def facenormalsepsilon(self): from degenerate geometry. The 'facenormalsepsilon' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -83,7 +86,8 @@ def fresnel(self): of the paper (almost 90 degrees), causing shine. The 'fresnel' property is a number and may be specified as: - - An int or float in the interval [0, 5] + + - An int or float in the interval [0, 5] Returns ------- @@ -102,7 +106,8 @@ def roughness(self): and less contrasty the shine. The 'roughness' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -121,7 +126,8 @@ def specular(self): single direction, causing shine. The 'specular' property is a number and may be specified as: - - An int or float in the interval [0, 2] + + - An int or float in the interval [0, 2] Returns ------- @@ -140,7 +146,8 @@ def vertexnormalsepsilon(self): arising from degenerate geometry. The 'vertexnormalsepsilon' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/isosurface/_lightposition.py b/plotly/graph_objects/isosurface/_lightposition.py index e97807ab77..25ac6d90b5 100644 --- a/plotly/graph_objects/isosurface/_lightposition.py +++ b/plotly/graph_objects/isosurface/_lightposition.py @@ -16,7 +16,8 @@ def x(self): Numeric vector, representing the X coordinate for each vertex. The 'x' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- @@ -34,7 +35,8 @@ def y(self): Numeric vector, representing the Y coordinate for each vertex. The 'y' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- @@ -52,7 +54,8 @@ def z(self): Numeric vector, representing the Z coordinate for each vertex. The 'z' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- diff --git a/plotly/graph_objects/isosurface/_spaceframe.py b/plotly/graph_objects/isosurface/_spaceframe.py index db178cef55..ea6e91ac3d 100644 --- a/plotly/graph_objects/isosurface/_spaceframe.py +++ b/plotly/graph_objects/isosurface/_spaceframe.py @@ -20,7 +20,8 @@ def fill(self): sued to have entirely closed areas (in case of using 1). The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/isosurface/_stream.py b/plotly/graph_objects/isosurface/_stream.py index b3ded8a205..84840c8d15 100644 --- a/plotly/graph_objects/isosurface/_stream.py +++ b/plotly/graph_objects/isosurface/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/isosurface/_surface.py b/plotly/graph_objects/isosurface/_surface.py index cba429f1aa..6e7eba9dd3 100644 --- a/plotly/graph_objects/isosurface/_surface.py +++ b/plotly/graph_objects/isosurface/_surface.py @@ -40,7 +40,8 @@ def fill(self): allow the creation of openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/isosurface/caps/_x.py b/plotly/graph_objects/isosurface/caps/_x.py index 6fcac5373d..9b24eb21c1 100644 --- a/plotly/graph_objects/isosurface/caps/_x.py +++ b/plotly/graph_objects/isosurface/caps/_x.py @@ -19,7 +19,8 @@ def fill(self): the creation of openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/isosurface/caps/_y.py b/plotly/graph_objects/isosurface/caps/_y.py index f0444125f6..88ff82d511 100644 --- a/plotly/graph_objects/isosurface/caps/_y.py +++ b/plotly/graph_objects/isosurface/caps/_y.py @@ -19,7 +19,8 @@ def fill(self): the creation of openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/isosurface/caps/_z.py b/plotly/graph_objects/isosurface/caps/_z.py index a4fe5cca52..990dab695a 100644 --- a/plotly/graph_objects/isosurface/caps/_z.py +++ b/plotly/graph_objects/isosurface/caps/_z.py @@ -19,7 +19,8 @@ def fill(self): the creation of openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/isosurface/colorbar/_tickfont.py b/plotly/graph_objects/isosurface/colorbar/_tickfont.py index df70e4a385..41b7ceb246 100644 --- a/plotly/graph_objects/isosurface/colorbar/_tickfont.py +++ b/plotly/graph_objects/isosurface/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/isosurface/colorbar/_title.py b/plotly/graph_objects/isosurface/colorbar/_title.py index c2fd34389c..24c2e1b0e1 100644 --- a/plotly/graph_objects/isosurface/colorbar/_title.py +++ b/plotly/graph_objects/isosurface/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/isosurface/colorbar/title/_font.py b/plotly/graph_objects/isosurface/colorbar/title/_font.py index c3d1fc9ac4..8dbca063fe 100644 --- a/plotly/graph_objects/isosurface/colorbar/title/_font.py +++ b/plotly/graph_objects/isosurface/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/isosurface/hoverlabel/_font.py b/plotly/graph_objects/isosurface/hoverlabel/_font.py index 103ae2087c..90067280a8 100644 --- a/plotly/graph_objects/isosurface/hoverlabel/_font.py +++ b/plotly/graph_objects/isosurface/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/isosurface/legendgrouptitle/_font.py b/plotly/graph_objects/isosurface/legendgrouptitle/_font.py index abc478d096..837a2239f0 100644 --- a/plotly/graph_objects/isosurface/legendgrouptitle/_font.py +++ b/plotly/graph_objects/isosurface/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/isosurface/slices/_x.py b/plotly/graph_objects/isosurface/slices/_x.py index a29464487d..b189237def 100644 --- a/plotly/graph_objects/isosurface/slices/_x.py +++ b/plotly/graph_objects/isosurface/slices/_x.py @@ -19,7 +19,8 @@ def fill(self): the creation of openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/isosurface/slices/_y.py b/plotly/graph_objects/isosurface/slices/_y.py index 1a1cb5da7c..981e1063b0 100644 --- a/plotly/graph_objects/isosurface/slices/_y.py +++ b/plotly/graph_objects/isosurface/slices/_y.py @@ -19,7 +19,8 @@ def fill(self): the creation of openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/isosurface/slices/_z.py b/plotly/graph_objects/isosurface/slices/_z.py index a16267a8ec..c8ec74f416 100644 --- a/plotly/graph_objects/isosurface/slices/_z.py +++ b/plotly/graph_objects/isosurface/slices/_z.py @@ -19,7 +19,8 @@ def fill(self): the creation of openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/layout/_activeselection.py b/plotly/graph_objects/layout/_activeselection.py index ffb4cda125..39db42253d 100644 --- a/plotly/graph_objects/layout/_activeselection.py +++ b/plotly/graph_objects/layout/_activeselection.py @@ -38,7 +38,8 @@ def opacity(self): Sets the opacity of the active selection. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/layout/_activeshape.py b/plotly/graph_objects/layout/_activeshape.py index a27f1e8d5f..c46f2e76d1 100644 --- a/plotly/graph_objects/layout/_activeshape.py +++ b/plotly/graph_objects/layout/_activeshape.py @@ -38,7 +38,8 @@ def opacity(self): Sets the opacity of the active shape. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/layout/_annotation.py b/plotly/graph_objects/layout/_annotation.py index 96a546e488..fefb7677b1 100644 --- a/plotly/graph_objects/layout/_annotation.py +++ b/plotly/graph_objects/layout/_annotation.py @@ -63,8 +63,10 @@ def align(self): set to override the text width. The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -146,7 +148,8 @@ def arrowsize(self): wide as the line. The 'arrowsize' property is a number and may be specified as: - - An int or float in the interval [0.3, inf] + + - An int or float in the interval [0.3, inf] Returns ------- @@ -164,7 +167,8 @@ def arrowwidth(self): Sets the width (in px) of annotation arrow line. The 'arrowwidth' property is a number and may be specified as: - - An int or float in the interval [0.1, inf] + + - An int or float in the interval [0.1, inf] Returns ------- @@ -223,10 +227,14 @@ def axref(self): offset for an annotated point. The 'axref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['pixel'] - - A string that matches one of the following regular expressions: - ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + ['pixel'] + + - A string that matches one of the following regular expressions: + + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -285,10 +293,14 @@ def ayref(self): offset for an annotated point. The 'ayref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['pixel'] - - A string that matches one of the following regular expressions: - ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + ['pixel'] + + - A string that matches one of the following regular expressions: + + ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -351,7 +363,8 @@ def borderpad(self): border. The 'borderpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -370,7 +383,8 @@ def borderwidth(self): `text`. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -422,8 +436,10 @@ def clicktoshow(self): `xclick` and `yclick`. The 'clicktoshow' property is an enumeration that may be specified as: - - One of the following enumeration values: - [False, 'onoff', 'onout'] + + - One of the following enumeration values: + + [False, 'onoff', 'onout'] Returns ------- @@ -463,7 +479,8 @@ def height(self): the text set the box height. Taller text will be clipped. The 'height' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -545,7 +562,8 @@ def opacity(self): Sets the opacity of the annotation (text + arrow). The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -587,7 +605,8 @@ def standoff(self): / `yshift` which moves everything by this amount. The 'standoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -626,7 +645,8 @@ def startarrowsize(self): wide as the line. The 'startarrowsize' property is a number and may be specified as: - - An int or float in the interval [0.3, inf] + + - An int or float in the interval [0.3, inf] Returns ------- @@ -648,7 +668,8 @@ def startstandoff(self): `xshift` / `yshift` which moves everything by this amount. The 'startstandoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -738,8 +759,10 @@ def valign(self): text height. The 'valign' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -777,7 +800,8 @@ def width(self): is no automatic wrapping; use
to start a new line. The 'width' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -826,8 +850,10 @@ def xanchor(self): corresponds to the closest side. The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'left', 'center', 'right'] + + - One of the following enumeration values: + + ['auto', 'left', 'center', 'right'] Returns ------- @@ -873,10 +899,14 @@ def xref(self): left and the right of the domain of the second x axis. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['paper'] - - A string that matches one of the following regular expressions: - ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + ['paper'] + + - A string that matches one of the following regular expressions: + + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -896,7 +926,7 @@ def xshift(self): The 'xshift' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -945,8 +975,10 @@ def yanchor(self): to the closest side. The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['auto', 'top', 'middle', 'bottom'] Returns ------- @@ -992,10 +1024,14 @@ def yref(self): bottom and the top of the domain of the second y axis. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['paper'] - - A string that matches one of the following regular expressions: - ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + ['paper'] + + - A string that matches one of the following regular expressions: + + ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -1015,7 +1051,7 @@ def yshift(self): The 'yshift' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/_coloraxis.py b/plotly/graph_objects/layout/_coloraxis.py index 609a134b7d..f543ca66c0 100644 --- a/plotly/graph_objects/layout/_coloraxis.py +++ b/plotly/graph_objects/layout/_coloraxis.py @@ -73,7 +73,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -95,7 +95,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -116,7 +116,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/_font.py b/plotly/graph_objects/layout/_font.py index 6185103ab0..c75edab590 100644 --- a/plotly/graph_objects/layout/_font.py +++ b/plotly/graph_objects/layout/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/_geo.py b/plotly/graph_objects/layout/_geo.py index cc9088507f..be04abd971 100644 --- a/plotly/graph_objects/layout/_geo.py +++ b/plotly/graph_objects/layout/_geo.py @@ -112,7 +112,8 @@ def coastlinewidth(self): Sets the coastline stroke width (in px). The 'coastlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -152,7 +153,8 @@ def countrywidth(self): Sets line width (in px) of the country boundaries. The 'countrywidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -201,8 +203,10 @@ def fitbounds(self): computations, Defaults to False. The 'fitbounds' property is an enumeration that may be specified as: - - One of the following enumeration values: - [False, 'locations', 'geojson'] + + - One of the following enumeration values: + + [False, 'locations', 'geojson'] Returns ------- @@ -242,7 +246,8 @@ def framewidth(self): Sets the stroke width (in px) of the frame. The 'framewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -385,8 +390,10 @@ def resolution(self): 1:110,000,000. The 'resolution' property is an enumeration that may be specified as: - - One of the following enumeration values: - [110, 50] + + - One of the following enumeration values: + + [110, 50] Returns ------- @@ -426,7 +433,8 @@ def riverwidth(self): Sets the stroke width (in px) of the rivers. The 'riverwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -444,9 +452,11 @@ def scope(self): Set the scope of the map. The 'scope' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['africa', 'asia', 'europe', 'north america', 'south - america', 'usa', 'world'] + + - One of the following enumeration values: + + ['africa', 'asia', 'europe', 'north america', 'south america', + 'usa', 'world'] Returns ------- @@ -631,7 +641,8 @@ def subunitwidth(self): Sets the stroke width (in px) of the subunits boundaries. The 'subunitwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/_grid.py b/plotly/graph_objects/layout/_grid.py index cfc4fa25ad..f6c1835566 100644 --- a/plotly/graph_objects/layout/_grid.py +++ b/plotly/graph_objects/layout/_grid.py @@ -77,8 +77,10 @@ def pattern(self): iterating rows according to `roworder`. The 'pattern' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['independent', 'coupled'] + + - One of the following enumeration values: + + ['independent', 'coupled'] Returns ------- @@ -97,8 +99,10 @@ def roworder(self): always enumerated from left to right. The 'roworder' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top to bottom', 'bottom to top'] + + - One of the following enumeration values: + + ['top to bottom', 'bottom to top'] Returns ------- @@ -144,15 +148,18 @@ def subplots(self): using the `gridcell` attribute. The 'subplots' property is an info array that may be specified as: - + * a 2D list where: - - The 'subplots\[i\]\[j\]' property is an enumeration that may be specified as: - - One of the following enumeration values: + + The 'subplots\\[i\\]\\[j\\]' property is an enumeration that may be specified as: + + - One of the following enumeration values: + [''] - - A string that matches one of the following regular expressions: - ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?y(\\[2-9\\]|\\[1-9\\]\ - \[0-9\\]+)?$'] + + - A string that matches one of the following regular expressions: + + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?$'] Returns ------- @@ -175,11 +182,17 @@ def xaxes(self): IDs. The 'xaxes' property is an info array that may be specified as: + * a list of elements where: - The 'xaxes[i]' property is an enumeration that may be specified as: - - One of the following enumeration values: + + The 'xaxes[i]' property is an enumeration that may be specified as: + + - One of the following enumeration values: + [''] - - A string that matches one of the following regular expressions: + + - A string that matches one of the following regular expressions: + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns @@ -200,7 +213,8 @@ def xgap(self): coupled-axes grids and 0.2 for independent grids. The 'xgap' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -220,8 +234,10 @@ def xside(self): each x axis is used in. "top" and "top plot" are similar. The 'xside' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['bottom', 'bottom plot', 'top plot', 'top'] + + - One of the following enumeration values: + + ['bottom', 'bottom plot', 'top plot', 'top'] Returns ------- @@ -244,11 +260,17 @@ def yaxes(self): IDs. The 'yaxes' property is an info array that may be specified as: + * a list of elements where: - The 'yaxes[i]' property is an enumeration that may be specified as: - - One of the following enumeration values: + + The 'yaxes[i]' property is an enumeration that may be specified as: + + - One of the following enumeration values: + [''] - - A string that matches one of the following regular expressions: + + - A string that matches one of the following regular expressions: + ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns @@ -269,7 +291,8 @@ def ygap(self): coupled-axes grids and 0.3 for independent grids. The 'ygap' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -290,8 +313,10 @@ def yside(self): similar. The 'yside' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'left plot', 'right plot', 'right'] + + - One of the following enumeration values: + + ['left', 'left plot', 'right plot', 'right'] Returns ------- diff --git a/plotly/graph_objects/layout/_hoverlabel.py b/plotly/graph_objects/layout/_hoverlabel.py index a8304fcef5..7ff85eaea1 100644 --- a/plotly/graph_objects/layout/_hoverlabel.py +++ b/plotly/graph_objects/layout/_hoverlabel.py @@ -25,8 +25,10 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] + + - One of the following enumeration values: + + ['left', 'right', 'auto'] Returns ------- diff --git a/plotly/graph_objects/layout/_image.py b/plotly/graph_objects/layout/_image.py index fbb45e0c7d..1271b6d935 100644 --- a/plotly/graph_objects/layout/_image.py +++ b/plotly/graph_objects/layout/_image.py @@ -34,8 +34,10 @@ def layer(self): the entire plot area. The 'layer' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['below', 'above'] + + - One of the following enumeration values: + + ['below', 'above'] Returns ------- @@ -78,7 +80,8 @@ def opacity(self): Sets the opacity of the image. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -101,7 +104,7 @@ def sizex(self): The 'sizex' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -124,7 +127,7 @@ def sizey(self): The 'sizey' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -142,8 +145,10 @@ def sizing(self): Specifies which dimension of the image to constrain. The 'sizing' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fill', 'contain', 'stretch'] + + - One of the following enumeration values: + + ['fill', 'contain', 'stretch'] Returns ------- @@ -250,8 +255,10 @@ def xanchor(self): Sets the anchor for the x position The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -279,10 +286,14 @@ def xref(self): left and the right of the domain of the second x axis. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['paper'] - - A string that matches one of the following regular expressions: - ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + ['paper'] + + - A string that matches one of the following regular expressions: + + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -319,8 +330,10 @@ def yanchor(self): Sets the anchor for the y position. The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -348,10 +361,14 @@ def yref(self): bottom and the top of the domain of the second y axis. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['paper'] - - A string that matches one of the following regular expressions: - ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + ['paper'] + + - A string that matches one of the following regular expressions: + + ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- diff --git a/plotly/graph_objects/layout/_legend.py b/plotly/graph_objects/layout/_legend.py index 08cf773849..c4eb4eaa63 100644 --- a/plotly/graph_objects/layout/_legend.py +++ b/plotly/graph_objects/layout/_legend.py @@ -89,7 +89,8 @@ def borderwidth(self): Sets the width (in px) of the border enclosing the legend. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -109,7 +110,8 @@ def entrywidth(self): to "pixels". The 'entrywidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -127,8 +129,10 @@ def entrywidthmode(self): Determines what entrywidth means. The 'entrywidthmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -171,8 +175,10 @@ def groupclick(self): graph. The 'groupclick' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['toggleitem', 'togglegroup'] + + - One of the following enumeration values: + + ['toggleitem', 'togglegroup'] Returns ------- @@ -212,7 +218,8 @@ def indentation(self): Sets the indentation (in px) of the legend entries. The 'indentation' property is a number and may be specified as: - - An int or float in the interval [-15, inf] + + - An int or float in the interval [-15, inf] Returns ------- @@ -233,8 +240,10 @@ def itemclick(self): False disables legend item click interactions. The 'itemclick' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['toggle', 'toggleothers', False] + + - One of the following enumeration values: + + ['toggle', 'toggleothers', False] Returns ------- @@ -256,8 +265,10 @@ def itemdoubleclick(self): interactions. The 'itemdoubleclick' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['toggle', 'toggleothers', False] + + - One of the following enumeration values: + + ['toggle', 'toggleothers', False] Returns ------- @@ -277,8 +288,10 @@ def itemsizing(self): independent of the symbol size on the graph. The 'itemsizing' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['trace', 'constant'] + + - One of the following enumeration values: + + ['trace', 'constant'] Returns ------- @@ -297,7 +310,8 @@ def itemwidth(self): other than the title.text). The 'itemwidth' property is a number and may be specified as: - - An int or float in the interval [30, inf] + + - An int or float in the interval [30, inf] Returns ------- @@ -322,7 +336,8 @@ def maxheight(self): `"paper"`, where the reference height is the plot height. The 'maxheight' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -340,8 +355,10 @@ def orientation(self): Sets the orientation of the legend. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['v', 'h'] + + - One of the following enumeration values: + + ['v', 'h'] Returns ------- @@ -379,7 +396,8 @@ def tracegroupgap(self): groups. The 'tracegroupgap' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -443,8 +461,10 @@ def valign(self): their associated text. The 'valign' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -487,7 +507,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -510,8 +530,10 @@ def xanchor(self): legends with respect to their center otherwise. The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'left', 'center', 'right'] + + - One of the following enumeration values: + + ['auto', 'left', 'center', 'right'] Returns ------- @@ -531,8 +553,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -558,7 +582,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -581,8 +605,10 @@ def yanchor(self): legends with respect to their middle otherwise. The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['auto', 'top', 'middle', 'bottom'] Returns ------- @@ -602,8 +628,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/layout/_map.py b/plotly/graph_objects/layout/_map.py index 6e86092257..61cc7f9f16 100644 --- a/plotly/graph_objects/layout/_map.py +++ b/plotly/graph_objects/layout/_map.py @@ -29,7 +29,7 @@ def bearing(self): The 'bearing' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -148,7 +148,7 @@ def pitch(self): The 'pitch' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -218,7 +218,7 @@ def zoom(self): The 'zoom' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/_mapbox.py b/plotly/graph_objects/layout/_mapbox.py index f4847d4249..11cd32d0d4 100644 --- a/plotly/graph_objects/layout/_mapbox.py +++ b/plotly/graph_objects/layout/_mapbox.py @@ -53,7 +53,7 @@ def bearing(self): The 'bearing' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -172,7 +172,7 @@ def pitch(self): The 'pitch' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -246,7 +246,7 @@ def zoom(self): The 'zoom' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/_margin.py b/plotly/graph_objects/layout/_margin.py index 87687da875..9eccbcf46d 100644 --- a/plotly/graph_objects/layout/_margin.py +++ b/plotly/graph_objects/layout/_margin.py @@ -36,7 +36,8 @@ def b(self): Sets the bottom margin (in px). The 'b' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -54,7 +55,8 @@ def l(self): Sets the left margin (in px). The 'l' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -73,7 +75,8 @@ def pad(self): and the axis lines The 'pad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -91,7 +94,8 @@ def r(self): Sets the right margin (in px). The 'r' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -109,7 +113,8 @@ def t(self): Sets the top margin (in px). The 't' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/_modebar.py b/plotly/graph_objects/layout/_modebar.py index 0ee3e5041d..424a5c15dd 100644 --- a/plotly/graph_objects/layout/_modebar.py +++ b/plotly/graph_objects/layout/_modebar.py @@ -137,8 +137,10 @@ def orientation(self): Sets the orientation of the modebar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['v', 'h'] + + - One of the following enumeration values: + + ['v', 'h'] Returns ------- diff --git a/plotly/graph_objects/layout/_newselection.py b/plotly/graph_objects/layout/_newselection.py index 2a7913b221..e6ca26cdde 100644 --- a/plotly/graph_objects/layout/_newselection.py +++ b/plotly/graph_objects/layout/_newselection.py @@ -39,8 +39,10 @@ def mode(self): declaring extra outlines of the selection. The 'mode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['immediate', 'gradual'] + + - One of the following enumeration values: + + ['immediate', 'gradual'] Returns ------- diff --git a/plotly/graph_objects/layout/_newshape.py b/plotly/graph_objects/layout/_newshape.py index 4e91ccd281..fda595218e 100644 --- a/plotly/graph_objects/layout/_newshape.py +++ b/plotly/graph_objects/layout/_newshape.py @@ -37,8 +37,10 @@ def drawdirection(self): "vertical" allows vertical extend. The 'drawdirection' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['ortho', 'horizontal', 'vertical', 'diagonal'] + + - One of the following enumeration values: + + ['ortho', 'horizontal', 'vertical', 'diagonal'] Returns ------- @@ -83,8 +85,10 @@ def fillrule(self): US/docs/Web/SVG/Attribute/fill-rule The 'fillrule' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['evenodd', 'nonzero'] + + - One of the following enumeration values: + + ['evenodd', 'nonzero'] Returns ------- @@ -123,8 +127,10 @@ def layer(self): traces ("above"). The 'layer' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['below', 'above', 'between'] + + - One of the following enumeration values: + + ['below', 'above', 'between'] Returns ------- @@ -211,7 +217,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -229,7 +235,8 @@ def legendwidth(self): Sets the width (in px or fraction) of the legend for new shape. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -285,7 +292,8 @@ def opacity(self): Sets the opacity of new shapes. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -323,8 +331,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- diff --git a/plotly/graph_objects/layout/_polar.py b/plotly/graph_objects/layout/_polar.py index de384d706b..503c4aac15 100644 --- a/plotly/graph_objects/layout/_polar.py +++ b/plotly/graph_objects/layout/_polar.py @@ -48,7 +48,8 @@ def bargap(self): difference in bar positions in the data. The 'bargap' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -70,8 +71,10 @@ def barmode(self): bars. The 'barmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['stack', 'overlay'] + + - One of the following enumeration values: + + ['stack', 'overlay'] Returns ------- @@ -135,8 +138,10 @@ def gridshape(self): that radial axis scale is the same as the data scale). The 'gridshape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['circular', 'linear'] + + - One of the following enumeration values: + + ['circular', 'linear'] Returns ------- @@ -155,7 +160,8 @@ def hole(self): subplot. The 'hole' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/layout/_scene.py b/plotly/graph_objects/layout/_scene.py index d5dffefb14..c1eca6277c 100644 --- a/plotly/graph_objects/layout/_scene.py +++ b/plotly/graph_objects/layout/_scene.py @@ -80,8 +80,10 @@ def aspectmode(self): others, where in that case the results of "cube" are used. The 'aspectmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'cube', 'data', 'manual'] + + - One of the following enumeration values: + + ['auto', 'cube', 'data', 'manual'] Returns ------- @@ -178,8 +180,10 @@ def dragmode(self): Determines the mode of drag interactions for this scene. The 'dragmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['orbit', 'turntable', 'zoom', 'pan', False] + + - One of the following enumeration values: + + ['orbit', 'turntable', 'zoom', 'pan', False] Returns ------- @@ -197,8 +201,10 @@ def hovermode(self): Determines the mode of hover interactions for this scene. The 'hovermode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['closest', False] + + - One of the following enumeration values: + + ['closest', False] Returns ------- diff --git a/plotly/graph_objects/layout/_selection.py b/plotly/graph_objects/layout/_selection.py index 9d5c0f337a..ed157cc66c 100644 --- a/plotly/graph_objects/layout/_selection.py +++ b/plotly/graph_objects/layout/_selection.py @@ -73,7 +73,8 @@ def opacity(self): Sets the opacity of the selection. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -140,8 +141,10 @@ def type(self): using `path`. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['rect', 'path'] + + - One of the following enumeration values: + + ['rect', 'path'] Returns ------- @@ -203,10 +206,14 @@ def xref(self): left and the right of the domain of the second x axis. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['paper'] - - A string that matches one of the following regular expressions: - ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + ['paper'] + + - A string that matches one of the following regular expressions: + + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -268,10 +275,14 @@ def yref(self): bottom and the top of the domain of the second y axis. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['paper'] - - A string that matches one of the following regular expressions: - ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + ['paper'] + + - A string that matches one of the following regular expressions: + + ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- diff --git a/plotly/graph_objects/layout/_shape.py b/plotly/graph_objects/layout/_shape.py index 83f5397ecc..4c8be9a612 100644 --- a/plotly/graph_objects/layout/_shape.py +++ b/plotly/graph_objects/layout/_shape.py @@ -95,8 +95,10 @@ def fillrule(self): US/docs/Web/SVG/Attribute/fill-rule The 'fillrule' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['evenodd', 'nonzero'] + + - One of the following enumeration values: + + ['evenodd', 'nonzero'] Returns ------- @@ -135,8 +137,10 @@ def layer(self): ("above"). The 'layer' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['below', 'above', 'between'] + + - One of the following enumeration values: + + ['below', 'above', 'between'] Returns ------- @@ -225,7 +229,7 @@ def legendrank(self): The 'legendrank' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -244,7 +248,8 @@ def legendwidth(self): shape. The 'legendwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -306,7 +311,8 @@ def opacity(self): Sets the opacity of the shape. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -413,8 +419,10 @@ def type(self): using `path`. with respect to the axes' sizing mode. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['circle', 'rect', 'path', 'line'] + + - One of the following enumeration values: + + ['circle', 'rect', 'path', 'line'] Returns ------- @@ -434,8 +442,10 @@ def visible(self): legend item (provided that the legend itself is visible). The 'visible' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'legendonly'] + + - One of the following enumeration values: + + [True, False, 'legendonly'] Returns ------- @@ -474,7 +484,8 @@ def x0shift(self): category. The 'x0shift' property is a number and may be specified as: - - An int or float in the interval [-1, 1] + + - An int or float in the interval [-1, 1] Returns ------- @@ -513,7 +524,8 @@ def x1shift(self): category. The 'x1shift' property is a number and may be specified as: - - An int or float in the interval [-1, 1] + + - An int or float in the interval [-1, 1] Returns ------- @@ -562,10 +574,14 @@ def xref(self): right of the domain of the second x axis. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['paper'] - - A string that matches one of the following regular expressions: - ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + ['paper'] + + - A string that matches one of the following regular expressions: + + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -590,8 +606,10 @@ def xsizemode(self): maintaining a position relative to data or plot fraction. The 'xsizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['scaled', 'pixel'] + + - One of the following enumeration values: + + ['scaled', 'pixel'] Returns ------- @@ -630,7 +648,8 @@ def y0shift(self): category. The 'y0shift' property is a number and may be specified as: - - An int or float in the interval [-1, 1] + + - An int or float in the interval [-1, 1] Returns ------- @@ -669,7 +688,8 @@ def y1shift(self): category. The 'y1shift' property is a number and may be specified as: - - An int or float in the interval [-1, 1] + + - An int or float in the interval [-1, 1] Returns ------- @@ -718,10 +738,14 @@ def yref(self): bottom and the top of the domain of the second y axis. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['paper'] - - A string that matches one of the following regular expressions: - ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + ['paper'] + + - A string that matches one of the following regular expressions: + + ['^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -746,8 +770,10 @@ def ysizemode(self): maintaining a position relative to data or plot fraction. The 'ysizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['scaled', 'pixel'] + + - One of the following enumeration values: + + ['scaled', 'pixel'] Returns ------- diff --git a/plotly/graph_objects/layout/_slider.py b/plotly/graph_objects/layout/_slider.py index f752ccd9b5..43bcedfc99 100644 --- a/plotly/graph_objects/layout/_slider.py +++ b/plotly/graph_objects/layout/_slider.py @@ -42,7 +42,8 @@ def active(self): considered active. The 'active' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -126,7 +127,8 @@ def borderwidth(self): Sets the width (in px) of the border enclosing the slider. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -186,7 +188,8 @@ def len(self): the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -205,8 +208,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -224,7 +229,8 @@ def minorticklen(self): Sets the length in pixels of minor step tick marks The 'minorticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -378,7 +384,8 @@ def ticklen(self): Sets the length in pixels of step tick marks The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -396,7 +403,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -451,7 +459,8 @@ def x(self): Sets the x position (in normalized coordinates) of the slider. The 'x' property is a number and may be specified as: - - An int or float in the interval [-2, 3] + + - An int or float in the interval [-2, 3] Returns ------- @@ -471,8 +480,10 @@ def xanchor(self): range selector. The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'left', 'center', 'right'] + + - One of the following enumeration values: + + ['auto', 'left', 'center', 'right'] Returns ------- @@ -490,7 +501,8 @@ def y(self): Sets the y position (in normalized coordinates) of the slider. The 'y' property is a number and may be specified as: - - An int or float in the interval [-2, 3] + + - An int or float in the interval [-2, 3] Returns ------- @@ -510,8 +522,10 @@ def yanchor(self): range selector. The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['auto', 'top', 'middle', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/layout/_ternary.py b/plotly/graph_objects/layout/_ternary.py index ba4dbbfd6e..edada24ea8 100644 --- a/plotly/graph_objects/layout/_ternary.py +++ b/plotly/graph_objects/layout/_ternary.py @@ -115,7 +115,8 @@ def sum(self): each axis The 'sum' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/_title.py b/plotly/graph_objects/layout/_title.py index b6e7990cc6..d6f62d408c 100644 --- a/plotly/graph_objects/layout/_title.py +++ b/plotly/graph_objects/layout/_title.py @@ -142,7 +142,8 @@ def x(self): coordinates from 0 (left) to 1 (right). The 'x' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -165,8 +166,10 @@ def xanchor(self): of `x`. The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'left', 'center', 'right'] + + - One of the following enumeration values: + + ['auto', 'left', 'center', 'right'] Returns ------- @@ -186,8 +189,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -208,7 +213,8 @@ def y(self): margin. The 'y' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -231,8 +237,10 @@ def yanchor(self): on the value of `y`. The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['auto', 'top', 'middle', 'bottom'] Returns ------- @@ -252,8 +260,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/layout/_transition.py b/plotly/graph_objects/layout/_transition.py index ceacedafd2..068b6389a1 100644 --- a/plotly/graph_objects/layout/_transition.py +++ b/plotly/graph_objects/layout/_transition.py @@ -17,7 +17,8 @@ def duration(self): zero, updates are synchronous. The 'duration' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -35,16 +36,17 @@ def easing(self): The easing function used for the transition The 'easing' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['linear', 'quad', 'cubic', 'sin', 'exp', 'circle', - 'elastic', 'back', 'bounce', 'linear-in', 'quad-in', - 'cubic-in', 'sin-in', 'exp-in', 'circle-in', 'elastic-in', - 'back-in', 'bounce-in', 'linear-out', 'quad-out', - 'cubic-out', 'sin-out', 'exp-out', 'circle-out', - 'elastic-out', 'back-out', 'bounce-out', 'linear-in-out', - 'quad-in-out', 'cubic-in-out', 'sin-in-out', 'exp-in-out', - 'circle-in-out', 'elastic-in-out', 'back-in-out', - 'bounce-in-out'] + + - One of the following enumeration values: + + ['linear', 'quad', 'cubic', 'sin', 'exp', 'circle', 'elastic', + 'back', 'bounce', 'linear-in', 'quad-in', 'cubic-in', + 'sin-in', 'exp-in', 'circle-in', 'elastic-in', 'back-in', + 'bounce-in', 'linear-out', 'quad-out', 'cubic-out', 'sin-out', + 'exp-out', 'circle-out', 'elastic-out', 'back-out', + 'bounce-out', 'linear-in-out', 'quad-in-out', 'cubic-in-out', + 'sin-in-out', 'exp-in-out', 'circle-in-out', 'elastic-in-out', + 'back-in-out', 'bounce-in-out'] Returns ------- @@ -64,8 +66,10 @@ def ordering(self): change. The 'ordering' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['layout first', 'traces first'] + + - One of the following enumeration values: + + ['layout first', 'traces first'] Returns ------- diff --git a/plotly/graph_objects/layout/_uniformtext.py b/plotly/graph_objects/layout/_uniformtext.py index cd54105677..43962e48cd 100644 --- a/plotly/graph_objects/layout/_uniformtext.py +++ b/plotly/graph_objects/layout/_uniformtext.py @@ -16,7 +16,8 @@ def minsize(self): Sets the minimum text size between traces of the same type. The 'minsize' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -41,8 +42,10 @@ def mode(self): used. The 'mode' property is an enumeration that may be specified as: - - One of the following enumeration values: - [False, 'hide', 'show'] + + - One of the following enumeration values: + + [False, 'hide', 'show'] Returns ------- diff --git a/plotly/graph_objects/layout/_updatemenu.py b/plotly/graph_objects/layout/_updatemenu.py index ca11496261..a15aa2bada 100644 --- a/plotly/graph_objects/layout/_updatemenu.py +++ b/plotly/graph_objects/layout/_updatemenu.py @@ -99,7 +99,8 @@ def borderwidth(self): Sets the width (in px) of the border enclosing the update menu. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -163,8 +164,10 @@ def direction(self): or top-to-bottom order respectively. The 'direction' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'up', 'down'] + + - One of the following enumeration values: + + ['left', 'right', 'up', 'down'] Returns ------- @@ -295,8 +298,10 @@ def type(self): vertically The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['dropdown', 'buttons'] + + - One of the following enumeration values: + + ['dropdown', 'buttons'] Returns ------- @@ -333,7 +338,8 @@ def x(self): menu. The 'x' property is a number and may be specified as: - - An int or float in the interval [-2, 3] + + - An int or float in the interval [-2, 3] Returns ------- @@ -353,8 +359,10 @@ def xanchor(self): the range selector. The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'left', 'center', 'right'] + + - One of the following enumeration values: + + ['auto', 'left', 'center', 'right'] Returns ------- @@ -373,7 +381,8 @@ def y(self): menu. The 'y' property is a number and may be specified as: - - An int or float in the interval [-2, 3] + + - An int or float in the interval [-2, 3] Returns ------- @@ -393,8 +402,10 @@ def yanchor(self): the range selector. The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['auto', 'top', 'middle', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/layout/_xaxis.py b/plotly/graph_objects/layout/_xaxis.py index 40cca2cc7b..f9e82b4aba 100644 --- a/plotly/graph_objects/layout/_xaxis.py +++ b/plotly/graph_objects/layout/_xaxis.py @@ -113,11 +113,15 @@ def anchor(self): to "free", this axis' position is determined by `position`. The 'anchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['free'] - - A string that matches one of the following regular expressions: - ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', - '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + ['free'] + + - A string that matches one of the following regular expressions: + + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -166,9 +170,11 @@ def autorange(self): and reverses the axis direction. The 'autorange' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'reversed', 'min reversed', 'max reversed', - 'min', 'max'] + + - One of the following enumeration values: + + [True, False, 'reversed', 'min reversed', 'max reversed', + 'min', 'max'] Returns ------- @@ -207,11 +213,13 @@ def autotickangles(self): overlap. The 'autotickangles' property is an info array that may be specified as: + * a list of elements where: - The 'autotickangles[i]' property is a angle (in degrees) that may be - specified as a number between -180 and 180. - Numeric values outside this range are converted to the equivalent value - (e.g. 270 is converted to -90). + + The 'autotickangles[i]' property is a angle (in degrees) that may be + specified as a number between -180 and 180. + Numeric values outside this range are converted to the equivalent value + (e.g. 270 is converted to -90). Returns ------- @@ -232,8 +240,10 @@ def autotypenumbers(self): detection. Defaults to layout.autotypenumbers. The 'autotypenumbers' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['convert types', 'strict'] + + - One of the following enumeration values: + + ['convert types', 'strict'] Returns ------- @@ -254,11 +264,13 @@ def calendar(self): global `layout.calendar` The 'calendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -329,14 +341,16 @@ def categoryorder(self): of all the values. The 'categoryorder' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['trace', 'category ascending', 'category descending', - 'array', 'total ascending', 'total descending', 'min - ascending', 'min descending', 'max ascending', 'max - descending', 'sum ascending', 'sum descending', 'mean - ascending', 'mean descending', 'geometric mean ascending', - 'geometric mean descending', 'median ascending', 'median - descending'] + + - One of the following enumeration values: + + ['trace', 'category ascending', 'category descending', + 'array', 'total ascending', 'total descending', 'min + ascending', 'min descending', 'max ascending', 'max + descending', 'sum ascending', 'sum descending', 'mean + ascending', 'mean descending', 'geometric mean ascending', + 'geometric mean descending', 'median ascending', 'median + descending'] Returns ------- @@ -383,8 +397,10 @@ def constrain(self): containing image traces, "range" otherwise. The 'constrain' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['range', 'domain'] + + - One of the following enumeration values: + + ['range', 'domain'] Returns ------- @@ -407,8 +423,10 @@ def constraintoward(self): axes. The 'constraintoward' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right', 'top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['left', 'center', 'right', 'top', 'middle', 'bottom'] Returns ------- @@ -451,7 +469,7 @@ def dividerwidth(self): The 'dividerwidth' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -473,10 +491,12 @@ def domain(self): * a list or tuple of 2 elements where: (0) The 'domain[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'domain[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -534,8 +554,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -618,7 +640,8 @@ def gridwidth(self): Sets the width (in px) of the grid lines. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -720,8 +743,10 @@ def layer(self): False to show markers and/or text nodes above this axis. The 'layer' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['above traces', 'below traces'] + + - One of the following enumeration values: + + ['above traces', 'below traces'] Returns ------- @@ -761,7 +786,8 @@ def linewidth(self): Sets the width (in px) of the axis line. The 'linewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -785,9 +811,11 @@ def matches(self): that matching axes must have the same `type`. The 'matches' property is an enumeration that may be specified as: - - A string that matches one of the following regular expressions: - ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', - '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - A string that matches one of the following regular expressions: + + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -840,7 +868,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -882,8 +911,10 @@ def mirror(self): ticks are mirrored on all shared-axes subplots. The 'mirror' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, 'ticks', False, 'all', 'allticks'] + + - One of the following enumeration values: + + [True, 'ticks', False, 'all', 'allticks'] Returns ------- @@ -927,11 +958,15 @@ def overlaying(self): domains only the highest-numbered axis will be visible. The 'overlaying' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['free'] - - A string that matches one of the following regular expressions: - ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', - '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + ['free'] + + - A string that matches one of the following regular expressions: + + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -951,7 +986,8 @@ def position(self): to "free". The 'position' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -1048,8 +1084,10 @@ def rangemode(self): linear axes. The 'rangemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'tozero', 'nonnegative'] + + - One of the following enumeration values: + + ['normal', 'tozero', 'nonnegative'] Returns ------- @@ -1126,11 +1164,15 @@ def scaleanchor(self): the constraint). The 'scaleanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - [False] - - A string that matches one of the following regular expressions: - ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', - '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + [False] + + - A string that matches one of the following regular expressions: + + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -1153,7 +1195,8 @@ def scaleratio(self): is exaggerated a fixed amount with respect to the horizontal. The 'scaleratio' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1212,8 +1255,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -1309,8 +1354,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -1328,8 +1375,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -1348,8 +1397,10 @@ def side(self): ("left") or "top" ("right") of the plotting area. The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'bottom', 'left', 'right'] + + - One of the following enumeration values: + + ['top', 'bottom', 'left', 'right'] Returns ------- @@ -1438,8 +1489,10 @@ def spikesnap(self): closest datapoints. The 'spikesnap' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['data', 'cursor', 'hovered data'] + + - One of the following enumeration values: + + ['data', 'cursor', 'hovered data'] Returns ------- @@ -1458,7 +1511,7 @@ def spikethickness(self): The 'spikethickness' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1685,8 +1738,10 @@ def ticklabelmode(self): the middle of the period between ticks. The 'ticklabelmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['instant', 'period'] + + - One of the following enumeration values: + + ['instant', 'period'] Returns ------- @@ -1708,8 +1763,10 @@ def ticklabeloverflow(self): other cases the default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -1735,10 +1792,12 @@ def ticklabelposition(self): added by autorange, so that the scales could match. The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -1826,7 +1885,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1852,8 +1912,10 @@ def tickmode(self): `overlaying` property. The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array', 'sync'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array', 'sync'] Returns ------- @@ -1892,8 +1954,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -1915,8 +1979,10 @@ def tickson(self): left/bottom of labels. The 'tickson' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['labels', 'boundaries'] + + - One of the following enumeration values: + + ['labels', 'boundaries'] Returns ------- @@ -2028,7 +2094,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -2067,9 +2134,10 @@ def type(self): referenced the axis in question. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['-', 'linear', 'log', 'date', 'category', - 'multicategory'] + + - One of the following enumeration values: + + ['-', 'linear', 'log', 'date', 'category', 'multicategory'] Returns ------- @@ -2173,8 +2241,10 @@ def zerolinelayer(self): property is set on any trace. The 'zerolinelayer' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['above traces', 'below traces'] + + - One of the following enumeration values: + + ['above traces', 'below traces'] Returns ------- @@ -2193,7 +2263,7 @@ def zerolinewidth(self): The 'zerolinewidth' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/_yaxis.py b/plotly/graph_objects/layout/_yaxis.py index 6ce74f1948..a25795dd29 100644 --- a/plotly/graph_objects/layout/_yaxis.py +++ b/plotly/graph_objects/layout/_yaxis.py @@ -113,11 +113,15 @@ def anchor(self): to "free", this axis' position is determined by `position`. The 'anchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['free'] - - A string that matches one of the following regular expressions: - ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', - '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + ['free'] + + - A string that matches one of the following regular expressions: + + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -166,9 +170,11 @@ def autorange(self): and reverses the axis direction. The 'autorange' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'reversed', 'min reversed', 'max reversed', - 'min', 'max'] + + - One of the following enumeration values: + + [True, False, 'reversed', 'min reversed', 'max reversed', + 'min', 'max'] Returns ------- @@ -229,11 +235,13 @@ def autotickangles(self): overlap. The 'autotickangles' property is an info array that may be specified as: + * a list of elements where: - The 'autotickangles[i]' property is a angle (in degrees) that may be - specified as a number between -180 and 180. - Numeric values outside this range are converted to the equivalent value - (e.g. 270 is converted to -90). + + The 'autotickangles[i]' property is a angle (in degrees) that may be + specified as a number between -180 and 180. + Numeric values outside this range are converted to the equivalent value + (e.g. 270 is converted to -90). Returns ------- @@ -254,8 +262,10 @@ def autotypenumbers(self): detection. Defaults to layout.autotypenumbers. The 'autotypenumbers' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['convert types', 'strict'] + + - One of the following enumeration values: + + ['convert types', 'strict'] Returns ------- @@ -276,11 +286,13 @@ def calendar(self): global `layout.calendar` The 'calendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -351,14 +363,16 @@ def categoryorder(self): of all the values. The 'categoryorder' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['trace', 'category ascending', 'category descending', - 'array', 'total ascending', 'total descending', 'min - ascending', 'min descending', 'max ascending', 'max - descending', 'sum ascending', 'sum descending', 'mean - ascending', 'mean descending', 'geometric mean ascending', - 'geometric mean descending', 'median ascending', 'median - descending'] + + - One of the following enumeration values: + + ['trace', 'category ascending', 'category descending', + 'array', 'total ascending', 'total descending', 'min + ascending', 'min descending', 'max ascending', 'max + descending', 'sum ascending', 'sum descending', 'mean + ascending', 'mean descending', 'geometric mean ascending', + 'geometric mean descending', 'median ascending', 'median + descending'] Returns ------- @@ -405,8 +419,10 @@ def constrain(self): containing image traces, "range" otherwise. The 'constrain' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['range', 'domain'] + + - One of the following enumeration values: + + ['range', 'domain'] Returns ------- @@ -429,8 +445,10 @@ def constraintoward(self): axes. The 'constraintoward' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right', 'top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['left', 'center', 'right', 'top', 'middle', 'bottom'] Returns ------- @@ -473,7 +491,7 @@ def dividerwidth(self): The 'dividerwidth' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -495,10 +513,12 @@ def domain(self): * a list or tuple of 2 elements where: (0) The 'domain[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'domain[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -556,8 +576,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -640,7 +662,8 @@ def gridwidth(self): Sets the width (in px) of the grid lines. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -742,8 +765,10 @@ def layer(self): False to show markers and/or text nodes above this axis. The 'layer' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['above traces', 'below traces'] + + - One of the following enumeration values: + + ['above traces', 'below traces'] Returns ------- @@ -783,7 +808,8 @@ def linewidth(self): Sets the width (in px) of the axis line. The 'linewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -807,9 +833,11 @@ def matches(self): that matching axes must have the same `type`. The 'matches' property is an enumeration that may be specified as: - - A string that matches one of the following regular expressions: - ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', - '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - A string that matches one of the following regular expressions: + + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -862,7 +890,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -904,8 +933,10 @@ def mirror(self): ticks are mirrored on all shared-axes subplots. The 'mirror' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, 'ticks', False, 'all', 'allticks'] + + - One of the following enumeration values: + + [True, 'ticks', False, 'all', 'allticks'] Returns ------- @@ -949,11 +980,15 @@ def overlaying(self): domains only the highest-numbered axis will be visible. The 'overlaying' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['free'] - - A string that matches one of the following regular expressions: - ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', - '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + ['free'] + + - A string that matches one of the following regular expressions: + + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -973,7 +1008,8 @@ def position(self): to "free". The 'position' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -1070,8 +1106,10 @@ def rangemode(self): linear axes. The 'rangemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'tozero', 'nonnegative'] + + - One of the following enumeration values: + + ['normal', 'tozero', 'nonnegative'] Returns ------- @@ -1110,11 +1148,15 @@ def scaleanchor(self): the constraint). The 'scaleanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - [False] - - A string that matches one of the following regular expressions: - ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', - '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] + + - One of the following enumeration values: + + [False] + + - A string that matches one of the following regular expressions: + + ['^x(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$', + '^y(\\[2-9\\]|\\[1-9\\]\\[0-9\\]+)?( domain)?$'] Returns ------- @@ -1137,7 +1179,8 @@ def scaleratio(self): is exaggerated a fixed amount with respect to the horizontal. The 'scaleratio' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1180,7 +1223,7 @@ def shift(self): The 'shift' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1221,8 +1264,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -1318,8 +1363,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -1337,8 +1384,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -1357,8 +1406,10 @@ def side(self): ("left") or "top" ("right") of the plotting area. The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'bottom', 'left', 'right'] + + - One of the following enumeration values: + + ['top', 'bottom', 'left', 'right'] Returns ------- @@ -1447,8 +1498,10 @@ def spikesnap(self): closest datapoints. The 'spikesnap' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['data', 'cursor', 'hovered data'] + + - One of the following enumeration values: + + ['data', 'cursor', 'hovered data'] Returns ------- @@ -1467,7 +1520,7 @@ def spikethickness(self): The 'spikethickness' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1694,8 +1747,10 @@ def ticklabelmode(self): the middle of the period between ticks. The 'ticklabelmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['instant', 'period'] + + - One of the following enumeration values: + + ['instant', 'period'] Returns ------- @@ -1717,8 +1772,10 @@ def ticklabeloverflow(self): other cases the default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -1744,10 +1801,12 @@ def ticklabelposition(self): added by autorange, so that the scales could match. The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -1835,7 +1894,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1861,8 +1921,10 @@ def tickmode(self): `overlaying` property. The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array', 'sync'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array', 'sync'] Returns ------- @@ -1901,8 +1963,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -1924,8 +1988,10 @@ def tickson(self): left/bottom of labels. The 'tickson' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['labels', 'boundaries'] + + - One of the following enumeration values: + + ['labels', 'boundaries'] Returns ------- @@ -2037,7 +2103,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -2076,9 +2143,10 @@ def type(self): referenced the axis in question. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['-', 'linear', 'log', 'date', 'category', - 'multicategory'] + + - One of the following enumeration values: + + ['-', 'linear', 'log', 'date', 'category', 'multicategory'] Returns ------- @@ -2182,8 +2250,10 @@ def zerolinelayer(self): property is set on any trace. The 'zerolinelayer' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['above traces', 'below traces'] + + - One of the following enumeration values: + + ['above traces', 'below traces'] Returns ------- @@ -2202,7 +2272,7 @@ def zerolinewidth(self): The 'zerolinewidth' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/annotation/_font.py b/plotly/graph_objects/layout/annotation/_font.py index a97d4881d2..b86fdf3055 100644 --- a/plotly/graph_objects/layout/annotation/_font.py +++ b/plotly/graph_objects/layout/annotation/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/annotation/hoverlabel/_font.py b/plotly/graph_objects/layout/annotation/hoverlabel/_font.py index faf60f8a27..b255783d1b 100644 --- a/plotly/graph_objects/layout/annotation/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/annotation/hoverlabel/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/coloraxis/_colorbar.py b/plotly/graph_objects/layout/coloraxis/_colorbar.py index 0cd923113b..e042e033ba 100644 --- a/plotly/graph_objects/layout/coloraxis/_colorbar.py +++ b/plotly/graph_objects/layout/coloraxis/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py b/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py index 0f29f00a69..c96c26848e 100644 --- a/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py +++ b/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/coloraxis/colorbar/_title.py b/plotly/graph_objects/layout/coloraxis/colorbar/_title.py index e62bd3240a..d2f579f9e5 100644 --- a/plotly/graph_objects/layout/coloraxis/colorbar/_title.py +++ b/plotly/graph_objects/layout/coloraxis/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py b/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py index 7e3715e57a..bb317caf10 100644 --- a/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py +++ b/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/geo/_center.py b/plotly/graph_objects/layout/geo/_center.py index 83e41ed9dd..88fbbbae9f 100644 --- a/plotly/graph_objects/layout/geo/_center.py +++ b/plotly/graph_objects/layout/geo/_center.py @@ -19,7 +19,7 @@ def lat(self): The 'lat' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -41,7 +41,7 @@ def lon(self): The 'lon' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/geo/_domain.py b/plotly/graph_objects/layout/geo/_domain.py index ea12abacc2..28ec8ca9d9 100644 --- a/plotly/graph_objects/layout/geo/_domain.py +++ b/plotly/graph_objects/layout/geo/_domain.py @@ -69,10 +69,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -97,10 +99,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/layout/geo/_lataxis.py b/plotly/graph_objects/layout/geo/_lataxis.py index 469e8f522e..bfe58346f7 100644 --- a/plotly/graph_objects/layout/geo/_lataxis.py +++ b/plotly/graph_objects/layout/geo/_lataxis.py @@ -25,7 +25,7 @@ def dtick(self): The 'dtick' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -89,7 +89,8 @@ def gridwidth(self): Sets the graticule's stroke width (in px). The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -154,7 +155,7 @@ def tick0(self): The 'tick0' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/geo/_lonaxis.py b/plotly/graph_objects/layout/geo/_lonaxis.py index a63640f28e..cd01deadd7 100644 --- a/plotly/graph_objects/layout/geo/_lonaxis.py +++ b/plotly/graph_objects/layout/geo/_lonaxis.py @@ -25,7 +25,7 @@ def dtick(self): The 'dtick' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -89,7 +89,8 @@ def gridwidth(self): Sets the graticule's stroke width (in px). The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -154,7 +155,7 @@ def tick0(self): The 'tick0' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/geo/_projection.py b/plotly/graph_objects/layout/geo/_projection.py index 160a31ae10..84896b7cee 100644 --- a/plotly/graph_objects/layout/geo/_projection.py +++ b/plotly/graph_objects/layout/geo/_projection.py @@ -18,7 +18,8 @@ def distance(self): the sphere’s radius. The 'distance' property is a number and may be specified as: - - An int or float in the interval [1.001, inf] + + - An int or float in the interval [1.001, inf] Returns ------- @@ -84,7 +85,8 @@ def scale(self): the largest zoom level that fits the map's lon and lat ranges. The 'scale' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -104,7 +106,7 @@ def tilt(self): The 'tilt' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -122,31 +124,31 @@ def type(self): Sets the projection type. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['airy', 'aitoff', 'albers', 'albers usa', 'august', - 'azimuthal equal area', 'azimuthal equidistant', 'baker', - 'bertin1953', 'boggs', 'bonne', 'bottomley', 'bromley', - 'collignon', 'conic conformal', 'conic equal area', 'conic - equidistant', 'craig', 'craster', 'cylindrical equal - area', 'cylindrical stereographic', 'eckert1', 'eckert2', - 'eckert3', 'eckert4', 'eckert5', 'eckert6', 'eisenlohr', - 'equal earth', 'equirectangular', 'fahey', 'foucaut', - 'foucaut sinusoidal', 'ginzburg4', 'ginzburg5', - 'ginzburg6', 'ginzburg8', 'ginzburg9', 'gnomonic', - 'gringorten', 'gringorten quincuncial', 'guyou', 'hammer', - 'hill', 'homolosine', 'hufnagel', 'hyperelliptical', - 'kavrayskiy7', 'lagrange', 'larrivee', 'laskowski', - 'loximuthal', 'mercator', 'miller', 'mollweide', 'mt flat - polar parabolic', 'mt flat polar quartic', 'mt flat polar - sinusoidal', 'natural earth', 'natural earth1', 'natural - earth2', 'nell hammer', 'nicolosi', 'orthographic', - 'patterson', 'peirce quincuncial', 'polyconic', - 'rectangular polyconic', 'robinson', 'satellite', 'sinu - mollweide', 'sinusoidal', 'stereographic', 'times', - 'transverse mercator', 'van der grinten', 'van der - grinten2', 'van der grinten3', 'van der grinten4', - 'wagner4', 'wagner6', 'wiechel', 'winkel tripel', - 'winkel3'] + + - One of the following enumeration values: + + ['airy', 'aitoff', 'albers', 'albers usa', 'august', + 'azimuthal equal area', 'azimuthal equidistant', 'baker', + 'bertin1953', 'boggs', 'bonne', 'bottomley', 'bromley', + 'collignon', 'conic conformal', 'conic equal area', 'conic + equidistant', 'craig', 'craster', 'cylindrical equal area', + 'cylindrical stereographic', 'eckert1', 'eckert2', 'eckert3', + 'eckert4', 'eckert5', 'eckert6', 'eisenlohr', 'equal earth', + 'equirectangular', 'fahey', 'foucaut', 'foucaut sinusoidal', + 'ginzburg4', 'ginzburg5', 'ginzburg6', 'ginzburg8', + 'ginzburg9', 'gnomonic', 'gringorten', 'gringorten + quincuncial', 'guyou', 'hammer', 'hill', 'homolosine', + 'hufnagel', 'hyperelliptical', 'kavrayskiy7', 'lagrange', + 'larrivee', 'laskowski', 'loximuthal', 'mercator', 'miller', + 'mollweide', 'mt flat polar parabolic', 'mt flat polar + quartic', 'mt flat polar sinusoidal', 'natural earth', + 'natural earth1', 'natural earth2', 'nell hammer', 'nicolosi', + 'orthographic', 'patterson', 'peirce quincuncial', + 'polyconic', 'rectangular polyconic', 'robinson', 'satellite', + 'sinu mollweide', 'sinusoidal', 'stereographic', 'times', + 'transverse mercator', 'van der grinten', 'van der grinten2', + 'van der grinten3', 'van der grinten4', 'wagner4', 'wagner6', + 'wiechel', 'winkel tripel', 'winkel3'] Returns ------- diff --git a/plotly/graph_objects/layout/geo/projection/_rotation.py b/plotly/graph_objects/layout/geo/projection/_rotation.py index 027d2c230b..a338c0155a 100644 --- a/plotly/graph_objects/layout/geo/projection/_rotation.py +++ b/plotly/graph_objects/layout/geo/projection/_rotation.py @@ -17,7 +17,7 @@ def lat(self): The 'lat' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -37,7 +37,7 @@ def lon(self): The 'lon' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -57,7 +57,7 @@ def roll(self): The 'roll' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/grid/_domain.py b/plotly/graph_objects/layout/grid/_domain.py index c8a6bffb1e..b18c1cd9df 100644 --- a/plotly/graph_objects/layout/grid/_domain.py +++ b/plotly/graph_objects/layout/grid/_domain.py @@ -22,10 +22,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -49,10 +51,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/layout/hoverlabel/_font.py b/plotly/graph_objects/layout/hoverlabel/_font.py index 87a4a7d04f..6117363914 100644 --- a/plotly/graph_objects/layout/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/hoverlabel/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py b/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py index d996a7ddc8..7585706c5c 100644 --- a/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py +++ b/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/legend/_font.py b/plotly/graph_objects/layout/legend/_font.py index f05b510999..cd5a74df6d 100644 --- a/plotly/graph_objects/layout/legend/_font.py +++ b/plotly/graph_objects/layout/legend/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/legend/_grouptitlefont.py b/plotly/graph_objects/layout/legend/_grouptitlefont.py index 9ef3bb2e8a..7c4a5e7904 100644 --- a/plotly/graph_objects/layout/legend/_grouptitlefont.py +++ b/plotly/graph_objects/layout/legend/_grouptitlefont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/legend/_title.py b/plotly/graph_objects/layout/legend/_title.py index 39a6167253..e8688fb68b 100644 --- a/plotly/graph_objects/layout/legend/_title.py +++ b/plotly/graph_objects/layout/legend/_title.py @@ -42,8 +42,10 @@ def side(self): for horizontal alignment legend area in both x and y sides. The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'left', 'top left', 'top center', 'top right'] + + - One of the following enumeration values: + + ['top', 'left', 'top left', 'top center', 'top right'] Returns ------- diff --git a/plotly/graph_objects/layout/legend/title/_font.py b/plotly/graph_objects/layout/legend/title/_font.py index 8cb77d20df..0db739dcce 100644 --- a/plotly/graph_objects/layout/legend/title/_font.py +++ b/plotly/graph_objects/layout/legend/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/map/_bounds.py b/plotly/graph_objects/layout/map/_bounds.py index 10f96b9d8d..a567a56e3e 100644 --- a/plotly/graph_objects/layout/map/_bounds.py +++ b/plotly/graph_objects/layout/map/_bounds.py @@ -18,7 +18,7 @@ def east(self): The 'east' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -38,7 +38,7 @@ def north(self): The 'north' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -58,7 +58,7 @@ def south(self): The 'south' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -78,7 +78,7 @@ def west(self): The 'west' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/map/_center.py b/plotly/graph_objects/layout/map/_center.py index b16d2b4881..d1e2740abd 100644 --- a/plotly/graph_objects/layout/map/_center.py +++ b/plotly/graph_objects/layout/map/_center.py @@ -17,7 +17,7 @@ def lat(self): The 'lat' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -36,7 +36,7 @@ def lon(self): The 'lon' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/map/_domain.py b/plotly/graph_objects/layout/map/_domain.py index 83f48400a1..81e646a854 100644 --- a/plotly/graph_objects/layout/map/_domain.py +++ b/plotly/graph_objects/layout/map/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/layout/map/_layer.py b/plotly/graph_objects/layout/map/_layer.py index c96f9bb6d9..8e7ae46f1b 100644 --- a/plotly/graph_objects/layout/map/_layer.py +++ b/plotly/graph_objects/layout/map/_layer.py @@ -162,7 +162,8 @@ def maxzoom(self): equal to or greater than the maxzoom, the layer will be hidden. The 'maxzoom' property is a number and may be specified as: - - An int or float in the interval [0, 24] + + - An int or float in the interval [0, 24] Returns ------- @@ -181,7 +182,8 @@ def minzoom(self): less than the minzoom, the layer will be hidden. The 'minzoom' property is a number and may be specified as: - - An int or float in the interval [0, 24] + + - An int or float in the interval [0, 24] Returns ------- @@ -230,7 +232,8 @@ def opacity(self): icon/text opacity (map.layer.paint.text-opacity) The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -311,8 +314,10 @@ def sourcetype(self): layer data. The 'sourcetype' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['geojson', 'vector', 'raster', 'image'] + + - One of the following enumeration values: + + ['geojson', 'vector', 'raster', 'image'] Returns ------- @@ -382,8 +387,10 @@ def type(self): `*image*`, only the "raster" value is allowed. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['circle', 'line', 'fill', 'symbol', 'raster'] + + - One of the following enumeration values: + + ['circle', 'line', 'fill', 'symbol', 'raster'] Returns ------- diff --git a/plotly/graph_objects/layout/map/layer/_circle.py b/plotly/graph_objects/layout/map/layer/_circle.py index 1928db4adf..8d7e5364f4 100644 --- a/plotly/graph_objects/layout/map/layer/_circle.py +++ b/plotly/graph_objects/layout/map/layer/_circle.py @@ -18,7 +18,7 @@ def radius(self): The 'radius' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/map/layer/_line.py b/plotly/graph_objects/layout/map/layer/_line.py index 319470b973..627bb562e3 100644 --- a/plotly/graph_objects/layout/map/layer/_line.py +++ b/plotly/graph_objects/layout/map/layer/_line.py @@ -55,7 +55,7 @@ def width(self): The 'width' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/map/layer/_symbol.py b/plotly/graph_objects/layout/map/layer/_symbol.py index e97cb92442..7b7d03beeb 100644 --- a/plotly/graph_objects/layout/map/layer/_symbol.py +++ b/plotly/graph_objects/layout/map/layer/_symbol.py @@ -38,7 +38,7 @@ def iconsize(self): The 'iconsize' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -61,8 +61,10 @@ def placement(self): geometry The 'placement' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['point', 'line', 'line-center'] + + - One of the following enumeration values: + + ['point', 'line', 'line-center'] Returns ------- @@ -123,10 +125,12 @@ def textposition(self): (x,y) coordinates. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] Returns ------- diff --git a/plotly/graph_objects/layout/map/layer/symbol/_textfont.py b/plotly/graph_objects/layout/map/layer/symbol/_textfont.py index cf29f82b90..24c9d3c37e 100644 --- a/plotly/graph_objects/layout/map/layer/symbol/_textfont.py +++ b/plotly/graph_objects/layout/map/layer/symbol/_textfont.py @@ -56,7 +56,8 @@ def family(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -75,8 +76,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/_bounds.py b/plotly/graph_objects/layout/mapbox/_bounds.py index 10b6543405..cbf6c39468 100644 --- a/plotly/graph_objects/layout/mapbox/_bounds.py +++ b/plotly/graph_objects/layout/mapbox/_bounds.py @@ -18,7 +18,7 @@ def east(self): The 'east' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -38,7 +38,7 @@ def north(self): The 'north' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -58,7 +58,7 @@ def south(self): The 'south' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -78,7 +78,7 @@ def west(self): The 'west' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/_center.py b/plotly/graph_objects/layout/mapbox/_center.py index 1108807fb6..2b753821da 100644 --- a/plotly/graph_objects/layout/mapbox/_center.py +++ b/plotly/graph_objects/layout/mapbox/_center.py @@ -17,7 +17,7 @@ def lat(self): The 'lat' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -36,7 +36,7 @@ def lon(self): The 'lon' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/_domain.py b/plotly/graph_objects/layout/mapbox/_domain.py index d648368fd0..673aaa8978 100644 --- a/plotly/graph_objects/layout/mapbox/_domain.py +++ b/plotly/graph_objects/layout/mapbox/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/_layer.py b/plotly/graph_objects/layout/mapbox/_layer.py index 6833c4c3f0..14a8adfcb5 100644 --- a/plotly/graph_objects/layout/mapbox/_layer.py +++ b/plotly/graph_objects/layout/mapbox/_layer.py @@ -163,7 +163,8 @@ def maxzoom(self): hidden. The 'maxzoom' property is a number and may be specified as: - - An int or float in the interval [0, 24] + + - An int or float in the interval [0, 24] Returns ------- @@ -182,7 +183,8 @@ def minzoom(self): levels less than the minzoom, the layer will be hidden. The 'minzoom' property is a number and may be specified as: - - An int or float in the interval [0, 24] + + - An int or float in the interval [0, 24] Returns ------- @@ -232,7 +234,8 @@ def opacity(self): (mapbox.layer.paint.text-opacity) The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -313,8 +316,10 @@ def sourcetype(self): layer data. The 'sourcetype' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['geojson', 'vector', 'raster', 'image'] + + - One of the following enumeration values: + + ['geojson', 'vector', 'raster', 'image'] Returns ------- @@ -384,8 +389,10 @@ def type(self): `*image*`, only the "raster" value is allowed. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['circle', 'line', 'fill', 'symbol', 'raster'] + + - One of the following enumeration values: + + ['circle', 'line', 'fill', 'symbol', 'raster'] Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/layer/_circle.py b/plotly/graph_objects/layout/mapbox/layer/_circle.py index 818d24f0e3..2823ded4e8 100644 --- a/plotly/graph_objects/layout/mapbox/layer/_circle.py +++ b/plotly/graph_objects/layout/mapbox/layer/_circle.py @@ -18,7 +18,7 @@ def radius(self): The 'radius' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/layer/_line.py b/plotly/graph_objects/layout/mapbox/layer/_line.py index ea0d6f724c..94a9a3997b 100644 --- a/plotly/graph_objects/layout/mapbox/layer/_line.py +++ b/plotly/graph_objects/layout/mapbox/layer/_line.py @@ -55,7 +55,7 @@ def width(self): The 'width' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/layer/_symbol.py b/plotly/graph_objects/layout/mapbox/layer/_symbol.py index 98c2a7728c..bf75c6a203 100644 --- a/plotly/graph_objects/layout/mapbox/layer/_symbol.py +++ b/plotly/graph_objects/layout/mapbox/layer/_symbol.py @@ -38,7 +38,7 @@ def iconsize(self): The 'iconsize' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -61,8 +61,10 @@ def placement(self): placed on the center of the geometry The 'placement' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['point', 'line', 'line-center'] + + - One of the following enumeration values: + + ['point', 'line', 'line-center'] Returns ------- @@ -123,10 +125,12 @@ def textposition(self): (x,y) coordinates. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right'] + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right'] Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py b/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py index 18c656098f..3cacf7ad26 100644 --- a/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py +++ b/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py @@ -56,7 +56,8 @@ def family(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -75,8 +76,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- diff --git a/plotly/graph_objects/layout/newselection/_line.py b/plotly/graph_objects/layout/newselection/_line.py index 486e4ee446..de8c836b0a 100644 --- a/plotly/graph_objects/layout/newselection/_line.py +++ b/plotly/graph_objects/layout/newselection/_line.py @@ -63,7 +63,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- diff --git a/plotly/graph_objects/layout/newshape/_label.py b/plotly/graph_objects/layout/newshape/_label.py index f49ba675ea..b39de2acba 100644 --- a/plotly/graph_objects/layout/newshape/_label.py +++ b/plotly/graph_objects/layout/newshape/_label.py @@ -47,7 +47,8 @@ def padding(self): shape. The 'padding' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -113,10 +114,12 @@ def textposition(self): circles, and paths; "middle" for lines. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right', 'start', 'middle', 'end'] + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right', 'start', 'middle', 'end'] Returns ------- @@ -177,8 +180,10 @@ def xanchor(self): the new shape. The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'left', 'center', 'right'] + + - One of the following enumeration values: + + ['auto', 'left', 'center', 'right'] Returns ------- @@ -200,8 +205,10 @@ def yanchor(self): label text lines up with the top-most edge of the new shape. The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/layout/newshape/_line.py b/plotly/graph_objects/layout/newshape/_line.py index 95f91b2729..bb576ec5a0 100644 --- a/plotly/graph_objects/layout/newshape/_line.py +++ b/plotly/graph_objects/layout/newshape/_line.py @@ -63,7 +63,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/newshape/label/_font.py b/plotly/graph_objects/layout/newshape/label/_font.py index 5de89293e4..464f522ce1 100644 --- a/plotly/graph_objects/layout/newshape/label/_font.py +++ b/plotly/graph_objects/layout/newshape/label/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py b/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py index 2cf1c6fd8d..474d2c99f6 100644 --- a/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py +++ b/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/polar/_angularaxis.py b/plotly/graph_objects/layout/polar/_angularaxis.py index f14a9912d2..1451c9199d 100644 --- a/plotly/graph_objects/layout/polar/_angularaxis.py +++ b/plotly/graph_objects/layout/polar/_angularaxis.py @@ -69,8 +69,10 @@ def autotypenumbers(self): detection. Defaults to layout.autotypenumbers. The 'autotypenumbers' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['convert types', 'strict'] + + - One of the following enumeration values: + + ['convert types', 'strict'] Returns ------- @@ -141,14 +143,16 @@ def categoryorder(self): of all the values. The 'categoryorder' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['trace', 'category ascending', 'category descending', - 'array', 'total ascending', 'total descending', 'min - ascending', 'min descending', 'max ascending', 'max - descending', 'sum ascending', 'sum descending', 'mean - ascending', 'mean descending', 'geometric mean ascending', - 'geometric mean descending', 'median ascending', 'median - descending'] + + - One of the following enumeration values: + + ['trace', 'category ascending', 'category descending', + 'array', 'total ascending', 'total descending', 'min + ascending', 'min descending', 'max ascending', 'max + descending', 'sum ascending', 'sum descending', 'mean + ascending', 'mean descending', 'geometric mean ascending', + 'geometric mean descending', 'median ascending', 'median + descending'] Returns ------- @@ -191,8 +195,10 @@ def direction(self): Sets the direction corresponding to positive angles. The 'direction' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['counterclockwise', 'clockwise'] + + - One of the following enumeration values: + + ['counterclockwise', 'clockwise'] Returns ------- @@ -250,8 +256,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -315,7 +323,8 @@ def gridwidth(self): Sets the width (in px) of the grid lines. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -391,8 +400,10 @@ def layer(self): False to show markers and/or text nodes above this axis. The 'layer' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['above traces', 'below traces'] + + - One of the following enumeration values: + + ['above traces', 'below traces'] Returns ------- @@ -432,7 +443,8 @@ def linewidth(self): Sets the width (in px) of the axis line. The 'linewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -451,7 +463,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -492,7 +505,8 @@ def period(self): `angularaxis.type` is "category". The 'period' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -556,8 +570,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -633,8 +649,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -652,8 +670,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -672,8 +692,10 @@ def thetaunit(self): effect only when `angularaxis.type` is "linear". The 'thetaunit' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['radians', 'degrees'] + + - One of the following enumeration values: + + ['radians', 'degrees'] Returns ------- @@ -875,7 +897,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -899,8 +922,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -939,8 +964,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -1052,7 +1079,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1073,8 +1101,10 @@ def type(self): polar axis. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['-', 'linear', 'category'] + + - One of the following enumeration values: + + ['-', 'linear', 'category'] Returns ------- diff --git a/plotly/graph_objects/layout/polar/_domain.py b/plotly/graph_objects/layout/polar/_domain.py index 9b55f2d86c..9a8697edea 100644 --- a/plotly/graph_objects/layout/polar/_domain.py +++ b/plotly/graph_objects/layout/polar/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/layout/polar/_radialaxis.py b/plotly/graph_objects/layout/polar/_radialaxis.py index 779cae625c..f2c10842ba 100644 --- a/plotly/graph_objects/layout/polar/_radialaxis.py +++ b/plotly/graph_objects/layout/polar/_radialaxis.py @@ -106,9 +106,11 @@ def autorange(self): and reverses the axis direction. The 'autorange' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'reversed', 'min reversed', 'max reversed', - 'min', 'max'] + + - One of the following enumeration values: + + [True, False, 'reversed', 'min reversed', 'max reversed', + 'min', 'max'] Returns ------- @@ -147,11 +149,13 @@ def autotickangles(self): overlap. The 'autotickangles' property is an info array that may be specified as: + * a list of elements where: - The 'autotickangles[i]' property is a angle (in degrees) that may be - specified as a number between -180 and 180. - Numeric values outside this range are converted to the equivalent value - (e.g. 270 is converted to -90). + + The 'autotickangles[i]' property is a angle (in degrees) that may be + specified as a number between -180 and 180. + Numeric values outside this range are converted to the equivalent value + (e.g. 270 is converted to -90). Returns ------- @@ -172,8 +176,10 @@ def autotypenumbers(self): detection. Defaults to layout.autotypenumbers. The 'autotypenumbers' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['convert types', 'strict'] + + - One of the following enumeration values: + + ['convert types', 'strict'] Returns ------- @@ -194,11 +200,13 @@ def calendar(self): global `layout.calendar` The 'calendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -269,14 +277,16 @@ def categoryorder(self): of all the values. The 'categoryorder' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['trace', 'category ascending', 'category descending', - 'array', 'total ascending', 'total descending', 'min - ascending', 'min descending', 'max ascending', 'max - descending', 'sum ascending', 'sum descending', 'mean - ascending', 'mean descending', 'geometric mean ascending', - 'geometric mean descending', 'median ascending', 'median - descending'] + + - One of the following enumeration values: + + ['trace', 'category ascending', 'category descending', + 'array', 'total ascending', 'total descending', 'min + ascending', 'min descending', 'max ascending', 'max + descending', 'sum ascending', 'sum descending', 'mean + ascending', 'mean descending', 'geometric mean ascending', + 'geometric mean descending', 'median ascending', 'median + descending'] Returns ------- @@ -359,8 +369,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -424,7 +436,8 @@ def gridwidth(self): Sets the width (in px) of the grid lines. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -500,8 +513,10 @@ def layer(self): False to show markers and/or text nodes above this axis. The 'layer' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['above traces', 'below traces'] + + - One of the following enumeration values: + + ['above traces', 'below traces'] Returns ------- @@ -541,7 +556,8 @@ def linewidth(self): Sets the width (in px) of the axis line. The 'linewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -594,7 +610,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -670,8 +687,10 @@ def rangemode(self): cartesian axes). The 'rangemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['tozero', 'nonnegative', 'normal'] + + - One of the following enumeration values: + + ['tozero', 'nonnegative', 'normal'] Returns ------- @@ -710,8 +729,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -787,8 +808,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -806,8 +829,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -826,8 +851,10 @@ def side(self): labels appear. The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['clockwise', 'counterclockwise'] + + - One of the following enumeration values: + + ['clockwise', 'counterclockwise'] Returns ------- @@ -1029,7 +1056,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1053,8 +1081,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -1093,8 +1123,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -1206,7 +1238,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1245,8 +1278,10 @@ def type(self): referenced the axis in question. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['-', 'linear', 'log', 'date', 'category'] + + - One of the following enumeration values: + + ['-', 'linear', 'log', 'date', 'category'] Returns ------- diff --git a/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py b/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py index 9efb34008b..b9c1206cf7 100644 --- a/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py +++ b/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py b/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py index c47da5f2c4..8c1282daa9 100644 --- a/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py +++ b/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/polar/radialaxis/title/_font.py b/plotly/graph_objects/layout/polar/radialaxis/title/_font.py index beb1ca8c74..13b61d7478 100644 --- a/plotly/graph_objects/layout/polar/radialaxis/title/_font.py +++ b/plotly/graph_objects/layout/polar/radialaxis/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/scene/_annotation.py b/plotly/graph_objects/layout/scene/_annotation.py index 417ffa6b8e..34d51defb6 100644 --- a/plotly/graph_objects/layout/scene/_annotation.py +++ b/plotly/graph_objects/layout/scene/_annotation.py @@ -57,8 +57,10 @@ def align(self): set to override the text width. The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -140,7 +142,8 @@ def arrowsize(self): wide as the line. The 'arrowsize' property is a number and may be specified as: - - An int or float in the interval [0.3, inf] + + - An int or float in the interval [0.3, inf] Returns ------- @@ -158,7 +161,8 @@ def arrowwidth(self): Sets the width (in px) of annotation arrow line. The 'arrowwidth' property is a number and may be specified as: - - An int or float in the interval [0.1, inf] + + - An int or float in the interval [0.1, inf] Returns ------- @@ -178,7 +182,7 @@ def ax(self): The 'ax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -198,7 +202,7 @@ def ay(self): The 'ay' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -261,7 +265,8 @@ def borderpad(self): border. The 'borderpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -280,7 +285,8 @@ def borderwidth(self): `text`. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -343,7 +349,8 @@ def height(self): the text set the box height. Taller text will be clipped. The 'height' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -425,7 +432,8 @@ def opacity(self): Sets the opacity of the annotation (text + arrow). The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -467,7 +475,8 @@ def standoff(self): / `yshift` which moves everything by this amount. The 'standoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -506,7 +515,8 @@ def startarrowsize(self): wide as the line. The 'startarrowsize' property is a number and may be specified as: - - An int or float in the interval [0.3, inf] + + - An int or float in the interval [0.3, inf] Returns ------- @@ -528,7 +538,8 @@ def startstandoff(self): `xshift` / `yshift` which moves everything by this amount. The 'startstandoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -618,8 +629,10 @@ def valign(self): text height. The 'valign' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -657,7 +670,8 @@ def width(self): is no automatic wrapping; use
to start a new line. The 'width' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -700,8 +714,10 @@ def xanchor(self): corresponds to the closest side. The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'left', 'center', 'right'] + + - One of the following enumeration values: + + ['auto', 'left', 'center', 'right'] Returns ------- @@ -721,7 +737,7 @@ def xshift(self): The 'xshift' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -764,8 +780,10 @@ def yanchor(self): to the closest side. The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['auto', 'top', 'middle', 'bottom'] Returns ------- @@ -785,7 +803,7 @@ def yshift(self): The 'yshift' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/scene/_aspectratio.py b/plotly/graph_objects/layout/scene/_aspectratio.py index 933cceca6a..d5f8eb47d4 100644 --- a/plotly/graph_objects/layout/scene/_aspectratio.py +++ b/plotly/graph_objects/layout/scene/_aspectratio.py @@ -14,7 +14,8 @@ class Aspectratio(_BaseLayoutHierarchyType): def x(self): """ The 'x' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -30,7 +31,8 @@ def x(self, val): def y(self): """ The 'y' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -46,7 +48,8 @@ def y(self, val): def z(self): """ The 'z' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/scene/_domain.py b/plotly/graph_objects/layout/scene/_domain.py index 6ec3ac30f8..45e88e0f5a 100644 --- a/plotly/graph_objects/layout/scene/_domain.py +++ b/plotly/graph_objects/layout/scene/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/layout/scene/_xaxis.py b/plotly/graph_objects/layout/scene/_xaxis.py index 11ffc974ac..a45e719b6c 100644 --- a/plotly/graph_objects/layout/scene/_xaxis.py +++ b/plotly/graph_objects/layout/scene/_xaxis.py @@ -86,9 +86,11 @@ def autorange(self): and reverses the axis direction. The 'autorange' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'reversed', 'min reversed', 'max reversed', - 'min', 'max'] + + - One of the following enumeration values: + + [True, False, 'reversed', 'min reversed', 'max reversed', + 'min', 'max'] Returns ------- @@ -128,8 +130,10 @@ def autotypenumbers(self): detection. Defaults to layout.autotypenumbers. The 'autotypenumbers' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['convert types', 'strict'] + + - One of the following enumeration values: + + ['convert types', 'strict'] Returns ------- @@ -172,11 +176,13 @@ def calendar(self): global `layout.calendar` The 'calendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -247,14 +253,16 @@ def categoryorder(self): of all the values. The 'categoryorder' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['trace', 'category ascending', 'category descending', - 'array', 'total ascending', 'total descending', 'min - ascending', 'min descending', 'max ascending', 'max - descending', 'sum ascending', 'sum descending', 'mean - ascending', 'mean descending', 'geometric mean ascending', - 'geometric mean descending', 'median ascending', 'median - descending'] + + - One of the following enumeration values: + + ['trace', 'category ascending', 'category descending', + 'array', 'total ascending', 'total descending', 'min + ascending', 'min descending', 'max ascending', 'max + descending', 'sum ascending', 'sum descending', 'mean + ascending', 'mean descending', 'geometric mean ascending', + 'geometric mean descending', 'median ascending', 'median + descending'] Returns ------- @@ -337,8 +345,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -378,7 +388,8 @@ def gridwidth(self): Sets the width (in px) of the grid lines. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -471,7 +482,8 @@ def linewidth(self): Sets the width (in px) of the axis line. The 'linewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -524,7 +536,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -547,8 +560,10 @@ def mirror(self): ticks are mirrored on all shared-axes subplots. The 'mirror' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, 'ticks', False, 'all', 'allticks'] + + - One of the following enumeration values: + + [True, 'ticks', False, 'all', 'allticks'] Returns ------- @@ -624,8 +639,10 @@ def rangemode(self): linear axes. The 'rangemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'tozero', 'nonnegative'] + + - One of the following enumeration values: + + ['normal', 'tozero', 'nonnegative'] Returns ------- @@ -700,8 +717,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -796,8 +815,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -815,8 +836,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -875,7 +898,8 @@ def spikethickness(self): Sets the thickness (in px) of the spikes. The 'spikethickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1054,7 +1078,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1078,8 +1103,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -1118,8 +1145,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -1231,7 +1260,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1270,8 +1300,10 @@ def type(self): referenced the axis in question. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['-', 'linear', 'log', 'date', 'category'] + + - One of the following enumeration values: + + ['-', 'linear', 'log', 'date', 'category'] Returns ------- @@ -1352,7 +1384,7 @@ def zerolinewidth(self): The 'zerolinewidth' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/scene/_yaxis.py b/plotly/graph_objects/layout/scene/_yaxis.py index 9d4522f09d..45370b36e0 100644 --- a/plotly/graph_objects/layout/scene/_yaxis.py +++ b/plotly/graph_objects/layout/scene/_yaxis.py @@ -86,9 +86,11 @@ def autorange(self): and reverses the axis direction. The 'autorange' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'reversed', 'min reversed', 'max reversed', - 'min', 'max'] + + - One of the following enumeration values: + + [True, False, 'reversed', 'min reversed', 'max reversed', + 'min', 'max'] Returns ------- @@ -128,8 +130,10 @@ def autotypenumbers(self): detection. Defaults to layout.autotypenumbers. The 'autotypenumbers' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['convert types', 'strict'] + + - One of the following enumeration values: + + ['convert types', 'strict'] Returns ------- @@ -172,11 +176,13 @@ def calendar(self): global `layout.calendar` The 'calendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -247,14 +253,16 @@ def categoryorder(self): of all the values. The 'categoryorder' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['trace', 'category ascending', 'category descending', - 'array', 'total ascending', 'total descending', 'min - ascending', 'min descending', 'max ascending', 'max - descending', 'sum ascending', 'sum descending', 'mean - ascending', 'mean descending', 'geometric mean ascending', - 'geometric mean descending', 'median ascending', 'median - descending'] + + - One of the following enumeration values: + + ['trace', 'category ascending', 'category descending', + 'array', 'total ascending', 'total descending', 'min + ascending', 'min descending', 'max ascending', 'max + descending', 'sum ascending', 'sum descending', 'mean + ascending', 'mean descending', 'geometric mean ascending', + 'geometric mean descending', 'median ascending', 'median + descending'] Returns ------- @@ -337,8 +345,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -378,7 +388,8 @@ def gridwidth(self): Sets the width (in px) of the grid lines. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -471,7 +482,8 @@ def linewidth(self): Sets the width (in px) of the axis line. The 'linewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -524,7 +536,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -547,8 +560,10 @@ def mirror(self): ticks are mirrored on all shared-axes subplots. The 'mirror' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, 'ticks', False, 'all', 'allticks'] + + - One of the following enumeration values: + + [True, 'ticks', False, 'all', 'allticks'] Returns ------- @@ -624,8 +639,10 @@ def rangemode(self): linear axes. The 'rangemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'tozero', 'nonnegative'] + + - One of the following enumeration values: + + ['normal', 'tozero', 'nonnegative'] Returns ------- @@ -700,8 +717,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -796,8 +815,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -815,8 +836,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -875,7 +898,8 @@ def spikethickness(self): Sets the thickness (in px) of the spikes. The 'spikethickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1054,7 +1078,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1078,8 +1103,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -1118,8 +1145,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -1231,7 +1260,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1270,8 +1300,10 @@ def type(self): referenced the axis in question. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['-', 'linear', 'log', 'date', 'category'] + + - One of the following enumeration values: + + ['-', 'linear', 'log', 'date', 'category'] Returns ------- @@ -1352,7 +1384,7 @@ def zerolinewidth(self): The 'zerolinewidth' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/scene/_zaxis.py b/plotly/graph_objects/layout/scene/_zaxis.py index e801b274a9..36904b2ead 100644 --- a/plotly/graph_objects/layout/scene/_zaxis.py +++ b/plotly/graph_objects/layout/scene/_zaxis.py @@ -86,9 +86,11 @@ def autorange(self): and reverses the axis direction. The 'autorange' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'reversed', 'min reversed', 'max reversed', - 'min', 'max'] + + - One of the following enumeration values: + + [True, False, 'reversed', 'min reversed', 'max reversed', + 'min', 'max'] Returns ------- @@ -128,8 +130,10 @@ def autotypenumbers(self): detection. Defaults to layout.autotypenumbers. The 'autotypenumbers' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['convert types', 'strict'] + + - One of the following enumeration values: + + ['convert types', 'strict'] Returns ------- @@ -172,11 +176,13 @@ def calendar(self): global `layout.calendar` The 'calendar' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['chinese', 'coptic', 'discworld', 'ethiopian', - 'gregorian', 'hebrew', 'islamic', 'jalali', 'julian', - 'mayan', 'nanakshahi', 'nepali', 'persian', 'taiwan', - 'thai', 'ummalqura'] + + - One of the following enumeration values: + + ['chinese', 'coptic', 'discworld', 'ethiopian', 'gregorian', + 'hebrew', 'islamic', 'jalali', 'julian', 'mayan', + 'nanakshahi', 'nepali', 'persian', 'taiwan', 'thai', + 'ummalqura'] Returns ------- @@ -247,14 +253,16 @@ def categoryorder(self): of all the values. The 'categoryorder' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['trace', 'category ascending', 'category descending', - 'array', 'total ascending', 'total descending', 'min - ascending', 'min descending', 'max ascending', 'max - descending', 'sum ascending', 'sum descending', 'mean - ascending', 'mean descending', 'geometric mean ascending', - 'geometric mean descending', 'median ascending', 'median - descending'] + + - One of the following enumeration values: + + ['trace', 'category ascending', 'category descending', + 'array', 'total ascending', 'total descending', 'min + ascending', 'min descending', 'max ascending', 'max + descending', 'sum ascending', 'sum descending', 'mean + ascending', 'mean descending', 'geometric mean ascending', + 'geometric mean descending', 'median ascending', 'median + descending'] Returns ------- @@ -337,8 +345,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -378,7 +388,8 @@ def gridwidth(self): Sets the width (in px) of the grid lines. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -471,7 +482,8 @@ def linewidth(self): Sets the width (in px) of the axis line. The 'linewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -524,7 +536,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -547,8 +560,10 @@ def mirror(self): ticks are mirrored on all shared-axes subplots. The 'mirror' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, 'ticks', False, 'all', 'allticks'] + + - One of the following enumeration values: + + [True, 'ticks', False, 'all', 'allticks'] Returns ------- @@ -624,8 +639,10 @@ def rangemode(self): linear axes. The 'rangemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'tozero', 'nonnegative'] + + - One of the following enumeration values: + + ['normal', 'tozero', 'nonnegative'] Returns ------- @@ -700,8 +717,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -796,8 +815,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -815,8 +836,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -875,7 +898,8 @@ def spikethickness(self): Sets the thickness (in px) of the spikes. The 'spikethickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1054,7 +1078,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1078,8 +1103,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -1118,8 +1145,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -1231,7 +1260,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1270,8 +1300,10 @@ def type(self): referenced the axis in question. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['-', 'linear', 'log', 'date', 'category'] + + - One of the following enumeration values: + + ['-', 'linear', 'log', 'date', 'category'] Returns ------- @@ -1352,7 +1384,7 @@ def zerolinewidth(self): The 'zerolinewidth' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/scene/annotation/_font.py b/plotly/graph_objects/layout/scene/annotation/_font.py index b737fc2cd8..51be6330ea 100644 --- a/plotly/graph_objects/layout/scene/annotation/_font.py +++ b/plotly/graph_objects/layout/scene/annotation/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py b/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py index a6dc60e951..1054d19c61 100644 --- a/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/scene/camera/_center.py b/plotly/graph_objects/layout/scene/camera/_center.py index d9872315c5..4f5d529a8f 100644 --- a/plotly/graph_objects/layout/scene/camera/_center.py +++ b/plotly/graph_objects/layout/scene/camera/_center.py @@ -15,7 +15,7 @@ def x(self): """ The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -32,7 +32,7 @@ def y(self): """ The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -49,7 +49,7 @@ def z(self): """ The 'z' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/scene/camera/_eye.py b/plotly/graph_objects/layout/scene/camera/_eye.py index 34a5db7c48..7590cc710f 100644 --- a/plotly/graph_objects/layout/scene/camera/_eye.py +++ b/plotly/graph_objects/layout/scene/camera/_eye.py @@ -15,7 +15,7 @@ def x(self): """ The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -32,7 +32,7 @@ def y(self): """ The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -49,7 +49,7 @@ def z(self): """ The 'z' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/scene/camera/_projection.py b/plotly/graph_objects/layout/scene/camera/_projection.py index d294281137..67b7ed9a30 100644 --- a/plotly/graph_objects/layout/scene/camera/_projection.py +++ b/plotly/graph_objects/layout/scene/camera/_projection.py @@ -17,8 +17,10 @@ def type(self): "perspective" or "orthographic". The default is "perspective". The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['perspective', 'orthographic'] + + - One of the following enumeration values: + + ['perspective', 'orthographic'] Returns ------- diff --git a/plotly/graph_objects/layout/scene/camera/_up.py b/plotly/graph_objects/layout/scene/camera/_up.py index 5af6c477d8..4ed8e5bf53 100644 --- a/plotly/graph_objects/layout/scene/camera/_up.py +++ b/plotly/graph_objects/layout/scene/camera/_up.py @@ -15,7 +15,7 @@ def x(self): """ The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -32,7 +32,7 @@ def y(self): """ The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -49,7 +49,7 @@ def z(self): """ The 'z' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/scene/xaxis/_tickfont.py b/plotly/graph_objects/layout/scene/xaxis/_tickfont.py index db9f8a5b42..7be1bd405d 100644 --- a/plotly/graph_objects/layout/scene/xaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/xaxis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/scene/xaxis/title/_font.py b/plotly/graph_objects/layout/scene/xaxis/title/_font.py index 6813ffa081..7ad25ea71a 100644 --- a/plotly/graph_objects/layout/scene/xaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/xaxis/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/scene/yaxis/_tickfont.py b/plotly/graph_objects/layout/scene/yaxis/_tickfont.py index c7c77b709e..343506ac74 100644 --- a/plotly/graph_objects/layout/scene/yaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/yaxis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/scene/yaxis/title/_font.py b/plotly/graph_objects/layout/scene/yaxis/title/_font.py index acb63042b2..ab71b1ff18 100644 --- a/plotly/graph_objects/layout/scene/yaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/yaxis/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/scene/zaxis/_tickfont.py b/plotly/graph_objects/layout/scene/zaxis/_tickfont.py index a6aabd4e34..e943676db8 100644 --- a/plotly/graph_objects/layout/scene/zaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/zaxis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/scene/zaxis/title/_font.py b/plotly/graph_objects/layout/scene/zaxis/title/_font.py index f1bc95a414..8f55e99021 100644 --- a/plotly/graph_objects/layout/scene/zaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/zaxis/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/selection/_line.py b/plotly/graph_objects/layout/selection/_line.py index 8101a84499..09108d307c 100644 --- a/plotly/graph_objects/layout/selection/_line.py +++ b/plotly/graph_objects/layout/selection/_line.py @@ -62,7 +62,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- diff --git a/plotly/graph_objects/layout/shape/_label.py b/plotly/graph_objects/layout/shape/_label.py index 6e33e038cd..c6712e2214 100644 --- a/plotly/graph_objects/layout/shape/_label.py +++ b/plotly/graph_objects/layout/shape/_label.py @@ -46,7 +46,8 @@ def padding(self): Sets padding (in px) between edge of label and edge of shape. The 'padding' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -112,10 +113,12 @@ def textposition(self): circles, and paths; "middle" for lines. The 'textposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle left', - 'middle center', 'middle right', 'bottom left', 'bottom - center', 'bottom right', 'start', 'middle', 'end'] + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle left', 'middle + center', 'middle right', 'bottom left', 'bottom center', + 'bottom right', 'start', 'middle', 'end'] Returns ------- @@ -176,8 +179,10 @@ def xanchor(self): the shape. The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'left', 'center', 'right'] + + - One of the following enumeration values: + + ['auto', 'left', 'center', 'right'] Returns ------- @@ -199,8 +204,10 @@ def yanchor(self): label text lines up with the top-most edge of the shape. The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/layout/shape/_line.py b/plotly/graph_objects/layout/shape/_line.py index 2cc33334e1..67984aae86 100644 --- a/plotly/graph_objects/layout/shape/_line.py +++ b/plotly/graph_objects/layout/shape/_line.py @@ -62,7 +62,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/shape/label/_font.py b/plotly/graph_objects/layout/shape/label/_font.py index a8222b6b1f..62e624efda 100644 --- a/plotly/graph_objects/layout/shape/label/_font.py +++ b/plotly/graph_objects/layout/shape/label/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py b/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py index afa129818d..f1ec6a9307 100644 --- a/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py +++ b/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/slider/_currentvalue.py b/plotly/graph_objects/layout/slider/_currentvalue.py index 858672d86d..aab3bab6be 100644 --- a/plotly/graph_objects/layout/slider/_currentvalue.py +++ b/plotly/graph_objects/layout/slider/_currentvalue.py @@ -39,7 +39,7 @@ def offset(self): The 'offset' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -116,8 +116,10 @@ def xanchor(self): the slider. The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- diff --git a/plotly/graph_objects/layout/slider/_font.py b/plotly/graph_objects/layout/slider/_font.py index fd3d0e1d88..626d4de7af 100644 --- a/plotly/graph_objects/layout/slider/_font.py +++ b/plotly/graph_objects/layout/slider/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/slider/_pad.py b/plotly/graph_objects/layout/slider/_pad.py index b3fff087fb..060775aa07 100644 --- a/plotly/graph_objects/layout/slider/_pad.py +++ b/plotly/graph_objects/layout/slider/_pad.py @@ -18,7 +18,7 @@ def b(self): The 'b' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -38,7 +38,7 @@ def l(self): The 'l' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -58,7 +58,7 @@ def r(self): The 'r' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -77,7 +77,7 @@ def t(self): The 't' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/slider/_step.py b/plotly/graph_objects/layout/slider/_step.py index 1bf953dc0f..2d007ee321 100644 --- a/plotly/graph_objects/layout/slider/_step.py +++ b/plotly/graph_objects/layout/slider/_step.py @@ -99,8 +99,10 @@ def method(self): JavaScript. The 'method' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['restyle', 'relayout', 'animate', 'update', 'skip'] + + - One of the following enumeration values: + + ['restyle', 'relayout', 'animate', 'update', 'skip'] Returns ------- diff --git a/plotly/graph_objects/layout/slider/_transition.py b/plotly/graph_objects/layout/slider/_transition.py index 34b485c608..69b231024a 100644 --- a/plotly/graph_objects/layout/slider/_transition.py +++ b/plotly/graph_objects/layout/slider/_transition.py @@ -16,7 +16,8 @@ def duration(self): Sets the duration of the slider transition The 'duration' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -34,16 +35,17 @@ def easing(self): Sets the easing function of the slider transition The 'easing' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['linear', 'quad', 'cubic', 'sin', 'exp', 'circle', - 'elastic', 'back', 'bounce', 'linear-in', 'quad-in', - 'cubic-in', 'sin-in', 'exp-in', 'circle-in', 'elastic-in', - 'back-in', 'bounce-in', 'linear-out', 'quad-out', - 'cubic-out', 'sin-out', 'exp-out', 'circle-out', - 'elastic-out', 'back-out', 'bounce-out', 'linear-in-out', - 'quad-in-out', 'cubic-in-out', 'sin-in-out', 'exp-in-out', - 'circle-in-out', 'elastic-in-out', 'back-in-out', - 'bounce-in-out'] + + - One of the following enumeration values: + + ['linear', 'quad', 'cubic', 'sin', 'exp', 'circle', 'elastic', + 'back', 'bounce', 'linear-in', 'quad-in', 'cubic-in', + 'sin-in', 'exp-in', 'circle-in', 'elastic-in', 'back-in', + 'bounce-in', 'linear-out', 'quad-out', 'cubic-out', 'sin-out', + 'exp-out', 'circle-out', 'elastic-out', 'back-out', + 'bounce-out', 'linear-in-out', 'quad-in-out', 'cubic-in-out', + 'sin-in-out', 'exp-in-out', 'circle-in-out', 'elastic-in-out', + 'back-in-out', 'bounce-in-out'] Returns ------- diff --git a/plotly/graph_objects/layout/slider/currentvalue/_font.py b/plotly/graph_objects/layout/slider/currentvalue/_font.py index 8ca5a8fdf5..d9c9120a4a 100644 --- a/plotly/graph_objects/layout/slider/currentvalue/_font.py +++ b/plotly/graph_objects/layout/slider/currentvalue/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/smith/_domain.py b/plotly/graph_objects/layout/smith/_domain.py index 463a9641db..f89a6e49a3 100644 --- a/plotly/graph_objects/layout/smith/_domain.py +++ b/plotly/graph_objects/layout/smith/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/layout/smith/_imaginaryaxis.py b/plotly/graph_objects/layout/smith/_imaginaryaxis.py index 7fb998b127..d0515717a3 100644 --- a/plotly/graph_objects/layout/smith/_imaginaryaxis.py +++ b/plotly/graph_objects/layout/smith/_imaginaryaxis.py @@ -113,7 +113,8 @@ def gridwidth(self): Sets the width (in px) of the grid lines. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -189,8 +190,10 @@ def layer(self): False to show markers and/or text nodes above this axis. The 'layer' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['above traces', 'below traces'] + + - One of the following enumeration values: + + ['above traces', 'below traces'] Returns ------- @@ -230,7 +233,8 @@ def linewidth(self): Sets the width (in px) of the axis line. The 'linewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -306,8 +310,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -325,8 +331,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -415,7 +423,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -454,8 +463,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -529,7 +540,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/smith/_realaxis.py b/plotly/graph_objects/layout/smith/_realaxis.py index 8d68d5a4c2..96e3b83ef4 100644 --- a/plotly/graph_objects/layout/smith/_realaxis.py +++ b/plotly/graph_objects/layout/smith/_realaxis.py @@ -115,7 +115,8 @@ def gridwidth(self): Sets the width (in px) of the grid lines. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -191,8 +192,10 @@ def layer(self): False to show markers and/or text nodes above this axis. The 'layer' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['above traces', 'below traces'] + + - One of the following enumeration values: + + ['above traces', 'below traces'] Returns ------- @@ -232,7 +235,8 @@ def linewidth(self): Sets the width (in px) of the axis line. The 'linewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -308,8 +312,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -327,8 +333,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -347,8 +355,10 @@ def side(self): labels appear. The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'bottom'] + + - One of the following enumeration values: + + ['top', 'bottom'] Returns ------- @@ -459,7 +469,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -498,8 +509,10 @@ def ticks(self): above (below) the axis line. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'bottom', ''] + + - One of the following enumeration values: + + ['top', 'bottom', ''] Returns ------- @@ -572,7 +585,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py b/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py index 67a639f9f1..6aab049821 100644 --- a/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py +++ b/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/smith/realaxis/_tickfont.py b/plotly/graph_objects/layout/smith/realaxis/_tickfont.py index a784005e7f..74bc9968a0 100644 --- a/plotly/graph_objects/layout/smith/realaxis/_tickfont.py +++ b/plotly/graph_objects/layout/smith/realaxis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/ternary/_aaxis.py b/plotly/graph_objects/layout/ternary/_aaxis.py index 4b815598f7..c33a332320 100644 --- a/plotly/graph_objects/layout/ternary/_aaxis.py +++ b/plotly/graph_objects/layout/ternary/_aaxis.py @@ -123,8 +123,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -188,7 +190,8 @@ def gridwidth(self): Sets the width (in px) of the grid lines. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -264,8 +267,10 @@ def layer(self): False to show markers and/or text nodes above this axis. The 'layer' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['above traces', 'below traces'] + + - One of the following enumeration values: + + ['above traces', 'below traces'] Returns ------- @@ -305,7 +310,8 @@ def linewidth(self): Sets the width (in px) of the axis line. The 'linewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -325,7 +331,8 @@ def min(self): axes. The full view corresponds to all the minima set to zero. The 'min' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -344,7 +351,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -405,8 +413,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -482,8 +492,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -501,8 +513,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -705,7 +719,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -729,8 +744,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -769,8 +786,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -882,7 +901,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/ternary/_baxis.py b/plotly/graph_objects/layout/ternary/_baxis.py index 75a6677cd5..c53130de61 100644 --- a/plotly/graph_objects/layout/ternary/_baxis.py +++ b/plotly/graph_objects/layout/ternary/_baxis.py @@ -123,8 +123,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -188,7 +190,8 @@ def gridwidth(self): Sets the width (in px) of the grid lines. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -264,8 +267,10 @@ def layer(self): False to show markers and/or text nodes above this axis. The 'layer' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['above traces', 'below traces'] + + - One of the following enumeration values: + + ['above traces', 'below traces'] Returns ------- @@ -305,7 +310,8 @@ def linewidth(self): Sets the width (in px) of the axis line. The 'linewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -325,7 +331,8 @@ def min(self): axes. The full view corresponds to all the minima set to zero. The 'min' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -344,7 +351,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -405,8 +413,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -482,8 +492,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -501,8 +513,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -705,7 +719,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -729,8 +744,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -769,8 +786,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -882,7 +901,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/ternary/_caxis.py b/plotly/graph_objects/layout/ternary/_caxis.py index d413e7ad5c..e070e2e695 100644 --- a/plotly/graph_objects/layout/ternary/_caxis.py +++ b/plotly/graph_objects/layout/ternary/_caxis.py @@ -123,8 +123,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -188,7 +190,8 @@ def gridwidth(self): Sets the width (in px) of the grid lines. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -264,8 +267,10 @@ def layer(self): False to show markers and/or text nodes above this axis. The 'layer' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['above traces', 'below traces'] + + - One of the following enumeration values: + + ['above traces', 'below traces'] Returns ------- @@ -305,7 +310,8 @@ def linewidth(self): Sets the width (in px) of the axis line. The 'linewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -325,7 +331,8 @@ def min(self): axes. The full view corresponds to all the minima set to zero. The 'min' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -344,7 +351,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -405,8 +413,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -482,8 +492,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -501,8 +513,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -705,7 +719,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -729,8 +744,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -769,8 +786,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -882,7 +901,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/ternary/_domain.py b/plotly/graph_objects/layout/ternary/_domain.py index 676854d2cc..509fea90fa 100644 --- a/plotly/graph_objects/layout/ternary/_domain.py +++ b/plotly/graph_objects/layout/ternary/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py b/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py index 1a0efdbd54..c2f8af7a41 100644 --- a/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/ternary/aaxis/title/_font.py b/plotly/graph_objects/layout/ternary/aaxis/title/_font.py index 8e1c135340..6adbdb7fe4 100644 --- a/plotly/graph_objects/layout/ternary/aaxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/aaxis/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/ternary/baxis/_tickfont.py b/plotly/graph_objects/layout/ternary/baxis/_tickfont.py index 0d97736600..8725b9179c 100644 --- a/plotly/graph_objects/layout/ternary/baxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/baxis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/ternary/baxis/title/_font.py b/plotly/graph_objects/layout/ternary/baxis/title/_font.py index 0fbbc277ad..9ae2e3bb7c 100644 --- a/plotly/graph_objects/layout/ternary/baxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/baxis/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/ternary/caxis/_tickfont.py b/plotly/graph_objects/layout/ternary/caxis/_tickfont.py index 350f2a8ca1..cbfb25bee7 100644 --- a/plotly/graph_objects/layout/ternary/caxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/caxis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/ternary/caxis/title/_font.py b/plotly/graph_objects/layout/ternary/caxis/title/_font.py index be4fd02f42..ffec9645b2 100644 --- a/plotly/graph_objects/layout/ternary/caxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/caxis/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/title/_font.py b/plotly/graph_objects/layout/title/_font.py index 86d00b016d..e339bae120 100644 --- a/plotly/graph_objects/layout/title/_font.py +++ b/plotly/graph_objects/layout/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/title/_pad.py b/plotly/graph_objects/layout/title/_pad.py index bf338c4224..40d2a78d3d 100644 --- a/plotly/graph_objects/layout/title/_pad.py +++ b/plotly/graph_objects/layout/title/_pad.py @@ -18,7 +18,7 @@ def b(self): The 'b' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -38,7 +38,7 @@ def l(self): The 'l' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -58,7 +58,7 @@ def r(self): The 'r' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -77,7 +77,7 @@ def t(self): The 't' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/title/subtitle/_font.py b/plotly/graph_objects/layout/title/subtitle/_font.py index 894789bf68..7e42f04b3a 100644 --- a/plotly/graph_objects/layout/title/subtitle/_font.py +++ b/plotly/graph_objects/layout/title/subtitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/updatemenu/_button.py b/plotly/graph_objects/layout/updatemenu/_button.py index 073bc121e7..070e623a45 100644 --- a/plotly/graph_objects/layout/updatemenu/_button.py +++ b/plotly/graph_objects/layout/updatemenu/_button.py @@ -125,8 +125,10 @@ def method(self): and attach to updatemenu events manually via JavaScript. The 'method' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['restyle', 'relayout', 'animate', 'update', 'skip'] + + - One of the following enumeration values: + + ['restyle', 'relayout', 'animate', 'update', 'skip'] Returns ------- diff --git a/plotly/graph_objects/layout/updatemenu/_font.py b/plotly/graph_objects/layout/updatemenu/_font.py index 7dfc0ac765..816f6271a2 100644 --- a/plotly/graph_objects/layout/updatemenu/_font.py +++ b/plotly/graph_objects/layout/updatemenu/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/updatemenu/_pad.py b/plotly/graph_objects/layout/updatemenu/_pad.py index 3141353b1b..3421780439 100644 --- a/plotly/graph_objects/layout/updatemenu/_pad.py +++ b/plotly/graph_objects/layout/updatemenu/_pad.py @@ -18,7 +18,7 @@ def b(self): The 'b' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -38,7 +38,7 @@ def l(self): The 'l' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -58,7 +58,7 @@ def r(self): The 'r' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -77,7 +77,7 @@ def t(self): The 't' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_minor.py b/plotly/graph_objects/layout/xaxis/_minor.py index 69e094ca53..90d590c265 100644 --- a/plotly/graph_objects/layout/xaxis/_minor.py +++ b/plotly/graph_objects/layout/xaxis/_minor.py @@ -113,7 +113,8 @@ def gridwidth(self): Sets the width (in px) of the grid lines. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -219,7 +220,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -243,8 +245,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -264,8 +268,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -320,7 +326,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_rangebreak.py b/plotly/graph_objects/layout/xaxis/_rangebreak.py index d37c810d47..0af75bc0c9 100644 --- a/plotly/graph_objects/layout/xaxis/_rangebreak.py +++ b/plotly/graph_objects/layout/xaxis/_rangebreak.py @@ -49,7 +49,8 @@ def dvalue(self): milliseconds. The 'dvalue' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -120,8 +121,10 @@ def pattern(self): 5pm to 8am (i.e. skips non-work hours). The 'pattern' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['day of week', 'hour', ''] + + - One of the following enumeration values: + + ['day of week', 'hour', ''] Returns ------- @@ -167,8 +170,10 @@ def values(self): values along the axis. The 'values' property is an info array that may be specified as: + * a list of elements where: - The 'values[i]' property accepts values of any type + + The 'values[i]' property accepts values of any type Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_rangeselector.py b/plotly/graph_objects/layout/xaxis/_rangeselector.py index ea9e766370..5bd07ba7e7 100644 --- a/plotly/graph_objects/layout/xaxis/_rangeselector.py +++ b/plotly/graph_objects/layout/xaxis/_rangeselector.py @@ -96,7 +96,8 @@ def borderwidth(self): selector. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -202,7 +203,8 @@ def x(self): selector. The 'x' property is a number and may be specified as: - - An int or float in the interval [-2, 3] + + - An int or float in the interval [-2, 3] Returns ------- @@ -222,8 +224,10 @@ def xanchor(self): "right" of the range selector. The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'left', 'center', 'right'] + + - One of the following enumeration values: + + ['auto', 'left', 'center', 'right'] Returns ------- @@ -242,7 +246,8 @@ def y(self): selector. The 'y' property is a number and may be specified as: - - An int or float in the interval [-2, 3] + + - An int or float in the interval [-2, 3] Returns ------- @@ -262,8 +267,10 @@ def yanchor(self): the range selector. The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['auto', 'top', 'middle', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_rangeslider.py b/plotly/graph_objects/layout/xaxis/_rangeslider.py index 053307a8ee..25a374e0ac 100644 --- a/plotly/graph_objects/layout/xaxis/_rangeslider.py +++ b/plotly/graph_objects/layout/xaxis/_rangeslider.py @@ -139,7 +139,8 @@ def thickness(self): area height. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_tickfont.py b/plotly/graph_objects/layout/xaxis/_tickfont.py index 73f41b84f5..b90a339bca 100644 --- a/plotly/graph_objects/layout/xaxis/_tickfont.py +++ b/plotly/graph_objects/layout/xaxis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_title.py b/plotly/graph_objects/layout/xaxis/_title.py index 8ad61b0b8e..9a76fbb5f3 100644 --- a/plotly/graph_objects/layout/xaxis/_title.py +++ b/plotly/graph_objects/layout/xaxis/_title.py @@ -44,7 +44,8 @@ def standoff(self): title at given standoff distance. The 'standoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/rangeselector/_button.py b/plotly/graph_objects/layout/xaxis/rangeselector/_button.py index aea4e5a862..ca08b818aa 100644 --- a/plotly/graph_objects/layout/xaxis/rangeselector/_button.py +++ b/plotly/graph_objects/layout/xaxis/rangeselector/_button.py @@ -25,7 +25,8 @@ def count(self): `step` to specify the update interval. The 'count' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -88,9 +89,10 @@ def step(self): range by. The 'step' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['month', 'year', 'day', 'hour', 'minute', 'second', - 'all'] + + - One of the following enumeration values: + + ['month', 'year', 'day', 'hour', 'minute', 'second', 'all'] Returns ------- @@ -116,8 +118,10 @@ def stepmode(self): calendar. The 'stepmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['backward', 'todate'] + + - One of the following enumeration values: + + ['backward', 'todate'] Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/rangeselector/_font.py b/plotly/graph_objects/layout/xaxis/rangeselector/_font.py index 11e04a4853..fbe19d8ef2 100644 --- a/plotly/graph_objects/layout/xaxis/rangeselector/_font.py +++ b/plotly/graph_objects/layout/xaxis/rangeselector/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/rangeslider/_yaxis.py b/plotly/graph_objects/layout/xaxis/rangeslider/_yaxis.py index ef9f7f39f3..0a3ca81de6 100644 --- a/plotly/graph_objects/layout/xaxis/rangeslider/_yaxis.py +++ b/plotly/graph_objects/layout/xaxis/rangeslider/_yaxis.py @@ -43,8 +43,10 @@ def rangemode(self): the corresponding y-axis on the main subplot is used. The 'rangemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'fixed', 'match'] + + - One of the following enumeration values: + + ['auto', 'fixed', 'match'] Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/title/_font.py b/plotly/graph_objects/layout/xaxis/title/_font.py index cf9dd55677..93f131b3c9 100644 --- a/plotly/graph_objects/layout/xaxis/title/_font.py +++ b/plotly/graph_objects/layout/xaxis/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/_minor.py b/plotly/graph_objects/layout/yaxis/_minor.py index 9cbf71d773..c9c0490da2 100644 --- a/plotly/graph_objects/layout/yaxis/_minor.py +++ b/plotly/graph_objects/layout/yaxis/_minor.py @@ -113,7 +113,8 @@ def gridwidth(self): Sets the width (in px) of the grid lines. The 'gridwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -219,7 +220,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -243,8 +245,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -264,8 +268,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -320,7 +326,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/_rangebreak.py b/plotly/graph_objects/layout/yaxis/_rangebreak.py index fafbbd7706..81c7658e89 100644 --- a/plotly/graph_objects/layout/yaxis/_rangebreak.py +++ b/plotly/graph_objects/layout/yaxis/_rangebreak.py @@ -49,7 +49,8 @@ def dvalue(self): milliseconds. The 'dvalue' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -120,8 +121,10 @@ def pattern(self): 5pm to 8am (i.e. skips non-work hours). The 'pattern' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['day of week', 'hour', ''] + + - One of the following enumeration values: + + ['day of week', 'hour', ''] Returns ------- @@ -167,8 +170,10 @@ def values(self): values along the axis. The 'values' property is an info array that may be specified as: + * a list of elements where: - The 'values[i]' property accepts values of any type + + The 'values[i]' property accepts values of any type Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/_tickfont.py b/plotly/graph_objects/layout/yaxis/_tickfont.py index 32fe2327aa..69b8ba325e 100644 --- a/plotly/graph_objects/layout/yaxis/_tickfont.py +++ b/plotly/graph_objects/layout/yaxis/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/_title.py b/plotly/graph_objects/layout/yaxis/_title.py index 924858239c..a0de5cd3ce 100644 --- a/plotly/graph_objects/layout/yaxis/_title.py +++ b/plotly/graph_objects/layout/yaxis/_title.py @@ -44,7 +44,8 @@ def standoff(self): title at given standoff distance. The 'standoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/title/_font.py b/plotly/graph_objects/layout/yaxis/title/_font.py index fdfec30be1..6a289860e1 100644 --- a/plotly/graph_objects/layout/yaxis/title/_font.py +++ b/plotly/graph_objects/layout/yaxis/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/mesh3d/_colorbar.py b/plotly/graph_objects/mesh3d/_colorbar.py index efbae00979..3312dff7db 100644 --- a/plotly/graph_objects/mesh3d/_colorbar.py +++ b/plotly/graph_objects/mesh3d/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/mesh3d/_contour.py b/plotly/graph_objects/mesh3d/_contour.py index 6b75e49277..ae95010da3 100644 --- a/plotly/graph_objects/mesh3d/_contour.py +++ b/plotly/graph_objects/mesh3d/_contour.py @@ -56,7 +56,8 @@ def width(self): Sets the width of the contour lines. The 'width' property is a number and may be specified as: - - An int or float in the interval [1, 16] + + - An int or float in the interval [1, 16] Returns ------- diff --git a/plotly/graph_objects/mesh3d/_hoverlabel.py b/plotly/graph_objects/mesh3d/_hoverlabel.py index d0a4dd3352..b6783059a7 100644 --- a/plotly/graph_objects/mesh3d/_hoverlabel.py +++ b/plotly/graph_objects/mesh3d/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/mesh3d/_lighting.py b/plotly/graph_objects/mesh3d/_lighting.py index 4ee5187543..38d55f2245 100644 --- a/plotly/graph_objects/mesh3d/_lighting.py +++ b/plotly/graph_objects/mesh3d/_lighting.py @@ -25,7 +25,8 @@ def ambient(self): out the image. The 'ambient' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -44,7 +45,8 @@ def diffuse(self): range of angles. The 'diffuse' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -63,7 +65,8 @@ def facenormalsepsilon(self): from degenerate geometry. The 'facenormalsepsilon' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -83,7 +86,8 @@ def fresnel(self): of the paper (almost 90 degrees), causing shine. The 'fresnel' property is a number and may be specified as: - - An int or float in the interval [0, 5] + + - An int or float in the interval [0, 5] Returns ------- @@ -102,7 +106,8 @@ def roughness(self): and less contrasty the shine. The 'roughness' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -121,7 +126,8 @@ def specular(self): single direction, causing shine. The 'specular' property is a number and may be specified as: - - An int or float in the interval [0, 2] + + - An int or float in the interval [0, 2] Returns ------- @@ -140,7 +146,8 @@ def vertexnormalsepsilon(self): arising from degenerate geometry. The 'vertexnormalsepsilon' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/mesh3d/_lightposition.py b/plotly/graph_objects/mesh3d/_lightposition.py index a366b4cc90..202f6e20e2 100644 --- a/plotly/graph_objects/mesh3d/_lightposition.py +++ b/plotly/graph_objects/mesh3d/_lightposition.py @@ -16,7 +16,8 @@ def x(self): Numeric vector, representing the X coordinate for each vertex. The 'x' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- @@ -34,7 +35,8 @@ def y(self): Numeric vector, representing the Y coordinate for each vertex. The 'y' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- @@ -52,7 +54,8 @@ def z(self): Numeric vector, representing the Z coordinate for each vertex. The 'z' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- diff --git a/plotly/graph_objects/mesh3d/_stream.py b/plotly/graph_objects/mesh3d/_stream.py index e3f5f3287f..564266822a 100644 --- a/plotly/graph_objects/mesh3d/_stream.py +++ b/plotly/graph_objects/mesh3d/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/mesh3d/colorbar/_tickfont.py b/plotly/graph_objects/mesh3d/colorbar/_tickfont.py index 3972c6c046..fb59345262 100644 --- a/plotly/graph_objects/mesh3d/colorbar/_tickfont.py +++ b/plotly/graph_objects/mesh3d/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/mesh3d/colorbar/_title.py b/plotly/graph_objects/mesh3d/colorbar/_title.py index d36885c6db..48d4b3d89c 100644 --- a/plotly/graph_objects/mesh3d/colorbar/_title.py +++ b/plotly/graph_objects/mesh3d/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/mesh3d/colorbar/title/_font.py b/plotly/graph_objects/mesh3d/colorbar/title/_font.py index 463493af10..030c4d455b 100644 --- a/plotly/graph_objects/mesh3d/colorbar/title/_font.py +++ b/plotly/graph_objects/mesh3d/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/mesh3d/hoverlabel/_font.py b/plotly/graph_objects/mesh3d/hoverlabel/_font.py index 53fc249d2a..5e5cd9e143 100644 --- a/plotly/graph_objects/mesh3d/hoverlabel/_font.py +++ b/plotly/graph_objects/mesh3d/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py b/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py index fbcc1390da..2a3159c972 100644 --- a/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/ohlc/_hoverlabel.py b/plotly/graph_objects/ohlc/_hoverlabel.py index b38cdffa44..cb4cf5c261 100644 --- a/plotly/graph_objects/ohlc/_hoverlabel.py +++ b/plotly/graph_objects/ohlc/_hoverlabel.py @@ -29,9 +29,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/ohlc/_line.py b/plotly/graph_objects/ohlc/_line.py index 5423326e0a..a1cdee1b3e 100644 --- a/plotly/graph_objects/ohlc/_line.py +++ b/plotly/graph_objects/ohlc/_line.py @@ -44,7 +44,8 @@ def width(self): `decreasing.line.width`. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/ohlc/_stream.py b/plotly/graph_objects/ohlc/_stream.py index 1a48de9354..ac3019dc53 100644 --- a/plotly/graph_objects/ohlc/_stream.py +++ b/plotly/graph_objects/ohlc/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/ohlc/decreasing/_line.py b/plotly/graph_objects/ohlc/decreasing/_line.py index 8fe35879ae..8802933ebb 100644 --- a/plotly/graph_objects/ohlc/decreasing/_line.py +++ b/plotly/graph_objects/ohlc/decreasing/_line.py @@ -62,7 +62,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/ohlc/hoverlabel/_font.py b/plotly/graph_objects/ohlc/hoverlabel/_font.py index acf00b2c5b..f1b79c87d5 100644 --- a/plotly/graph_objects/ohlc/hoverlabel/_font.py +++ b/plotly/graph_objects/ohlc/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/ohlc/increasing/_line.py b/plotly/graph_objects/ohlc/increasing/_line.py index 2d260422bd..42b50b6622 100644 --- a/plotly/graph_objects/ohlc/increasing/_line.py +++ b/plotly/graph_objects/ohlc/increasing/_line.py @@ -62,7 +62,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/ohlc/legendgrouptitle/_font.py b/plotly/graph_objects/ohlc/legendgrouptitle/_font.py index 86c04ecdb6..09fddfe47c 100644 --- a/plotly/graph_objects/ohlc/legendgrouptitle/_font.py +++ b/plotly/graph_objects/ohlc/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/parcats/_dimension.py b/plotly/graph_objects/parcats/_dimension.py index 73252a5809..7c28bbce94 100644 --- a/plotly/graph_objects/parcats/_dimension.py +++ b/plotly/graph_objects/parcats/_dimension.py @@ -76,9 +76,11 @@ def categoryorder(self): `categoryarray`. The 'categoryorder' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['trace', 'category ascending', 'category descending', - 'array'] + + - One of the following enumeration values: + + ['trace', 'category ascending', 'category descending', + 'array'] Returns ------- diff --git a/plotly/graph_objects/parcats/_domain.py b/plotly/graph_objects/parcats/_domain.py index 25b36a893a..1759406c0e 100644 --- a/plotly/graph_objects/parcats/_domain.py +++ b/plotly/graph_objects/parcats/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/parcats/_labelfont.py b/plotly/graph_objects/parcats/_labelfont.py index a40cdb7c01..ad3c87bdda 100644 --- a/plotly/graph_objects/parcats/_labelfont.py +++ b/plotly/graph_objects/parcats/_labelfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/parcats/_line.py b/plotly/graph_objects/parcats/_line.py index 12a7e94cb5..675d2ee436 100644 --- a/plotly/graph_objects/parcats/_line.py +++ b/plotly/graph_objects/parcats/_line.py @@ -81,7 +81,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -353,8 +353,10 @@ def shape(self): curved splines The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['linear', 'hspline'] + + - One of the following enumeration values: + + ['linear', 'hspline'] Returns ------- diff --git a/plotly/graph_objects/parcats/_stream.py b/plotly/graph_objects/parcats/_stream.py index 78c0b1d28e..dbce4691d4 100644 --- a/plotly/graph_objects/parcats/_stream.py +++ b/plotly/graph_objects/parcats/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/parcats/_tickfont.py b/plotly/graph_objects/parcats/_tickfont.py index 52b21da7c1..e0e70873b9 100644 --- a/plotly/graph_objects/parcats/_tickfont.py +++ b/plotly/graph_objects/parcats/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/parcats/legendgrouptitle/_font.py b/plotly/graph_objects/parcats/legendgrouptitle/_font.py index 0a9a6dbeee..e14f875cf3 100644 --- a/plotly/graph_objects/parcats/legendgrouptitle/_font.py +++ b/plotly/graph_objects/parcats/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/parcats/line/_colorbar.py b/plotly/graph_objects/parcats/line/_colorbar.py index 937c4321bc..6ce49e4784 100644 --- a/plotly/graph_objects/parcats/line/_colorbar.py +++ b/plotly/graph_objects/parcats/line/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/parcats/line/colorbar/_tickfont.py b/plotly/graph_objects/parcats/line/colorbar/_tickfont.py index 7b53d52d1d..b2517ba5ed 100644 --- a/plotly/graph_objects/parcats/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/parcats/line/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/parcats/line/colorbar/_title.py b/plotly/graph_objects/parcats/line/colorbar/_title.py index a90dc7d6b2..6f607755d7 100644 --- a/plotly/graph_objects/parcats/line/colorbar/_title.py +++ b/plotly/graph_objects/parcats/line/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/parcats/line/colorbar/title/_font.py b/plotly/graph_objects/parcats/line/colorbar/title/_font.py index 79e0e04ceb..fd4403a27d 100644 --- a/plotly/graph_objects/parcats/line/colorbar/title/_font.py +++ b/plotly/graph_objects/parcats/line/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/parcoords/_dimension.py b/plotly/graph_objects/parcoords/_dimension.py index 5fcd0638ed..336cb6ec66 100644 --- a/plotly/graph_objects/parcoords/_dimension.py +++ b/plotly/graph_objects/parcoords/_dimension.py @@ -44,9 +44,9 @@ def constraintrange(self): * a 2D list where: - (0) The 'constraintrange\[i\]\[0\]' property accepts values of any type + (0) The 'constraintrange\\[i\\]\\[0\\]' property accepts values of any type - (1) The 'constraintrange\[i\]\[1\]' property accepts values of any type + (1) The 'constraintrange\\[i\\]\\[1\\]' property accepts values of any type Returns ------- diff --git a/plotly/graph_objects/parcoords/_domain.py b/plotly/graph_objects/parcoords/_domain.py index 0b5d22cad2..9594f2ba1c 100644 --- a/plotly/graph_objects/parcoords/_domain.py +++ b/plotly/graph_objects/parcoords/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/parcoords/_labelfont.py b/plotly/graph_objects/parcoords/_labelfont.py index 9723adaa4d..6fb83878ed 100644 --- a/plotly/graph_objects/parcoords/_labelfont.py +++ b/plotly/graph_objects/parcoords/_labelfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/parcoords/_line.py b/plotly/graph_objects/parcoords/_line.py index 8f55583201..48f9fb9a0d 100644 --- a/plotly/graph_objects/parcoords/_line.py +++ b/plotly/graph_objects/parcoords/_line.py @@ -79,7 +79,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -102,7 +102,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -124,7 +124,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/parcoords/_rangefont.py b/plotly/graph_objects/parcoords/_rangefont.py index 9929759a00..1cabc7fae1 100644 --- a/plotly/graph_objects/parcoords/_rangefont.py +++ b/plotly/graph_objects/parcoords/_rangefont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/parcoords/_stream.py b/plotly/graph_objects/parcoords/_stream.py index 3a1cfe1756..0c111be541 100644 --- a/plotly/graph_objects/parcoords/_stream.py +++ b/plotly/graph_objects/parcoords/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/parcoords/_tickfont.py b/plotly/graph_objects/parcoords/_tickfont.py index 1b0d00ff14..b62b236d3d 100644 --- a/plotly/graph_objects/parcoords/_tickfont.py +++ b/plotly/graph_objects/parcoords/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/parcoords/legendgrouptitle/_font.py b/plotly/graph_objects/parcoords/legendgrouptitle/_font.py index 8877f0cb64..8db5e633f1 100644 --- a/plotly/graph_objects/parcoords/legendgrouptitle/_font.py +++ b/plotly/graph_objects/parcoords/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/parcoords/line/_colorbar.py b/plotly/graph_objects/parcoords/line/_colorbar.py index 144e4686f5..aef0695ebc 100644 --- a/plotly/graph_objects/parcoords/line/_colorbar.py +++ b/plotly/graph_objects/parcoords/line/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py b/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py index 731c542fd2..e9ce1342c9 100644 --- a/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/parcoords/line/colorbar/_title.py b/plotly/graph_objects/parcoords/line/colorbar/_title.py index 785c3c677a..50885d01b8 100644 --- a/plotly/graph_objects/parcoords/line/colorbar/_title.py +++ b/plotly/graph_objects/parcoords/line/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/parcoords/line/colorbar/title/_font.py b/plotly/graph_objects/parcoords/line/colorbar/title/_font.py index 8eb1e1facc..02714f85e1 100644 --- a/plotly/graph_objects/parcoords/line/colorbar/title/_font.py +++ b/plotly/graph_objects/parcoords/line/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/parcoords/unselected/_line.py b/plotly/graph_objects/parcoords/unselected/_line.py index 6356757f94..6206137ce3 100644 --- a/plotly/graph_objects/parcoords/unselected/_line.py +++ b/plotly/graph_objects/parcoords/unselected/_line.py @@ -41,7 +41,8 @@ def opacity(self): increases. Use 1 to achieve exact `unselected.line.color`. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/pie/_domain.py b/plotly/graph_objects/pie/_domain.py index e360e56c1e..7c2032ce2a 100644 --- a/plotly/graph_objects/pie/_domain.py +++ b/plotly/graph_objects/pie/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -86,10 +88,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/pie/_hoverlabel.py b/plotly/graph_objects/pie/_hoverlabel.py index 8e85c15387..7a1aa88698 100644 --- a/plotly/graph_objects/pie/_hoverlabel.py +++ b/plotly/graph_objects/pie/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/pie/_insidetextfont.py b/plotly/graph_objects/pie/_insidetextfont.py index 96115b28e2..49476c5e8f 100644 --- a/plotly/graph_objects/pie/_insidetextfont.py +++ b/plotly/graph_objects/pie/_insidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/pie/_outsidetextfont.py b/plotly/graph_objects/pie/_outsidetextfont.py index 23a0b1b37c..bfe4736005 100644 --- a/plotly/graph_objects/pie/_outsidetextfont.py +++ b/plotly/graph_objects/pie/_outsidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/pie/_stream.py b/plotly/graph_objects/pie/_stream.py index b18c03eefc..b421822283 100644 --- a/plotly/graph_objects/pie/_stream.py +++ b/plotly/graph_objects/pie/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/pie/_textfont.py b/plotly/graph_objects/pie/_textfont.py index 5de3a6358b..e8619042ca 100644 --- a/plotly/graph_objects/pie/_textfont.py +++ b/plotly/graph_objects/pie/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/pie/_title.py b/plotly/graph_objects/pie/_title.py index f4e7ed9641..0a6102f095 100644 --- a/plotly/graph_objects/pie/_title.py +++ b/plotly/graph_objects/pie/_title.py @@ -37,9 +37,11 @@ def position(self): Specifies the location of the `title`. The 'position' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top left', 'top center', 'top right', 'middle center', - 'bottom left', 'bottom center', 'bottom right'] + + - One of the following enumeration values: + + ['top left', 'top center', 'top right', 'middle center', + 'bottom left', 'bottom center', 'bottom right'] Returns ------- diff --git a/plotly/graph_objects/pie/hoverlabel/_font.py b/plotly/graph_objects/pie/hoverlabel/_font.py index 0af8b50ca4..a8d3b79d9c 100644 --- a/plotly/graph_objects/pie/hoverlabel/_font.py +++ b/plotly/graph_objects/pie/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/pie/legendgrouptitle/_font.py b/plotly/graph_objects/pie/legendgrouptitle/_font.py index 1e515833c8..af48229bb2 100644 --- a/plotly/graph_objects/pie/legendgrouptitle/_font.py +++ b/plotly/graph_objects/pie/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/pie/marker/_line.py b/plotly/graph_objects/pie/marker/_line.py index ffa6c90d94..2b600363af 100644 --- a/plotly/graph_objects/pie/marker/_line.py +++ b/plotly/graph_objects/pie/marker/_line.py @@ -57,8 +57,10 @@ def width(self): Sets the width (in px) of the line enclosing each sector. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/pie/marker/_pattern.py b/plotly/graph_objects/pie/marker/_pattern.py index 5c13ae253b..2ad33c8bb3 100644 --- a/plotly/graph_objects/pie/marker/_pattern.py +++ b/plotly/graph_objects/pie/marker/_pattern.py @@ -120,7 +120,8 @@ def fgopacity(self): 0.5 when `fillmode` is "overlay". Otherwise, defaults to 1. The 'fgopacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -139,8 +140,10 @@ def fillmode(self): to `bgcolor` or a `fgcolor`. The 'fillmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['replace', 'overlay'] + + - One of the following enumeration values: + + ['replace', 'overlay'] Returns ------- @@ -199,9 +202,12 @@ def shape(self): used for filling the area. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['', '/', '\\', 'x', '-', '|', '+', '.'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['', '/', '\\', 'x', '-', '|', '+', '.'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -238,8 +244,10 @@ def size(self): which corresponds to the interval of repetition of the pattern. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -278,8 +286,10 @@ def solidity(self): shows only the foreground color without pattern. The 'solidity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/pie/title/_font.py b/plotly/graph_objects/pie/title/_font.py index 892a2e720a..83f8479721 100644 --- a/plotly/graph_objects/pie/title/_font.py +++ b/plotly/graph_objects/pie/title/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/_domain.py b/plotly/graph_objects/sankey/_domain.py index 9781dfff1f..5d818fceb5 100644 --- a/plotly/graph_objects/sankey/_domain.py +++ b/plotly/graph_objects/sankey/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/sankey/_hoverlabel.py b/plotly/graph_objects/sankey/_hoverlabel.py index b755c71093..cda79ddb0f 100644 --- a/plotly/graph_objects/sankey/_hoverlabel.py +++ b/plotly/graph_objects/sankey/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/_link.py b/plotly/graph_objects/sankey/_link.py index 4aad5be3a6..53325b41da 100644 --- a/plotly/graph_objects/sankey/_link.py +++ b/plotly/graph_objects/sankey/_link.py @@ -40,7 +40,8 @@ def arrowlen(self): be drawn. The 'arrowlen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -229,8 +230,10 @@ def hoverinfo(self): still fired. The 'hoverinfo' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'none', 'skip'] + + - One of the following enumeration values: + + ['all', 'none', 'skip'] Returns ------- diff --git a/plotly/graph_objects/sankey/_node.py b/plotly/graph_objects/sankey/_node.py index 206ef5c964..b2d5992550 100644 --- a/plotly/graph_objects/sankey/_node.py +++ b/plotly/graph_objects/sankey/_node.py @@ -37,8 +37,10 @@ def align(self): horizontal axis. The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['justify', 'left', 'right', 'center'] + + - One of the following enumeration values: + + ['justify', 'left', 'right', 'center'] Returns ------- @@ -144,7 +146,7 @@ def groups(self): * a 2D list where: - The 'groups\[i\]\[j\]' property is a number and may be specified as: + The 'groups\\[i\\]\\[j\\]' property is a number and may be specified as: - An int or float @@ -167,8 +169,10 @@ def hoverinfo(self): still fired. The 'hoverinfo' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'none', 'skip'] + + - One of the following enumeration values: + + ['all', 'none', 'skip'] Returns ------- @@ -324,7 +328,8 @@ def pad(self): Sets the padding (in px) between the `nodes`. The 'pad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -342,7 +347,8 @@ def thickness(self): Sets the thickness (in px) of the `nodes`. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- diff --git a/plotly/graph_objects/sankey/_stream.py b/plotly/graph_objects/sankey/_stream.py index 60a97154fe..be69e7cb71 100644 --- a/plotly/graph_objects/sankey/_stream.py +++ b/plotly/graph_objects/sankey/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/sankey/_textfont.py b/plotly/graph_objects/sankey/_textfont.py index d9e060263d..43da1335af 100644 --- a/plotly/graph_objects/sankey/_textfont.py +++ b/plotly/graph_objects/sankey/_textfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/sankey/hoverlabel/_font.py b/plotly/graph_objects/sankey/hoverlabel/_font.py index 6ffb2969a1..82950840c3 100644 --- a/plotly/graph_objects/sankey/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/legendgrouptitle/_font.py b/plotly/graph_objects/sankey/legendgrouptitle/_font.py index b5465e8bf3..9eb183da34 100644 --- a/plotly/graph_objects/sankey/legendgrouptitle/_font.py +++ b/plotly/graph_objects/sankey/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/sankey/link/_colorscale.py b/plotly/graph_objects/sankey/link/_colorscale.py index 279fe47de9..6583a384ff 100644 --- a/plotly/graph_objects/sankey/link/_colorscale.py +++ b/plotly/graph_objects/sankey/link/_colorscale.py @@ -17,7 +17,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -36,7 +36,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/sankey/link/_hoverlabel.py b/plotly/graph_objects/sankey/link/_hoverlabel.py index 390ee0c214..cc843191a3 100644 --- a/plotly/graph_objects/sankey/link/_hoverlabel.py +++ b/plotly/graph_objects/sankey/link/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/link/_line.py b/plotly/graph_objects/sankey/link/_line.py index 2cb4b034ba..24fac53534 100644 --- a/plotly/graph_objects/sankey/link/_line.py +++ b/plotly/graph_objects/sankey/link/_line.py @@ -57,8 +57,10 @@ def width(self): Sets the width (in px) of the `line` around each `link`. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/link/hoverlabel/_font.py b/plotly/graph_objects/sankey/link/hoverlabel/_font.py index b66e41aab4..e36037ae29 100644 --- a/plotly/graph_objects/sankey/link/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/link/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/node/_hoverlabel.py b/plotly/graph_objects/sankey/node/_hoverlabel.py index 8761b02d81..6761d9dc75 100644 --- a/plotly/graph_objects/sankey/node/_hoverlabel.py +++ b/plotly/graph_objects/sankey/node/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/node/_line.py b/plotly/graph_objects/sankey/node/_line.py index a0f4de666f..90e41eec17 100644 --- a/plotly/graph_objects/sankey/node/_line.py +++ b/plotly/graph_objects/sankey/node/_line.py @@ -57,8 +57,10 @@ def width(self): Sets the width (in px) of the `line` around each `node`. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/node/hoverlabel/_font.py b/plotly/graph_objects/sankey/node/hoverlabel/_font.py index 86471a9459..22e8b1bb23 100644 --- a/plotly/graph_objects/sankey/node/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/node/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/_error_x.py b/plotly/graph_objects/scatter/_error_x.py index a97d8e9ed8..8a8a5a3979 100644 --- a/plotly/graph_objects/scatter/_error_x.py +++ b/plotly/graph_objects/scatter/_error_x.py @@ -166,7 +166,8 @@ def thickness(self): Sets the thickness (in px) of the error bars. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -224,8 +225,10 @@ def type(self): data set `array`. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['percent', 'constant', 'sqrt', 'data'] + + - One of the following enumeration values: + + ['percent', 'constant', 'sqrt', 'data'] Returns ------- @@ -245,7 +248,8 @@ def value(self): corresponding to the lengths of the error bars. The 'value' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -266,7 +270,8 @@ def valueminus(self): (left) direction for vertical (horizontal) bars The 'valueminus' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -303,7 +308,8 @@ def width(self): error bars. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatter/_error_y.py b/plotly/graph_objects/scatter/_error_y.py index 3e12b9ae4b..0cbce3d8b0 100644 --- a/plotly/graph_objects/scatter/_error_y.py +++ b/plotly/graph_objects/scatter/_error_y.py @@ -149,7 +149,8 @@ def thickness(self): Sets the thickness (in px) of the error bars. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -207,8 +208,10 @@ def type(self): data set `array`. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['percent', 'constant', 'sqrt', 'data'] + + - One of the following enumeration values: + + ['percent', 'constant', 'sqrt', 'data'] Returns ------- @@ -228,7 +231,8 @@ def value(self): corresponding to the lengths of the error bars. The 'value' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -249,7 +253,8 @@ def valueminus(self): (left) direction for vertical (horizontal) bars The 'valueminus' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -286,7 +291,8 @@ def width(self): error bars. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatter/_fillgradient.py b/plotly/graph_objects/scatter/_fillgradient.py index 31aed3ba8f..28e31c0439 100644 --- a/plotly/graph_objects/scatter/_fillgradient.py +++ b/plotly/graph_objects/scatter/_fillgradient.py @@ -68,7 +68,7 @@ def start(self): The 'start' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -92,7 +92,7 @@ def stop(self): The 'stop' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -111,8 +111,10 @@ def type(self): Defaults to "none". The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['radial', 'horizontal', 'vertical', 'none'] + + - One of the following enumeration values: + + ['radial', 'horizontal', 'vertical', 'none'] Returns ------- diff --git a/plotly/graph_objects/scatter/_fillpattern.py b/plotly/graph_objects/scatter/_fillpattern.py index 8340f9f390..9fb46d69d8 100644 --- a/plotly/graph_objects/scatter/_fillpattern.py +++ b/plotly/graph_objects/scatter/_fillpattern.py @@ -120,7 +120,8 @@ def fgopacity(self): 0.5 when `fillmode` is "overlay". Otherwise, defaults to 1. The 'fgopacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -139,8 +140,10 @@ def fillmode(self): to `bgcolor` or a `fgcolor`. The 'fillmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['replace', 'overlay'] + + - One of the following enumeration values: + + ['replace', 'overlay'] Returns ------- @@ -199,9 +202,12 @@ def shape(self): used for filling the area. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['', '/', '\\', 'x', '-', '|', '+', '.'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['', '/', '\\', 'x', '-', '|', '+', '.'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -238,8 +244,10 @@ def size(self): which corresponds to the interval of repetition of the pattern. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -278,8 +286,10 @@ def solidity(self): shows only the foreground color without pattern. The 'solidity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/_hoverlabel.py b/plotly/graph_objects/scatter/_hoverlabel.py index fd83df7570..ff50567cea 100644 --- a/plotly/graph_objects/scatter/_hoverlabel.py +++ b/plotly/graph_objects/scatter/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/_line.py b/plotly/graph_objects/scatter/_line.py index 0a3e483317..31f3611e48 100644 --- a/plotly/graph_objects/scatter/_line.py +++ b/plotly/graph_objects/scatter/_line.py @@ -28,8 +28,10 @@ def backoff(self): markers if `marker.angleref` is set to "previous". The 'backoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -113,8 +115,10 @@ def shape(self): correspond to step-wise line shapes. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['linear', 'spline', 'hv', 'vh', 'hvh', 'vhv'] + + - One of the following enumeration values: + + ['linear', 'spline', 'hv', 'vh', 'hvh', 'vhv'] Returns ------- @@ -155,7 +159,8 @@ def smoothing(self): to a "linear" shape). The 'smoothing' property is a number and may be specified as: - - An int or float in the interval [0, 1.3] + + - An int or float in the interval [0, 1.3] Returns ------- @@ -173,7 +178,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatter/_marker.py b/plotly/graph_objects/scatter/_marker.py index 4c019f0687..d171d916b1 100644 --- a/plotly/graph_objects/scatter/_marker.py +++ b/plotly/graph_objects/scatter/_marker.py @@ -68,8 +68,10 @@ def angleref(self): "up", angle 0 points toward the top of the screen. The 'angleref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['previous', 'up'] + + - One of the following enumeration values: + + ['previous', 'up'] Returns ------- @@ -156,7 +158,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -179,7 +181,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -201,7 +203,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -400,7 +402,8 @@ def maxdisplayed(self): corresponds to no limit. The 'maxdisplayed' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -418,8 +421,10 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -496,8 +501,10 @@ def size(self): Sets the marker size (in px). The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -517,7 +524,8 @@ def sizemin(self): points. The 'sizemin' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -537,8 +545,10 @@ def sizemode(self): to pixels. The 'sizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['diameter', 'area'] + + - One of the following enumeration values: + + ['diameter', 'area'] Returns ------- @@ -559,7 +569,7 @@ def sizeref(self): The 'sizeref' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -598,8 +608,10 @@ def standoff(self): arrowhead marker at it. The 'standoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -638,97 +650,93 @@ def symbol(self): appending "-open-dot" or "dot-open" to a symbol name. The 'symbol' property is an enumeration that may be specified as: - - One of the following enumeration values: - [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', - 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', - 'square', 101, '101', 'square-open', 201, '201', - 'square-dot', 301, '301', 'square-open-dot', 2, '2', - 'diamond', 102, '102', 'diamond-open', 202, '202', - 'diamond-dot', 302, '302', 'diamond-open-dot', 3, '3', - 'cross', 103, '103', 'cross-open', 203, '203', - 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', 'x', - 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', - 'x-open-dot', 5, '5', 'triangle-up', 105, '105', - 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, - '305', 'triangle-up-open-dot', 6, '6', 'triangle-down', - 106, '106', 'triangle-down-open', 206, '206', - 'triangle-down-dot', 306, '306', 'triangle-down-open-dot', - 7, '7', 'triangle-left', 107, '107', 'triangle-left-open', - 207, '207', 'triangle-left-dot', 307, '307', - 'triangle-left-open-dot', 8, '8', 'triangle-right', 108, - '108', 'triangle-right-open', 208, '208', - 'triangle-right-dot', 308, '308', - 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, - '109', 'triangle-ne-open', 209, '209', 'triangle-ne-dot', - 309, '309', 'triangle-ne-open-dot', 10, '10', - 'triangle-se', 110, '110', 'triangle-se-open', 210, '210', - 'triangle-se-dot', 310, '310', 'triangle-se-open-dot', 11, - '11', 'triangle-sw', 111, '111', 'triangle-sw-open', 211, - '211', 'triangle-sw-dot', 311, '311', - 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, - '112', 'triangle-nw-open', 212, '212', 'triangle-nw-dot', - 312, '312', 'triangle-nw-open-dot', 13, '13', 'pentagon', - 113, '113', 'pentagon-open', 213, '213', 'pentagon-dot', - 313, '313', 'pentagon-open-dot', 14, '14', 'hexagon', 114, - '114', 'hexagon-open', 214, '214', 'hexagon-dot', 314, - '314', 'hexagon-open-dot', 15, '15', 'hexagon2', 115, - '115', 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, - '315', 'hexagon2-open-dot', 16, '16', 'octagon', 116, - '116', 'octagon-open', 216, '216', 'octagon-dot', 316, - '316', 'octagon-open-dot', 17, '17', 'star', 117, '117', - 'star-open', 217, '217', 'star-dot', 317, '317', - 'star-open-dot', 18, '18', 'hexagram', 118, '118', - 'hexagram-open', 218, '218', 'hexagram-dot', 318, '318', - 'hexagram-open-dot', 19, '19', 'star-triangle-up', 119, - '119', 'star-triangle-up-open', 219, '219', - 'star-triangle-up-dot', 319, '319', - 'star-triangle-up-open-dot', 20, '20', - 'star-triangle-down', 120, '120', - 'star-triangle-down-open', 220, '220', - 'star-triangle-down-dot', 320, '320', - 'star-triangle-down-open-dot', 21, '21', 'star-square', - 121, '121', 'star-square-open', 221, '221', - 'star-square-dot', 321, '321', 'star-square-open-dot', 22, - '22', 'star-diamond', 122, '122', 'star-diamond-open', - 222, '222', 'star-diamond-dot', 322, '322', - 'star-diamond-open-dot', 23, '23', 'diamond-tall', 123, - '123', 'diamond-tall-open', 223, '223', - 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', - 24, '24', 'diamond-wide', 124, '124', 'diamond-wide-open', - 224, '224', 'diamond-wide-dot', 324, '324', - 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, - '125', 'hourglass-open', 26, '26', 'bowtie', 126, '126', - 'bowtie-open', 27, '27', 'circle-cross', 127, '127', - 'circle-cross-open', 28, '28', 'circle-x', 128, '128', - 'circle-x-open', 29, '29', 'square-cross', 129, '129', - 'square-cross-open', 30, '30', 'square-x', 130, '130', - 'square-x-open', 31, '31', 'diamond-cross', 131, '131', - 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', - 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', - 'cross-thin-open', 34, '34', 'x-thin', 134, '134', - 'x-thin-open', 35, '35', 'asterisk', 135, '135', - 'asterisk-open', 36, '36', 'hash', 136, '136', - 'hash-open', 236, '236', 'hash-dot', 336, '336', - 'hash-open-dot', 37, '37', 'y-up', 137, '137', - 'y-up-open', 38, '38', 'y-down', 138, '138', - 'y-down-open', 39, '39', 'y-left', 139, '139', - 'y-left-open', 40, '40', 'y-right', 140, '140', - 'y-right-open', 41, '41', 'line-ew', 141, '141', - 'line-ew-open', 42, '42', 'line-ns', 142, '142', - 'line-ns-open', 43, '43', 'line-ne', 143, '143', - 'line-ne-open', 44, '44', 'line-nw', 144, '144', - 'line-nw-open', 45, '45', 'arrow-up', 145, '145', - 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', - 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', - 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', - 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', - 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, - '150', 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', - 151, '151', 'arrow-bar-left-open', 52, '52', - 'arrow-bar-right', 152, '152', 'arrow-bar-right-open', 53, - '53', 'arrow', 153, '153', 'arrow-open', 54, '54', - 'arrow-wide', 154, '154', 'arrow-wide-open'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', + 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', 'square', + 101, '101', 'square-open', 201, '201', 'square-dot', 301, + '301', 'square-open-dot', 2, '2', 'diamond', 102, '102', + 'diamond-open', 202, '202', 'diamond-dot', 302, '302', + 'diamond-open-dot', 3, '3', 'cross', 103, '103', 'cross-open', + 203, '203', 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', + 'x', 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', + 'x-open-dot', 5, '5', 'triangle-up', 105, '105', + 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, '305', + 'triangle-up-open-dot', 6, '6', 'triangle-down', 106, '106', + 'triangle-down-open', 206, '206', 'triangle-down-dot', 306, + '306', 'triangle-down-open-dot', 7, '7', 'triangle-left', 107, + '107', 'triangle-left-open', 207, '207', 'triangle-left-dot', + 307, '307', 'triangle-left-open-dot', 8, '8', + 'triangle-right', 108, '108', 'triangle-right-open', 208, + '208', 'triangle-right-dot', 308, '308', + 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, '109', + 'triangle-ne-open', 209, '209', 'triangle-ne-dot', 309, '309', + 'triangle-ne-open-dot', 10, '10', 'triangle-se', 110, '110', + 'triangle-se-open', 210, '210', 'triangle-se-dot', 310, '310', + 'triangle-se-open-dot', 11, '11', 'triangle-sw', 111, '111', + 'triangle-sw-open', 211, '211', 'triangle-sw-dot', 311, '311', + 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, '112', + 'triangle-nw-open', 212, '212', 'triangle-nw-dot', 312, '312', + 'triangle-nw-open-dot', 13, '13', 'pentagon', 113, '113', + 'pentagon-open', 213, '213', 'pentagon-dot', 313, '313', + 'pentagon-open-dot', 14, '14', 'hexagon', 114, '114', + 'hexagon-open', 214, '214', 'hexagon-dot', 314, '314', + 'hexagon-open-dot', 15, '15', 'hexagon2', 115, '115', + 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, '315', + 'hexagon2-open-dot', 16, '16', 'octagon', 116, '116', + 'octagon-open', 216, '216', 'octagon-dot', 316, '316', + 'octagon-open-dot', 17, '17', 'star', 117, '117', 'star-open', + 217, '217', 'star-dot', 317, '317', 'star-open-dot', 18, '18', + 'hexagram', 118, '118', 'hexagram-open', 218, '218', + 'hexagram-dot', 318, '318', 'hexagram-open-dot', 19, '19', + 'star-triangle-up', 119, '119', 'star-triangle-up-open', 219, + '219', 'star-triangle-up-dot', 319, '319', + 'star-triangle-up-open-dot', 20, '20', 'star-triangle-down', + 120, '120', 'star-triangle-down-open', 220, '220', + 'star-triangle-down-dot', 320, '320', + 'star-triangle-down-open-dot', 21, '21', 'star-square', 121, + '121', 'star-square-open', 221, '221', 'star-square-dot', 321, + '321', 'star-square-open-dot', 22, '22', 'star-diamond', 122, + '122', 'star-diamond-open', 222, '222', 'star-diamond-dot', + 322, '322', 'star-diamond-open-dot', 23, '23', 'diamond-tall', + 123, '123', 'diamond-tall-open', 223, '223', + 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', 24, + '24', 'diamond-wide', 124, '124', 'diamond-wide-open', 224, + '224', 'diamond-wide-dot', 324, '324', + 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, '125', + 'hourglass-open', 26, '26', 'bowtie', 126, '126', + 'bowtie-open', 27, '27', 'circle-cross', 127, '127', + 'circle-cross-open', 28, '28', 'circle-x', 128, '128', + 'circle-x-open', 29, '29', 'square-cross', 129, '129', + 'square-cross-open', 30, '30', 'square-x', 130, '130', + 'square-x-open', 31, '31', 'diamond-cross', 131, '131', + 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', + 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', + 'cross-thin-open', 34, '34', 'x-thin', 134, '134', + 'x-thin-open', 35, '35', 'asterisk', 135, '135', + 'asterisk-open', 36, '36', 'hash', 136, '136', 'hash-open', + 236, '236', 'hash-dot', 336, '336', 'hash-open-dot', 37, '37', + 'y-up', 137, '137', 'y-up-open', 38, '38', 'y-down', 138, + '138', 'y-down-open', 39, '39', 'y-left', 139, '139', + 'y-left-open', 40, '40', 'y-right', 140, '140', + 'y-right-open', 41, '41', 'line-ew', 141, '141', + 'line-ew-open', 42, '42', 'line-ns', 142, '142', + 'line-ns-open', 43, '43', 'line-ne', 143, '143', + 'line-ne-open', 44, '44', 'line-nw', 144, '144', + 'line-nw-open', 45, '45', 'arrow-up', 145, '145', + 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', + 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', + 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', + 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', + 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, '150', + 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', 151, '151', + 'arrow-bar-left-open', 52, '52', 'arrow-bar-right', 152, + '152', 'arrow-bar-right-open', 53, '53', 'arrow', 153, '153', + 'arrow-open', 54, '54', 'arrow-wide', 154, '154', + 'arrow-wide-open'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/_stream.py b/plotly/graph_objects/scatter/_stream.py index f79c80fa50..8db3f70a3b 100644 --- a/plotly/graph_objects/scatter/_stream.py +++ b/plotly/graph_objects/scatter/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/scatter/_textfont.py b/plotly/graph_objects/scatter/_textfont.py index 98d665596f..041903a3ad 100644 --- a/plotly/graph_objects/scatter/_textfont.py +++ b/plotly/graph_objects/scatter/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/hoverlabel/_font.py b/plotly/graph_objects/scatter/hoverlabel/_font.py index 71ec19abe7..d695abcd45 100644 --- a/plotly/graph_objects/scatter/hoverlabel/_font.py +++ b/plotly/graph_objects/scatter/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/legendgrouptitle/_font.py b/plotly/graph_objects/scatter/legendgrouptitle/_font.py index 68af679393..a09ac6e574 100644 --- a/plotly/graph_objects/scatter/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatter/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatter/marker/_colorbar.py b/plotly/graph_objects/scatter/marker/_colorbar.py index 4ffba10a6c..9e11aa6e49 100644 --- a/plotly/graph_objects/scatter/marker/_colorbar.py +++ b/plotly/graph_objects/scatter/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/scatter/marker/_gradient.py b/plotly/graph_objects/scatter/marker/_gradient.py index 24c139eaa9..a91124890f 100644 --- a/plotly/graph_objects/scatter/marker/_gradient.py +++ b/plotly/graph_objects/scatter/marker/_gradient.py @@ -58,9 +58,12 @@ def type(self): Sets the type of gradient used to fill the markers The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['radial', 'horizontal', 'vertical', 'none'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['radial', 'horizontal', 'vertical', 'none'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/marker/_line.py b/plotly/graph_objects/scatter/marker/_line.py index 0a51765098..3b076f6d6b 100644 --- a/plotly/graph_objects/scatter/marker/_line.py +++ b/plotly/graph_objects/scatter/marker/_line.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -290,8 +290,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py index 97ee002f02..ba436c38c1 100644 --- a/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatter/marker/colorbar/_title.py b/plotly/graph_objects/scatter/marker/colorbar/_title.py index 0c0080c47d..87076e09a1 100644 --- a/plotly/graph_objects/scatter/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatter/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/scatter/marker/colorbar/title/_font.py b/plotly/graph_objects/scatter/marker/colorbar/title/_font.py index 6c38026760..74a7754de8 100644 --- a/plotly/graph_objects/scatter/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatter/selected/_marker.py b/plotly/graph_objects/scatter/selected/_marker.py index 491dda198e..8ca0bc09ca 100644 --- a/plotly/graph_objects/scatter/selected/_marker.py +++ b/plotly/graph_objects/scatter/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -56,7 +57,8 @@ def size(self): Sets the marker size of selected points. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatter/unselected/_marker.py b/plotly/graph_objects/scatter/unselected/_marker.py index 9006c9959b..2c84702779 100644 --- a/plotly/graph_objects/scatter/unselected/_marker.py +++ b/plotly/graph_objects/scatter/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -59,7 +60,8 @@ def size(self): selection exists. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatter3d/_error_x.py b/plotly/graph_objects/scatter3d/_error_x.py index 512d1b366e..64935bda10 100644 --- a/plotly/graph_objects/scatter3d/_error_x.py +++ b/plotly/graph_objects/scatter3d/_error_x.py @@ -166,7 +166,8 @@ def thickness(self): Sets the thickness (in px) of the error bars. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -224,8 +225,10 @@ def type(self): data set `array`. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['percent', 'constant', 'sqrt', 'data'] + + - One of the following enumeration values: + + ['percent', 'constant', 'sqrt', 'data'] Returns ------- @@ -245,7 +248,8 @@ def value(self): corresponding to the lengths of the error bars. The 'value' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -266,7 +270,8 @@ def valueminus(self): (left) direction for vertical (horizontal) bars The 'valueminus' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -303,7 +308,8 @@ def width(self): error bars. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatter3d/_error_y.py b/plotly/graph_objects/scatter3d/_error_y.py index ccf816e0fd..fb927af982 100644 --- a/plotly/graph_objects/scatter3d/_error_y.py +++ b/plotly/graph_objects/scatter3d/_error_y.py @@ -166,7 +166,8 @@ def thickness(self): Sets the thickness (in px) of the error bars. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -224,8 +225,10 @@ def type(self): data set `array`. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['percent', 'constant', 'sqrt', 'data'] + + - One of the following enumeration values: + + ['percent', 'constant', 'sqrt', 'data'] Returns ------- @@ -245,7 +248,8 @@ def value(self): corresponding to the lengths of the error bars. The 'value' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -266,7 +270,8 @@ def valueminus(self): (left) direction for vertical (horizontal) bars The 'valueminus' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -303,7 +308,8 @@ def width(self): error bars. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatter3d/_error_z.py b/plotly/graph_objects/scatter3d/_error_z.py index 669c99f47f..8dfe45b8bf 100644 --- a/plotly/graph_objects/scatter3d/_error_z.py +++ b/plotly/graph_objects/scatter3d/_error_z.py @@ -149,7 +149,8 @@ def thickness(self): Sets the thickness (in px) of the error bars. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -207,8 +208,10 @@ def type(self): data set `array`. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['percent', 'constant', 'sqrt', 'data'] + + - One of the following enumeration values: + + ['percent', 'constant', 'sqrt', 'data'] Returns ------- @@ -228,7 +231,8 @@ def value(self): corresponding to the lengths of the error bars. The 'value' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -249,7 +253,8 @@ def valueminus(self): (left) direction for vertical (horizontal) bars The 'valueminus' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -286,7 +291,8 @@ def width(self): error bars. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatter3d/_hoverlabel.py b/plotly/graph_objects/scatter3d/_hoverlabel.py index 405e09f625..ef2e5abd9b 100644 --- a/plotly/graph_objects/scatter3d/_hoverlabel.py +++ b/plotly/graph_objects/scatter3d/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter3d/_line.py b/plotly/graph_objects/scatter3d/_line.py index bb83cfbb06..6cddfaf17d 100644 --- a/plotly/graph_objects/scatter3d/_line.py +++ b/plotly/graph_objects/scatter3d/_line.py @@ -81,7 +81,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -286,9 +286,10 @@ def dash(self): Sets the dash style of the lines. The 'dash' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['dash', 'dashdot', 'dot', 'longdash', 'longdashdot', - 'solid'] + + - One of the following enumeration values: + + ['dash', 'dashdot', 'dot', 'longdash', 'longdashdot', 'solid'] Returns ------- @@ -347,7 +348,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatter3d/_marker.py b/plotly/graph_objects/scatter3d/_marker.py index 027960d91e..45eb87ff45 100644 --- a/plotly/graph_objects/scatter3d/_marker.py +++ b/plotly/graph_objects/scatter3d/_marker.py @@ -89,7 +89,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -112,7 +112,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -134,7 +134,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -317,7 +317,8 @@ def opacity(self): alpha channel. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -376,8 +377,10 @@ def size(self): Sets the marker size (in px). The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -397,7 +400,8 @@ def sizemin(self): points. The 'sizemin' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -417,8 +421,10 @@ def sizemode(self): to pixels. The 'sizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['diameter', 'area'] + + - One of the following enumeration values: + + ['diameter', 'area'] Returns ------- @@ -439,7 +445,7 @@ def sizeref(self): The 'sizeref' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -475,10 +481,13 @@ def symbol(self): Sets the marker symbol type. The 'symbol' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['circle', 'circle-open', 'cross', 'diamond', - 'diamond-open', 'square', 'square-open', 'x'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['circle', 'circle-open', 'cross', 'diamond', 'diamond-open', + 'square', 'square-open', 'x'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter3d/_stream.py b/plotly/graph_objects/scatter3d/_stream.py index f65909f0db..a38fff5338 100644 --- a/plotly/graph_objects/scatter3d/_stream.py +++ b/plotly/graph_objects/scatter3d/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/scatter3d/_textfont.py b/plotly/graph_objects/scatter3d/_textfont.py index c89348768b..312278b49c 100644 --- a/plotly/graph_objects/scatter3d/_textfont.py +++ b/plotly/graph_objects/scatter3d/_textfont.py @@ -107,8 +107,10 @@ def familysrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -145,9 +147,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -183,9 +188,12 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter3d/hoverlabel/_font.py b/plotly/graph_objects/scatter3d/hoverlabel/_font.py index ee69b4c38d..277a6671ea 100644 --- a/plotly/graph_objects/scatter3d/hoverlabel/_font.py +++ b/plotly/graph_objects/scatter3d/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py b/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py index d41f7cae0c..679ffb7e38 100644 --- a/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatter3d/line/_colorbar.py b/plotly/graph_objects/scatter3d/line/_colorbar.py index b25e8fbb01..bf2373661f 100644 --- a/plotly/graph_objects/scatter3d/line/_colorbar.py +++ b/plotly/graph_objects/scatter3d/line/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py b/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py index 4ecfb4a431..80973e1dfc 100644 --- a/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatter3d/line/colorbar/_title.py b/plotly/graph_objects/scatter3d/line/colorbar/_title.py index 801a1fd469..bd965ef29c 100644 --- a/plotly/graph_objects/scatter3d/line/colorbar/_title.py +++ b/plotly/graph_objects/scatter3d/line/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py b/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py index 22b2b16299..1bf5e997d9 100644 --- a/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/_colorbar.py b/plotly/graph_objects/scatter3d/marker/_colorbar.py index 7aa90273a7..ea438d33cd 100644 --- a/plotly/graph_objects/scatter3d/marker/_colorbar.py +++ b/plotly/graph_objects/scatter3d/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/_line.py b/plotly/graph_objects/scatter3d/marker/_line.py index 8eb608d6bc..e7d58be95c 100644 --- a/plotly/graph_objects/scatter3d/marker/_line.py +++ b/plotly/graph_objects/scatter3d/marker/_line.py @@ -79,7 +79,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -103,7 +103,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -125,7 +125,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -289,7 +289,8 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py index 2d44d4343a..7985eb58ad 100644 --- a/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/colorbar/_title.py b/plotly/graph_objects/scatter3d/marker/colorbar/_title.py index c7c751780b..4e3d97abad 100644 --- a/plotly/graph_objects/scatter3d/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatter3d/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py b/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py index 4ef9d0e0d6..1fc3cb82a9 100644 --- a/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatter3d/projection/_x.py b/plotly/graph_objects/scatter3d/projection/_x.py index cfa3418b68..1de4031743 100644 --- a/plotly/graph_objects/scatter3d/projection/_x.py +++ b/plotly/graph_objects/scatter3d/projection/_x.py @@ -16,7 +16,8 @@ def opacity(self): Sets the projection color. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -35,7 +36,8 @@ def scale(self): marker points. The 'scale' property is a number and may be specified as: - - An int or float in the interval [0, 10] + + - An int or float in the interval [0, 10] Returns ------- diff --git a/plotly/graph_objects/scatter3d/projection/_y.py b/plotly/graph_objects/scatter3d/projection/_y.py index 3ec090e938..2c54655d06 100644 --- a/plotly/graph_objects/scatter3d/projection/_y.py +++ b/plotly/graph_objects/scatter3d/projection/_y.py @@ -16,7 +16,8 @@ def opacity(self): Sets the projection color. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -35,7 +36,8 @@ def scale(self): marker points. The 'scale' property is a number and may be specified as: - - An int or float in the interval [0, 10] + + - An int or float in the interval [0, 10] Returns ------- diff --git a/plotly/graph_objects/scatter3d/projection/_z.py b/plotly/graph_objects/scatter3d/projection/_z.py index 24816e39c6..ccf79fee0f 100644 --- a/plotly/graph_objects/scatter3d/projection/_z.py +++ b/plotly/graph_objects/scatter3d/projection/_z.py @@ -16,7 +16,8 @@ def opacity(self): Sets the projection color. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -35,7 +36,8 @@ def scale(self): marker points. The 'scale' property is a number and may be specified as: - - An int or float in the interval [0, 10] + + - An int or float in the interval [0, 10] Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_hoverlabel.py b/plotly/graph_objects/scattercarpet/_hoverlabel.py index a52ad0784f..cce26bf64e 100644 --- a/plotly/graph_objects/scattercarpet/_hoverlabel.py +++ b/plotly/graph_objects/scattercarpet/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_line.py b/plotly/graph_objects/scattercarpet/_line.py index c795a0f173..0ebadc009b 100644 --- a/plotly/graph_objects/scattercarpet/_line.py +++ b/plotly/graph_objects/scattercarpet/_line.py @@ -27,8 +27,10 @@ def backoff(self): markers if `marker.angleref` is set to "previous". The 'backoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -112,8 +114,10 @@ def shape(self): correspond to step-wise line shapes. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['linear', 'spline'] + + - One of the following enumeration values: + + ['linear', 'spline'] Returns ------- @@ -133,7 +137,8 @@ def smoothing(self): to a "linear" shape). The 'smoothing' property is a number and may be specified as: - - An int or float in the interval [0, 1.3] + + - An int or float in the interval [0, 1.3] Returns ------- @@ -151,7 +156,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_marker.py b/plotly/graph_objects/scattercarpet/_marker.py index 9d459771c3..d6ce908362 100644 --- a/plotly/graph_objects/scattercarpet/_marker.py +++ b/plotly/graph_objects/scattercarpet/_marker.py @@ -68,8 +68,10 @@ def angleref(self): "up", angle 0 points toward the top of the screen. The 'angleref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['previous', 'up'] + + - One of the following enumeration values: + + ['previous', 'up'] Returns ------- @@ -156,7 +158,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -179,7 +181,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -201,7 +203,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -400,7 +402,8 @@ def maxdisplayed(self): corresponds to no limit. The 'maxdisplayed' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -418,8 +421,10 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -496,8 +501,10 @@ def size(self): Sets the marker size (in px). The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -517,7 +524,8 @@ def sizemin(self): points. The 'sizemin' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -537,8 +545,10 @@ def sizemode(self): to pixels. The 'sizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['diameter', 'area'] + + - One of the following enumeration values: + + ['diameter', 'area'] Returns ------- @@ -559,7 +569,7 @@ def sizeref(self): The 'sizeref' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -598,8 +608,10 @@ def standoff(self): arrowhead marker at it. The 'standoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -638,97 +650,93 @@ def symbol(self): appending "-open-dot" or "dot-open" to a symbol name. The 'symbol' property is an enumeration that may be specified as: - - One of the following enumeration values: - [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', - 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', - 'square', 101, '101', 'square-open', 201, '201', - 'square-dot', 301, '301', 'square-open-dot', 2, '2', - 'diamond', 102, '102', 'diamond-open', 202, '202', - 'diamond-dot', 302, '302', 'diamond-open-dot', 3, '3', - 'cross', 103, '103', 'cross-open', 203, '203', - 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', 'x', - 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', - 'x-open-dot', 5, '5', 'triangle-up', 105, '105', - 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, - '305', 'triangle-up-open-dot', 6, '6', 'triangle-down', - 106, '106', 'triangle-down-open', 206, '206', - 'triangle-down-dot', 306, '306', 'triangle-down-open-dot', - 7, '7', 'triangle-left', 107, '107', 'triangle-left-open', - 207, '207', 'triangle-left-dot', 307, '307', - 'triangle-left-open-dot', 8, '8', 'triangle-right', 108, - '108', 'triangle-right-open', 208, '208', - 'triangle-right-dot', 308, '308', - 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, - '109', 'triangle-ne-open', 209, '209', 'triangle-ne-dot', - 309, '309', 'triangle-ne-open-dot', 10, '10', - 'triangle-se', 110, '110', 'triangle-se-open', 210, '210', - 'triangle-se-dot', 310, '310', 'triangle-se-open-dot', 11, - '11', 'triangle-sw', 111, '111', 'triangle-sw-open', 211, - '211', 'triangle-sw-dot', 311, '311', - 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, - '112', 'triangle-nw-open', 212, '212', 'triangle-nw-dot', - 312, '312', 'triangle-nw-open-dot', 13, '13', 'pentagon', - 113, '113', 'pentagon-open', 213, '213', 'pentagon-dot', - 313, '313', 'pentagon-open-dot', 14, '14', 'hexagon', 114, - '114', 'hexagon-open', 214, '214', 'hexagon-dot', 314, - '314', 'hexagon-open-dot', 15, '15', 'hexagon2', 115, - '115', 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, - '315', 'hexagon2-open-dot', 16, '16', 'octagon', 116, - '116', 'octagon-open', 216, '216', 'octagon-dot', 316, - '316', 'octagon-open-dot', 17, '17', 'star', 117, '117', - 'star-open', 217, '217', 'star-dot', 317, '317', - 'star-open-dot', 18, '18', 'hexagram', 118, '118', - 'hexagram-open', 218, '218', 'hexagram-dot', 318, '318', - 'hexagram-open-dot', 19, '19', 'star-triangle-up', 119, - '119', 'star-triangle-up-open', 219, '219', - 'star-triangle-up-dot', 319, '319', - 'star-triangle-up-open-dot', 20, '20', - 'star-triangle-down', 120, '120', - 'star-triangle-down-open', 220, '220', - 'star-triangle-down-dot', 320, '320', - 'star-triangle-down-open-dot', 21, '21', 'star-square', - 121, '121', 'star-square-open', 221, '221', - 'star-square-dot', 321, '321', 'star-square-open-dot', 22, - '22', 'star-diamond', 122, '122', 'star-diamond-open', - 222, '222', 'star-diamond-dot', 322, '322', - 'star-diamond-open-dot', 23, '23', 'diamond-tall', 123, - '123', 'diamond-tall-open', 223, '223', - 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', - 24, '24', 'diamond-wide', 124, '124', 'diamond-wide-open', - 224, '224', 'diamond-wide-dot', 324, '324', - 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, - '125', 'hourglass-open', 26, '26', 'bowtie', 126, '126', - 'bowtie-open', 27, '27', 'circle-cross', 127, '127', - 'circle-cross-open', 28, '28', 'circle-x', 128, '128', - 'circle-x-open', 29, '29', 'square-cross', 129, '129', - 'square-cross-open', 30, '30', 'square-x', 130, '130', - 'square-x-open', 31, '31', 'diamond-cross', 131, '131', - 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', - 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', - 'cross-thin-open', 34, '34', 'x-thin', 134, '134', - 'x-thin-open', 35, '35', 'asterisk', 135, '135', - 'asterisk-open', 36, '36', 'hash', 136, '136', - 'hash-open', 236, '236', 'hash-dot', 336, '336', - 'hash-open-dot', 37, '37', 'y-up', 137, '137', - 'y-up-open', 38, '38', 'y-down', 138, '138', - 'y-down-open', 39, '39', 'y-left', 139, '139', - 'y-left-open', 40, '40', 'y-right', 140, '140', - 'y-right-open', 41, '41', 'line-ew', 141, '141', - 'line-ew-open', 42, '42', 'line-ns', 142, '142', - 'line-ns-open', 43, '43', 'line-ne', 143, '143', - 'line-ne-open', 44, '44', 'line-nw', 144, '144', - 'line-nw-open', 45, '45', 'arrow-up', 145, '145', - 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', - 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', - 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', - 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', - 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, - '150', 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', - 151, '151', 'arrow-bar-left-open', 52, '52', - 'arrow-bar-right', 152, '152', 'arrow-bar-right-open', 53, - '53', 'arrow', 153, '153', 'arrow-open', 54, '54', - 'arrow-wide', 154, '154', 'arrow-wide-open'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', + 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', 'square', + 101, '101', 'square-open', 201, '201', 'square-dot', 301, + '301', 'square-open-dot', 2, '2', 'diamond', 102, '102', + 'diamond-open', 202, '202', 'diamond-dot', 302, '302', + 'diamond-open-dot', 3, '3', 'cross', 103, '103', 'cross-open', + 203, '203', 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', + 'x', 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', + 'x-open-dot', 5, '5', 'triangle-up', 105, '105', + 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, '305', + 'triangle-up-open-dot', 6, '6', 'triangle-down', 106, '106', + 'triangle-down-open', 206, '206', 'triangle-down-dot', 306, + '306', 'triangle-down-open-dot', 7, '7', 'triangle-left', 107, + '107', 'triangle-left-open', 207, '207', 'triangle-left-dot', + 307, '307', 'triangle-left-open-dot', 8, '8', + 'triangle-right', 108, '108', 'triangle-right-open', 208, + '208', 'triangle-right-dot', 308, '308', + 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, '109', + 'triangle-ne-open', 209, '209', 'triangle-ne-dot', 309, '309', + 'triangle-ne-open-dot', 10, '10', 'triangle-se', 110, '110', + 'triangle-se-open', 210, '210', 'triangle-se-dot', 310, '310', + 'triangle-se-open-dot', 11, '11', 'triangle-sw', 111, '111', + 'triangle-sw-open', 211, '211', 'triangle-sw-dot', 311, '311', + 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, '112', + 'triangle-nw-open', 212, '212', 'triangle-nw-dot', 312, '312', + 'triangle-nw-open-dot', 13, '13', 'pentagon', 113, '113', + 'pentagon-open', 213, '213', 'pentagon-dot', 313, '313', + 'pentagon-open-dot', 14, '14', 'hexagon', 114, '114', + 'hexagon-open', 214, '214', 'hexagon-dot', 314, '314', + 'hexagon-open-dot', 15, '15', 'hexagon2', 115, '115', + 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, '315', + 'hexagon2-open-dot', 16, '16', 'octagon', 116, '116', + 'octagon-open', 216, '216', 'octagon-dot', 316, '316', + 'octagon-open-dot', 17, '17', 'star', 117, '117', 'star-open', + 217, '217', 'star-dot', 317, '317', 'star-open-dot', 18, '18', + 'hexagram', 118, '118', 'hexagram-open', 218, '218', + 'hexagram-dot', 318, '318', 'hexagram-open-dot', 19, '19', + 'star-triangle-up', 119, '119', 'star-triangle-up-open', 219, + '219', 'star-triangle-up-dot', 319, '319', + 'star-triangle-up-open-dot', 20, '20', 'star-triangle-down', + 120, '120', 'star-triangle-down-open', 220, '220', + 'star-triangle-down-dot', 320, '320', + 'star-triangle-down-open-dot', 21, '21', 'star-square', 121, + '121', 'star-square-open', 221, '221', 'star-square-dot', 321, + '321', 'star-square-open-dot', 22, '22', 'star-diamond', 122, + '122', 'star-diamond-open', 222, '222', 'star-diamond-dot', + 322, '322', 'star-diamond-open-dot', 23, '23', 'diamond-tall', + 123, '123', 'diamond-tall-open', 223, '223', + 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', 24, + '24', 'diamond-wide', 124, '124', 'diamond-wide-open', 224, + '224', 'diamond-wide-dot', 324, '324', + 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, '125', + 'hourglass-open', 26, '26', 'bowtie', 126, '126', + 'bowtie-open', 27, '27', 'circle-cross', 127, '127', + 'circle-cross-open', 28, '28', 'circle-x', 128, '128', + 'circle-x-open', 29, '29', 'square-cross', 129, '129', + 'square-cross-open', 30, '30', 'square-x', 130, '130', + 'square-x-open', 31, '31', 'diamond-cross', 131, '131', + 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', + 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', + 'cross-thin-open', 34, '34', 'x-thin', 134, '134', + 'x-thin-open', 35, '35', 'asterisk', 135, '135', + 'asterisk-open', 36, '36', 'hash', 136, '136', 'hash-open', + 236, '236', 'hash-dot', 336, '336', 'hash-open-dot', 37, '37', + 'y-up', 137, '137', 'y-up-open', 38, '38', 'y-down', 138, + '138', 'y-down-open', 39, '39', 'y-left', 139, '139', + 'y-left-open', 40, '40', 'y-right', 140, '140', + 'y-right-open', 41, '41', 'line-ew', 141, '141', + 'line-ew-open', 42, '42', 'line-ns', 142, '142', + 'line-ns-open', 43, '43', 'line-ne', 143, '143', + 'line-ne-open', 44, '44', 'line-nw', 144, '144', + 'line-nw-open', 45, '45', 'arrow-up', 145, '145', + 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', + 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', + 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', + 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', + 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, '150', + 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', 151, '151', + 'arrow-bar-left-open', 52, '52', 'arrow-bar-right', 152, + '152', 'arrow-bar-right-open', 53, '53', 'arrow', 153, '153', + 'arrow-open', 54, '54', 'arrow-wide', 154, '154', + 'arrow-wide-open'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_stream.py b/plotly/graph_objects/scattercarpet/_stream.py index 2cca68669c..b768e21e6e 100644 --- a/plotly/graph_objects/scattercarpet/_stream.py +++ b/plotly/graph_objects/scattercarpet/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_textfont.py b/plotly/graph_objects/scattercarpet/_textfont.py index 28547c46b0..7a4b6a6e68 100644 --- a/plotly/graph_objects/scattercarpet/_textfont.py +++ b/plotly/graph_objects/scattercarpet/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattercarpet/hoverlabel/_font.py b/plotly/graph_objects/scattercarpet/hoverlabel/_font.py index 1e3ba8c1f7..930bfacab6 100644 --- a/plotly/graph_objects/scattercarpet/hoverlabel/_font.py +++ b/plotly/graph_objects/scattercarpet/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py b/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py index e1c94ceb42..bbc8435505 100644 --- a/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/_colorbar.py b/plotly/graph_objects/scattercarpet/marker/_colorbar.py index 9828785860..3946caedf0 100644 --- a/plotly/graph_objects/scattercarpet/marker/_colorbar.py +++ b/plotly/graph_objects/scattercarpet/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/_gradient.py b/plotly/graph_objects/scattercarpet/marker/_gradient.py index 3c31d6c469..af467ddf43 100644 --- a/plotly/graph_objects/scattercarpet/marker/_gradient.py +++ b/plotly/graph_objects/scattercarpet/marker/_gradient.py @@ -58,9 +58,12 @@ def type(self): Sets the type of gradient used to fill the markers The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['radial', 'horizontal', 'vertical', 'none'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['radial', 'horizontal', 'vertical', 'none'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/_line.py b/plotly/graph_objects/scattercarpet/marker/_line.py index fb48dae591..2fda84820c 100644 --- a/plotly/graph_objects/scattercarpet/marker/_line.py +++ b/plotly/graph_objects/scattercarpet/marker/_line.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -290,8 +290,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py index defc763fce..c7776d6ccf 100644 --- a/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/colorbar/_title.py b/plotly/graph_objects/scattercarpet/marker/colorbar/_title.py index 01969ff296..f981f01dc3 100644 --- a/plotly/graph_objects/scattercarpet/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattercarpet/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py b/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py index 7869ea33db..c737fdc3b3 100644 --- a/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattercarpet/selected/_marker.py b/plotly/graph_objects/scattercarpet/selected/_marker.py index 5074f2eaa1..31d551d4c2 100644 --- a/plotly/graph_objects/scattercarpet/selected/_marker.py +++ b/plotly/graph_objects/scattercarpet/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -56,7 +57,8 @@ def size(self): Sets the marker size of selected points. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattercarpet/unselected/_marker.py b/plotly/graph_objects/scattercarpet/unselected/_marker.py index 30f7b7f592..f5ee45cc50 100644 --- a/plotly/graph_objects/scattercarpet/unselected/_marker.py +++ b/plotly/graph_objects/scattercarpet/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -59,7 +60,8 @@ def size(self): selection exists. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattergeo/_hoverlabel.py b/plotly/graph_objects/scattergeo/_hoverlabel.py index 9ec595b59d..66cb713df3 100644 --- a/plotly/graph_objects/scattergeo/_hoverlabel.py +++ b/plotly/graph_objects/scattergeo/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergeo/_line.py b/plotly/graph_objects/scattergeo/_line.py index 6912d5ec4f..d061093447 100644 --- a/plotly/graph_objects/scattergeo/_line.py +++ b/plotly/graph_objects/scattergeo/_line.py @@ -62,7 +62,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattergeo/_marker.py b/plotly/graph_objects/scattergeo/_marker.py index dc72709a09..8bf9e5514c 100644 --- a/plotly/graph_objects/scattergeo/_marker.py +++ b/plotly/graph_objects/scattergeo/_marker.py @@ -69,8 +69,10 @@ def angleref(self): projection. The 'angleref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['previous', 'up', 'north'] + + - One of the following enumeration values: + + ['previous', 'up', 'north'] Returns ------- @@ -157,7 +159,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -180,7 +182,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -202,7 +204,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -400,8 +402,10 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -478,8 +482,10 @@ def size(self): Sets the marker size (in px). The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -499,7 +505,8 @@ def sizemin(self): points. The 'sizemin' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -519,8 +526,10 @@ def sizemode(self): to pixels. The 'sizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['diameter', 'area'] + + - One of the following enumeration values: + + ['diameter', 'area'] Returns ------- @@ -541,7 +550,7 @@ def sizeref(self): The 'sizeref' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -580,8 +589,10 @@ def standoff(self): arrowhead marker at it. The 'standoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -620,97 +631,93 @@ def symbol(self): appending "-open-dot" or "dot-open" to a symbol name. The 'symbol' property is an enumeration that may be specified as: - - One of the following enumeration values: - [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', - 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', - 'square', 101, '101', 'square-open', 201, '201', - 'square-dot', 301, '301', 'square-open-dot', 2, '2', - 'diamond', 102, '102', 'diamond-open', 202, '202', - 'diamond-dot', 302, '302', 'diamond-open-dot', 3, '3', - 'cross', 103, '103', 'cross-open', 203, '203', - 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', 'x', - 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', - 'x-open-dot', 5, '5', 'triangle-up', 105, '105', - 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, - '305', 'triangle-up-open-dot', 6, '6', 'triangle-down', - 106, '106', 'triangle-down-open', 206, '206', - 'triangle-down-dot', 306, '306', 'triangle-down-open-dot', - 7, '7', 'triangle-left', 107, '107', 'triangle-left-open', - 207, '207', 'triangle-left-dot', 307, '307', - 'triangle-left-open-dot', 8, '8', 'triangle-right', 108, - '108', 'triangle-right-open', 208, '208', - 'triangle-right-dot', 308, '308', - 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, - '109', 'triangle-ne-open', 209, '209', 'triangle-ne-dot', - 309, '309', 'triangle-ne-open-dot', 10, '10', - 'triangle-se', 110, '110', 'triangle-se-open', 210, '210', - 'triangle-se-dot', 310, '310', 'triangle-se-open-dot', 11, - '11', 'triangle-sw', 111, '111', 'triangle-sw-open', 211, - '211', 'triangle-sw-dot', 311, '311', - 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, - '112', 'triangle-nw-open', 212, '212', 'triangle-nw-dot', - 312, '312', 'triangle-nw-open-dot', 13, '13', 'pentagon', - 113, '113', 'pentagon-open', 213, '213', 'pentagon-dot', - 313, '313', 'pentagon-open-dot', 14, '14', 'hexagon', 114, - '114', 'hexagon-open', 214, '214', 'hexagon-dot', 314, - '314', 'hexagon-open-dot', 15, '15', 'hexagon2', 115, - '115', 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, - '315', 'hexagon2-open-dot', 16, '16', 'octagon', 116, - '116', 'octagon-open', 216, '216', 'octagon-dot', 316, - '316', 'octagon-open-dot', 17, '17', 'star', 117, '117', - 'star-open', 217, '217', 'star-dot', 317, '317', - 'star-open-dot', 18, '18', 'hexagram', 118, '118', - 'hexagram-open', 218, '218', 'hexagram-dot', 318, '318', - 'hexagram-open-dot', 19, '19', 'star-triangle-up', 119, - '119', 'star-triangle-up-open', 219, '219', - 'star-triangle-up-dot', 319, '319', - 'star-triangle-up-open-dot', 20, '20', - 'star-triangle-down', 120, '120', - 'star-triangle-down-open', 220, '220', - 'star-triangle-down-dot', 320, '320', - 'star-triangle-down-open-dot', 21, '21', 'star-square', - 121, '121', 'star-square-open', 221, '221', - 'star-square-dot', 321, '321', 'star-square-open-dot', 22, - '22', 'star-diamond', 122, '122', 'star-diamond-open', - 222, '222', 'star-diamond-dot', 322, '322', - 'star-diamond-open-dot', 23, '23', 'diamond-tall', 123, - '123', 'diamond-tall-open', 223, '223', - 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', - 24, '24', 'diamond-wide', 124, '124', 'diamond-wide-open', - 224, '224', 'diamond-wide-dot', 324, '324', - 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, - '125', 'hourglass-open', 26, '26', 'bowtie', 126, '126', - 'bowtie-open', 27, '27', 'circle-cross', 127, '127', - 'circle-cross-open', 28, '28', 'circle-x', 128, '128', - 'circle-x-open', 29, '29', 'square-cross', 129, '129', - 'square-cross-open', 30, '30', 'square-x', 130, '130', - 'square-x-open', 31, '31', 'diamond-cross', 131, '131', - 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', - 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', - 'cross-thin-open', 34, '34', 'x-thin', 134, '134', - 'x-thin-open', 35, '35', 'asterisk', 135, '135', - 'asterisk-open', 36, '36', 'hash', 136, '136', - 'hash-open', 236, '236', 'hash-dot', 336, '336', - 'hash-open-dot', 37, '37', 'y-up', 137, '137', - 'y-up-open', 38, '38', 'y-down', 138, '138', - 'y-down-open', 39, '39', 'y-left', 139, '139', - 'y-left-open', 40, '40', 'y-right', 140, '140', - 'y-right-open', 41, '41', 'line-ew', 141, '141', - 'line-ew-open', 42, '42', 'line-ns', 142, '142', - 'line-ns-open', 43, '43', 'line-ne', 143, '143', - 'line-ne-open', 44, '44', 'line-nw', 144, '144', - 'line-nw-open', 45, '45', 'arrow-up', 145, '145', - 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', - 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', - 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', - 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', - 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, - '150', 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', - 151, '151', 'arrow-bar-left-open', 52, '52', - 'arrow-bar-right', 152, '152', 'arrow-bar-right-open', 53, - '53', 'arrow', 153, '153', 'arrow-open', 54, '54', - 'arrow-wide', 154, '154', 'arrow-wide-open'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', + 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', 'square', + 101, '101', 'square-open', 201, '201', 'square-dot', 301, + '301', 'square-open-dot', 2, '2', 'diamond', 102, '102', + 'diamond-open', 202, '202', 'diamond-dot', 302, '302', + 'diamond-open-dot', 3, '3', 'cross', 103, '103', 'cross-open', + 203, '203', 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', + 'x', 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', + 'x-open-dot', 5, '5', 'triangle-up', 105, '105', + 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, '305', + 'triangle-up-open-dot', 6, '6', 'triangle-down', 106, '106', + 'triangle-down-open', 206, '206', 'triangle-down-dot', 306, + '306', 'triangle-down-open-dot', 7, '7', 'triangle-left', 107, + '107', 'triangle-left-open', 207, '207', 'triangle-left-dot', + 307, '307', 'triangle-left-open-dot', 8, '8', + 'triangle-right', 108, '108', 'triangle-right-open', 208, + '208', 'triangle-right-dot', 308, '308', + 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, '109', + 'triangle-ne-open', 209, '209', 'triangle-ne-dot', 309, '309', + 'triangle-ne-open-dot', 10, '10', 'triangle-se', 110, '110', + 'triangle-se-open', 210, '210', 'triangle-se-dot', 310, '310', + 'triangle-se-open-dot', 11, '11', 'triangle-sw', 111, '111', + 'triangle-sw-open', 211, '211', 'triangle-sw-dot', 311, '311', + 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, '112', + 'triangle-nw-open', 212, '212', 'triangle-nw-dot', 312, '312', + 'triangle-nw-open-dot', 13, '13', 'pentagon', 113, '113', + 'pentagon-open', 213, '213', 'pentagon-dot', 313, '313', + 'pentagon-open-dot', 14, '14', 'hexagon', 114, '114', + 'hexagon-open', 214, '214', 'hexagon-dot', 314, '314', + 'hexagon-open-dot', 15, '15', 'hexagon2', 115, '115', + 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, '315', + 'hexagon2-open-dot', 16, '16', 'octagon', 116, '116', + 'octagon-open', 216, '216', 'octagon-dot', 316, '316', + 'octagon-open-dot', 17, '17', 'star', 117, '117', 'star-open', + 217, '217', 'star-dot', 317, '317', 'star-open-dot', 18, '18', + 'hexagram', 118, '118', 'hexagram-open', 218, '218', + 'hexagram-dot', 318, '318', 'hexagram-open-dot', 19, '19', + 'star-triangle-up', 119, '119', 'star-triangle-up-open', 219, + '219', 'star-triangle-up-dot', 319, '319', + 'star-triangle-up-open-dot', 20, '20', 'star-triangle-down', + 120, '120', 'star-triangle-down-open', 220, '220', + 'star-triangle-down-dot', 320, '320', + 'star-triangle-down-open-dot', 21, '21', 'star-square', 121, + '121', 'star-square-open', 221, '221', 'star-square-dot', 321, + '321', 'star-square-open-dot', 22, '22', 'star-diamond', 122, + '122', 'star-diamond-open', 222, '222', 'star-diamond-dot', + 322, '322', 'star-diamond-open-dot', 23, '23', 'diamond-tall', + 123, '123', 'diamond-tall-open', 223, '223', + 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', 24, + '24', 'diamond-wide', 124, '124', 'diamond-wide-open', 224, + '224', 'diamond-wide-dot', 324, '324', + 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, '125', + 'hourglass-open', 26, '26', 'bowtie', 126, '126', + 'bowtie-open', 27, '27', 'circle-cross', 127, '127', + 'circle-cross-open', 28, '28', 'circle-x', 128, '128', + 'circle-x-open', 29, '29', 'square-cross', 129, '129', + 'square-cross-open', 30, '30', 'square-x', 130, '130', + 'square-x-open', 31, '31', 'diamond-cross', 131, '131', + 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', + 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', + 'cross-thin-open', 34, '34', 'x-thin', 134, '134', + 'x-thin-open', 35, '35', 'asterisk', 135, '135', + 'asterisk-open', 36, '36', 'hash', 136, '136', 'hash-open', + 236, '236', 'hash-dot', 336, '336', 'hash-open-dot', 37, '37', + 'y-up', 137, '137', 'y-up-open', 38, '38', 'y-down', 138, + '138', 'y-down-open', 39, '39', 'y-left', 139, '139', + 'y-left-open', 40, '40', 'y-right', 140, '140', + 'y-right-open', 41, '41', 'line-ew', 141, '141', + 'line-ew-open', 42, '42', 'line-ns', 142, '142', + 'line-ns-open', 43, '43', 'line-ne', 143, '143', + 'line-ne-open', 44, '44', 'line-nw', 144, '144', + 'line-nw-open', 45, '45', 'arrow-up', 145, '145', + 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', + 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', + 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', + 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', + 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, '150', + 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', 151, '151', + 'arrow-bar-left-open', 52, '52', 'arrow-bar-right', 152, + '152', 'arrow-bar-right-open', 53, '53', 'arrow', 153, '153', + 'arrow-open', 54, '54', 'arrow-wide', 154, '154', + 'arrow-wide-open'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergeo/_stream.py b/plotly/graph_objects/scattergeo/_stream.py index 5ee0a2c727..50641b97e5 100644 --- a/plotly/graph_objects/scattergeo/_stream.py +++ b/plotly/graph_objects/scattergeo/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/scattergeo/_textfont.py b/plotly/graph_objects/scattergeo/_textfont.py index 0dbbdf000a..51153ba53b 100644 --- a/plotly/graph_objects/scattergeo/_textfont.py +++ b/plotly/graph_objects/scattergeo/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergeo/hoverlabel/_font.py b/plotly/graph_objects/scattergeo/hoverlabel/_font.py index cb9693d4b4..a725551bbf 100644 --- a/plotly/graph_objects/scattergeo/hoverlabel/_font.py +++ b/plotly/graph_objects/scattergeo/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py b/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py index 6d49636283..52bdcfa41e 100644 --- a/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/_colorbar.py b/plotly/graph_objects/scattergeo/marker/_colorbar.py index b79af22189..4d567097e7 100644 --- a/plotly/graph_objects/scattergeo/marker/_colorbar.py +++ b/plotly/graph_objects/scattergeo/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/_gradient.py b/plotly/graph_objects/scattergeo/marker/_gradient.py index e59e73802d..b96be444b5 100644 --- a/plotly/graph_objects/scattergeo/marker/_gradient.py +++ b/plotly/graph_objects/scattergeo/marker/_gradient.py @@ -58,9 +58,12 @@ def type(self): Sets the type of gradient used to fill the markers The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['radial', 'horizontal', 'vertical', 'none'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['radial', 'horizontal', 'vertical', 'none'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/_line.py b/plotly/graph_objects/scattergeo/marker/_line.py index 8dce2ccc8d..da390d2a8f 100644 --- a/plotly/graph_objects/scattergeo/marker/_line.py +++ b/plotly/graph_objects/scattergeo/marker/_line.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -290,8 +290,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py index eea0450f45..32976547d2 100644 --- a/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/colorbar/_title.py b/plotly/graph_objects/scattergeo/marker/colorbar/_title.py index cdd04bfe19..cb85605a03 100644 --- a/plotly/graph_objects/scattergeo/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattergeo/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py b/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py index fa7023ab15..d47ca03802 100644 --- a/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattergeo/selected/_marker.py b/plotly/graph_objects/scattergeo/selected/_marker.py index fee146e7d9..10a4e3d5f8 100644 --- a/plotly/graph_objects/scattergeo/selected/_marker.py +++ b/plotly/graph_objects/scattergeo/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -56,7 +57,8 @@ def size(self): Sets the marker size of selected points. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattergeo/unselected/_marker.py b/plotly/graph_objects/scattergeo/unselected/_marker.py index f69829bdc4..bf723d7ba5 100644 --- a/plotly/graph_objects/scattergeo/unselected/_marker.py +++ b/plotly/graph_objects/scattergeo/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -59,7 +60,8 @@ def size(self): selection exists. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattergl/_error_x.py b/plotly/graph_objects/scattergl/_error_x.py index aa896bbe86..50bc2391e3 100644 --- a/plotly/graph_objects/scattergl/_error_x.py +++ b/plotly/graph_objects/scattergl/_error_x.py @@ -166,7 +166,8 @@ def thickness(self): Sets the thickness (in px) of the error bars. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -224,8 +225,10 @@ def type(self): data set `array`. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['percent', 'constant', 'sqrt', 'data'] + + - One of the following enumeration values: + + ['percent', 'constant', 'sqrt', 'data'] Returns ------- @@ -245,7 +248,8 @@ def value(self): corresponding to the lengths of the error bars. The 'value' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -266,7 +270,8 @@ def valueminus(self): (left) direction for vertical (horizontal) bars The 'valueminus' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -303,7 +308,8 @@ def width(self): error bars. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattergl/_error_y.py b/plotly/graph_objects/scattergl/_error_y.py index cb5dcb7835..62522f6d19 100644 --- a/plotly/graph_objects/scattergl/_error_y.py +++ b/plotly/graph_objects/scattergl/_error_y.py @@ -149,7 +149,8 @@ def thickness(self): Sets the thickness (in px) of the error bars. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -207,8 +208,10 @@ def type(self): data set `array`. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['percent', 'constant', 'sqrt', 'data'] + + - One of the following enumeration values: + + ['percent', 'constant', 'sqrt', 'data'] Returns ------- @@ -228,7 +231,8 @@ def value(self): corresponding to the lengths of the error bars. The 'value' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -249,7 +253,8 @@ def valueminus(self): (left) direction for vertical (horizontal) bars The 'valueminus' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -286,7 +291,8 @@ def width(self): error bars. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattergl/_hoverlabel.py b/plotly/graph_objects/scattergl/_hoverlabel.py index ff821e1b38..24e9e3d42d 100644 --- a/plotly/graph_objects/scattergl/_hoverlabel.py +++ b/plotly/graph_objects/scattergl/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergl/_line.py b/plotly/graph_objects/scattergl/_line.py index 04d5f4cc33..0d65a081dd 100644 --- a/plotly/graph_objects/scattergl/_line.py +++ b/plotly/graph_objects/scattergl/_line.py @@ -38,9 +38,10 @@ def dash(self): Sets the style of the lines. The 'dash' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['dash', 'dashdot', 'dot', 'longdash', 'longdashdot', - 'solid'] + + - One of the following enumeration values: + + ['dash', 'dashdot', 'dot', 'longdash', 'longdashdot', 'solid'] Returns ------- @@ -59,8 +60,10 @@ def shape(self): line shapes. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['linear', 'hv', 'vh', 'hvh', 'vhv'] + + - One of the following enumeration values: + + ['linear', 'hv', 'vh', 'hvh', 'vhv'] Returns ------- @@ -78,7 +81,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattergl/_marker.py b/plotly/graph_objects/scattergl/_marker.py index 42d2fec25c..65acb6dcab 100644 --- a/plotly/graph_objects/scattergl/_marker.py +++ b/plotly/graph_objects/scattergl/_marker.py @@ -130,7 +130,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -153,7 +153,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -175,7 +175,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -354,8 +354,10 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -432,8 +434,10 @@ def size(self): Sets the marker size (in px). The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -453,7 +457,8 @@ def sizemin(self): points. The 'sizemin' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +478,10 @@ def sizemode(self): to pixels. The 'sizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['diameter', 'area'] + + - One of the following enumeration values: + + ['diameter', 'area'] Returns ------- @@ -495,7 +502,7 @@ def sizeref(self): The 'sizeref' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -534,97 +541,93 @@ def symbol(self): appending "-open-dot" or "dot-open" to a symbol name. The 'symbol' property is an enumeration that may be specified as: - - One of the following enumeration values: - [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', - 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', - 'square', 101, '101', 'square-open', 201, '201', - 'square-dot', 301, '301', 'square-open-dot', 2, '2', - 'diamond', 102, '102', 'diamond-open', 202, '202', - 'diamond-dot', 302, '302', 'diamond-open-dot', 3, '3', - 'cross', 103, '103', 'cross-open', 203, '203', - 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', 'x', - 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', - 'x-open-dot', 5, '5', 'triangle-up', 105, '105', - 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, - '305', 'triangle-up-open-dot', 6, '6', 'triangle-down', - 106, '106', 'triangle-down-open', 206, '206', - 'triangle-down-dot', 306, '306', 'triangle-down-open-dot', - 7, '7', 'triangle-left', 107, '107', 'triangle-left-open', - 207, '207', 'triangle-left-dot', 307, '307', - 'triangle-left-open-dot', 8, '8', 'triangle-right', 108, - '108', 'triangle-right-open', 208, '208', - 'triangle-right-dot', 308, '308', - 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, - '109', 'triangle-ne-open', 209, '209', 'triangle-ne-dot', - 309, '309', 'triangle-ne-open-dot', 10, '10', - 'triangle-se', 110, '110', 'triangle-se-open', 210, '210', - 'triangle-se-dot', 310, '310', 'triangle-se-open-dot', 11, - '11', 'triangle-sw', 111, '111', 'triangle-sw-open', 211, - '211', 'triangle-sw-dot', 311, '311', - 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, - '112', 'triangle-nw-open', 212, '212', 'triangle-nw-dot', - 312, '312', 'triangle-nw-open-dot', 13, '13', 'pentagon', - 113, '113', 'pentagon-open', 213, '213', 'pentagon-dot', - 313, '313', 'pentagon-open-dot', 14, '14', 'hexagon', 114, - '114', 'hexagon-open', 214, '214', 'hexagon-dot', 314, - '314', 'hexagon-open-dot', 15, '15', 'hexagon2', 115, - '115', 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, - '315', 'hexagon2-open-dot', 16, '16', 'octagon', 116, - '116', 'octagon-open', 216, '216', 'octagon-dot', 316, - '316', 'octagon-open-dot', 17, '17', 'star', 117, '117', - 'star-open', 217, '217', 'star-dot', 317, '317', - 'star-open-dot', 18, '18', 'hexagram', 118, '118', - 'hexagram-open', 218, '218', 'hexagram-dot', 318, '318', - 'hexagram-open-dot', 19, '19', 'star-triangle-up', 119, - '119', 'star-triangle-up-open', 219, '219', - 'star-triangle-up-dot', 319, '319', - 'star-triangle-up-open-dot', 20, '20', - 'star-triangle-down', 120, '120', - 'star-triangle-down-open', 220, '220', - 'star-triangle-down-dot', 320, '320', - 'star-triangle-down-open-dot', 21, '21', 'star-square', - 121, '121', 'star-square-open', 221, '221', - 'star-square-dot', 321, '321', 'star-square-open-dot', 22, - '22', 'star-diamond', 122, '122', 'star-diamond-open', - 222, '222', 'star-diamond-dot', 322, '322', - 'star-diamond-open-dot', 23, '23', 'diamond-tall', 123, - '123', 'diamond-tall-open', 223, '223', - 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', - 24, '24', 'diamond-wide', 124, '124', 'diamond-wide-open', - 224, '224', 'diamond-wide-dot', 324, '324', - 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, - '125', 'hourglass-open', 26, '26', 'bowtie', 126, '126', - 'bowtie-open', 27, '27', 'circle-cross', 127, '127', - 'circle-cross-open', 28, '28', 'circle-x', 128, '128', - 'circle-x-open', 29, '29', 'square-cross', 129, '129', - 'square-cross-open', 30, '30', 'square-x', 130, '130', - 'square-x-open', 31, '31', 'diamond-cross', 131, '131', - 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', - 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', - 'cross-thin-open', 34, '34', 'x-thin', 134, '134', - 'x-thin-open', 35, '35', 'asterisk', 135, '135', - 'asterisk-open', 36, '36', 'hash', 136, '136', - 'hash-open', 236, '236', 'hash-dot', 336, '336', - 'hash-open-dot', 37, '37', 'y-up', 137, '137', - 'y-up-open', 38, '38', 'y-down', 138, '138', - 'y-down-open', 39, '39', 'y-left', 139, '139', - 'y-left-open', 40, '40', 'y-right', 140, '140', - 'y-right-open', 41, '41', 'line-ew', 141, '141', - 'line-ew-open', 42, '42', 'line-ns', 142, '142', - 'line-ns-open', 43, '43', 'line-ne', 143, '143', - 'line-ne-open', 44, '44', 'line-nw', 144, '144', - 'line-nw-open', 45, '45', 'arrow-up', 145, '145', - 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', - 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', - 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', - 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', - 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, - '150', 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', - 151, '151', 'arrow-bar-left-open', 52, '52', - 'arrow-bar-right', 152, '152', 'arrow-bar-right-open', 53, - '53', 'arrow', 153, '153', 'arrow-open', 54, '54', - 'arrow-wide', 154, '154', 'arrow-wide-open'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', + 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', 'square', + 101, '101', 'square-open', 201, '201', 'square-dot', 301, + '301', 'square-open-dot', 2, '2', 'diamond', 102, '102', + 'diamond-open', 202, '202', 'diamond-dot', 302, '302', + 'diamond-open-dot', 3, '3', 'cross', 103, '103', 'cross-open', + 203, '203', 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', + 'x', 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', + 'x-open-dot', 5, '5', 'triangle-up', 105, '105', + 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, '305', + 'triangle-up-open-dot', 6, '6', 'triangle-down', 106, '106', + 'triangle-down-open', 206, '206', 'triangle-down-dot', 306, + '306', 'triangle-down-open-dot', 7, '7', 'triangle-left', 107, + '107', 'triangle-left-open', 207, '207', 'triangle-left-dot', + 307, '307', 'triangle-left-open-dot', 8, '8', + 'triangle-right', 108, '108', 'triangle-right-open', 208, + '208', 'triangle-right-dot', 308, '308', + 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, '109', + 'triangle-ne-open', 209, '209', 'triangle-ne-dot', 309, '309', + 'triangle-ne-open-dot', 10, '10', 'triangle-se', 110, '110', + 'triangle-se-open', 210, '210', 'triangle-se-dot', 310, '310', + 'triangle-se-open-dot', 11, '11', 'triangle-sw', 111, '111', + 'triangle-sw-open', 211, '211', 'triangle-sw-dot', 311, '311', + 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, '112', + 'triangle-nw-open', 212, '212', 'triangle-nw-dot', 312, '312', + 'triangle-nw-open-dot', 13, '13', 'pentagon', 113, '113', + 'pentagon-open', 213, '213', 'pentagon-dot', 313, '313', + 'pentagon-open-dot', 14, '14', 'hexagon', 114, '114', + 'hexagon-open', 214, '214', 'hexagon-dot', 314, '314', + 'hexagon-open-dot', 15, '15', 'hexagon2', 115, '115', + 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, '315', + 'hexagon2-open-dot', 16, '16', 'octagon', 116, '116', + 'octagon-open', 216, '216', 'octagon-dot', 316, '316', + 'octagon-open-dot', 17, '17', 'star', 117, '117', 'star-open', + 217, '217', 'star-dot', 317, '317', 'star-open-dot', 18, '18', + 'hexagram', 118, '118', 'hexagram-open', 218, '218', + 'hexagram-dot', 318, '318', 'hexagram-open-dot', 19, '19', + 'star-triangle-up', 119, '119', 'star-triangle-up-open', 219, + '219', 'star-triangle-up-dot', 319, '319', + 'star-triangle-up-open-dot', 20, '20', 'star-triangle-down', + 120, '120', 'star-triangle-down-open', 220, '220', + 'star-triangle-down-dot', 320, '320', + 'star-triangle-down-open-dot', 21, '21', 'star-square', 121, + '121', 'star-square-open', 221, '221', 'star-square-dot', 321, + '321', 'star-square-open-dot', 22, '22', 'star-diamond', 122, + '122', 'star-diamond-open', 222, '222', 'star-diamond-dot', + 322, '322', 'star-diamond-open-dot', 23, '23', 'diamond-tall', + 123, '123', 'diamond-tall-open', 223, '223', + 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', 24, + '24', 'diamond-wide', 124, '124', 'diamond-wide-open', 224, + '224', 'diamond-wide-dot', 324, '324', + 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, '125', + 'hourglass-open', 26, '26', 'bowtie', 126, '126', + 'bowtie-open', 27, '27', 'circle-cross', 127, '127', + 'circle-cross-open', 28, '28', 'circle-x', 128, '128', + 'circle-x-open', 29, '29', 'square-cross', 129, '129', + 'square-cross-open', 30, '30', 'square-x', 130, '130', + 'square-x-open', 31, '31', 'diamond-cross', 131, '131', + 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', + 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', + 'cross-thin-open', 34, '34', 'x-thin', 134, '134', + 'x-thin-open', 35, '35', 'asterisk', 135, '135', + 'asterisk-open', 36, '36', 'hash', 136, '136', 'hash-open', + 236, '236', 'hash-dot', 336, '336', 'hash-open-dot', 37, '37', + 'y-up', 137, '137', 'y-up-open', 38, '38', 'y-down', 138, + '138', 'y-down-open', 39, '39', 'y-left', 139, '139', + 'y-left-open', 40, '40', 'y-right', 140, '140', + 'y-right-open', 41, '41', 'line-ew', 141, '141', + 'line-ew-open', 42, '42', 'line-ns', 142, '142', + 'line-ns-open', 43, '43', 'line-ne', 143, '143', + 'line-ne-open', 44, '44', 'line-nw', 144, '144', + 'line-nw-open', 45, '45', 'arrow-up', 145, '145', + 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', + 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', + 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', + 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', + 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, '150', + 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', 151, '151', + 'arrow-bar-left-open', 52, '52', 'arrow-bar-right', 152, + '152', 'arrow-bar-right-open', 53, '53', 'arrow', 153, '153', + 'arrow-open', 54, '54', 'arrow-wide', 154, '154', + 'arrow-wide-open'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergl/_stream.py b/plotly/graph_objects/scattergl/_stream.py index f7b7c8288e..8a509c27dd 100644 --- a/plotly/graph_objects/scattergl/_stream.py +++ b/plotly/graph_objects/scattergl/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/scattergl/_textfont.py b/plotly/graph_objects/scattergl/_textfont.py index ef7a9e6f96..cfa0fdb95b 100644 --- a/plotly/graph_objects/scattergl/_textfont.py +++ b/plotly/graph_objects/scattergl/_textfont.py @@ -107,8 +107,10 @@ def familysrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -145,9 +147,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -183,9 +188,12 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -221,9 +229,12 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'bold'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'bold'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergl/hoverlabel/_font.py b/plotly/graph_objects/scattergl/hoverlabel/_font.py index 6b4b2663bd..851dd23e9b 100644 --- a/plotly/graph_objects/scattergl/hoverlabel/_font.py +++ b/plotly/graph_objects/scattergl/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergl/legendgrouptitle/_font.py b/plotly/graph_objects/scattergl/legendgrouptitle/_font.py index 31234fa14b..56d56c4936 100644 --- a/plotly/graph_objects/scattergl/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattergl/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/_colorbar.py b/plotly/graph_objects/scattergl/marker/_colorbar.py index 63bd7b391e..e7938662d6 100644 --- a/plotly/graph_objects/scattergl/marker/_colorbar.py +++ b/plotly/graph_objects/scattergl/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/_line.py b/plotly/graph_objects/scattergl/marker/_line.py index 860117b1e3..8d8d26f047 100644 --- a/plotly/graph_objects/scattergl/marker/_line.py +++ b/plotly/graph_objects/scattergl/marker/_line.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -290,8 +290,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py index ddb75a3b2e..9c9289ceae 100644 --- a/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/colorbar/_title.py b/plotly/graph_objects/scattergl/marker/colorbar/_title.py index d5abc2a31a..413d7cd02a 100644 --- a/plotly/graph_objects/scattergl/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattergl/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py b/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py index 85615cc3fd..21a17a2b66 100644 --- a/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattergl/selected/_marker.py b/plotly/graph_objects/scattergl/selected/_marker.py index 0520a7c676..8ec87e4136 100644 --- a/plotly/graph_objects/scattergl/selected/_marker.py +++ b/plotly/graph_objects/scattergl/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -56,7 +57,8 @@ def size(self): Sets the marker size of selected points. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattergl/unselected/_marker.py b/plotly/graph_objects/scattergl/unselected/_marker.py index 5804ad1c8e..032656e45f 100644 --- a/plotly/graph_objects/scattergl/unselected/_marker.py +++ b/plotly/graph_objects/scattergl/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -59,7 +60,8 @@ def size(self): selection exists. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattermap/_cluster.py b/plotly/graph_objects/scattermap/_cluster.py index 7200c60d00..3c1e25ac6e 100644 --- a/plotly/graph_objects/scattermap/_cluster.py +++ b/plotly/graph_objects/scattermap/_cluster.py @@ -87,7 +87,8 @@ def maxzoom(self): than this, points will never be clustered. The 'maxzoom' property is a number and may be specified as: - - An int or float in the interval [0, 24] + + - An int or float in the interval [0, 24] Returns ------- @@ -105,8 +106,10 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -142,8 +145,10 @@ def size(self): Sets the size for each cluster step. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -183,8 +188,10 @@ def step(self): the given value until one less than the next value. The 'step' property is a number and may be specified as: - - An int or float in the interval [-1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [-1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattermap/_hoverlabel.py b/plotly/graph_objects/scattermap/_hoverlabel.py index d64862a300..d8fd20ca8f 100644 --- a/plotly/graph_objects/scattermap/_hoverlabel.py +++ b/plotly/graph_objects/scattermap/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattermap/_line.py b/plotly/graph_objects/scattermap/_line.py index ec077479a6..0bbd514241 100644 --- a/plotly/graph_objects/scattermap/_line.py +++ b/plotly/graph_objects/scattermap/_line.py @@ -38,7 +38,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattermap/_marker.py b/plotly/graph_objects/scattermap/_marker.py index e9c22399dd..abf087f2fc 100644 --- a/plotly/graph_objects/scattermap/_marker.py +++ b/plotly/graph_objects/scattermap/_marker.py @@ -63,8 +63,9 @@ def angle(self): The 'angle' property is a number and may be specified as: - - An int or float - - A tuple, list, or one-dimensional numpy array of the above + - An int or float + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -151,7 +152,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -174,7 +175,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -196,7 +197,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -356,8 +357,10 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -434,8 +437,10 @@ def size(self): Sets the marker size (in px). The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -455,7 +460,8 @@ def sizemin(self): points. The 'sizemin' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -475,8 +481,10 @@ def sizemode(self): to pixels. The 'sizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['diameter', 'area'] + + - One of the following enumeration values: + + ['diameter', 'area'] Returns ------- @@ -497,7 +505,7 @@ def sizeref(self): The 'sizeref' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/scattermap/_stream.py b/plotly/graph_objects/scattermap/_stream.py index a0cec7326d..6073e80b67 100644 --- a/plotly/graph_objects/scattermap/_stream.py +++ b/plotly/graph_objects/scattermap/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/scattermap/_textfont.py b/plotly/graph_objects/scattermap/_textfont.py index 9de007a9ce..a7482b2a48 100644 --- a/plotly/graph_objects/scattermap/_textfont.py +++ b/plotly/graph_objects/scattermap/_textfont.py @@ -56,7 +56,8 @@ def family(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -75,8 +76,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- diff --git a/plotly/graph_objects/scattermap/hoverlabel/_font.py b/plotly/graph_objects/scattermap/hoverlabel/_font.py index efc1d6b996..47c96bf20c 100644 --- a/plotly/graph_objects/scattermap/hoverlabel/_font.py +++ b/plotly/graph_objects/scattermap/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattermap/legendgrouptitle/_font.py b/plotly/graph_objects/scattermap/legendgrouptitle/_font.py index 41fc96f955..2344ace5c6 100644 --- a/plotly/graph_objects/scattermap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattermap/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattermap/marker/_colorbar.py b/plotly/graph_objects/scattermap/marker/_colorbar.py index dcb9b28dba..e652760573 100644 --- a/plotly/graph_objects/scattermap/marker/_colorbar.py +++ b/plotly/graph_objects/scattermap/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py index 0cded3b853..6cbcc2d4b9 100644 --- a/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattermap/marker/colorbar/_title.py b/plotly/graph_objects/scattermap/marker/colorbar/_title.py index b8f4b534e9..03a8baa37a 100644 --- a/plotly/graph_objects/scattermap/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattermap/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py b/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py index 407fa222ed..04f94580cd 100644 --- a/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattermap/selected/_marker.py b/plotly/graph_objects/scattermap/selected/_marker.py index 3070e627f2..6945bd1958 100644 --- a/plotly/graph_objects/scattermap/selected/_marker.py +++ b/plotly/graph_objects/scattermap/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -56,7 +57,8 @@ def size(self): Sets the marker size of selected points. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattermap/unselected/_marker.py b/plotly/graph_objects/scattermap/unselected/_marker.py index d73184abfa..b41fb9750e 100644 --- a/plotly/graph_objects/scattermap/unselected/_marker.py +++ b/plotly/graph_objects/scattermap/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -59,7 +60,8 @@ def size(self): selection exists. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_cluster.py b/plotly/graph_objects/scattermapbox/_cluster.py index f9226956d8..80475eeb04 100644 --- a/plotly/graph_objects/scattermapbox/_cluster.py +++ b/plotly/graph_objects/scattermapbox/_cluster.py @@ -87,7 +87,8 @@ def maxzoom(self): than this, points will never be clustered. The 'maxzoom' property is a number and may be specified as: - - An int or float in the interval [0, 24] + + - An int or float in the interval [0, 24] Returns ------- @@ -105,8 +106,10 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -142,8 +145,10 @@ def size(self): Sets the size for each cluster step. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -183,8 +188,10 @@ def step(self): the given value until one less than the next value. The 'step' property is a number and may be specified as: - - An int or float in the interval [-1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [-1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_hoverlabel.py b/plotly/graph_objects/scattermapbox/_hoverlabel.py index d87bc58579..61bc88dd33 100644 --- a/plotly/graph_objects/scattermapbox/_hoverlabel.py +++ b/plotly/graph_objects/scattermapbox/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_line.py b/plotly/graph_objects/scattermapbox/_line.py index ffec50f690..19a107bd44 100644 --- a/plotly/graph_objects/scattermapbox/_line.py +++ b/plotly/graph_objects/scattermapbox/_line.py @@ -38,7 +38,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_marker.py b/plotly/graph_objects/scattermapbox/_marker.py index 74dc6a0b31..bf7c730a2f 100644 --- a/plotly/graph_objects/scattermapbox/_marker.py +++ b/plotly/graph_objects/scattermapbox/_marker.py @@ -63,8 +63,9 @@ def angle(self): The 'angle' property is a number and may be specified as: - - An int or float - - A tuple, list, or one-dimensional numpy array of the above + - An int or float + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -151,7 +152,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -174,7 +175,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -196,7 +197,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -356,8 +357,10 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -434,8 +437,10 @@ def size(self): Sets the marker size (in px). The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -455,7 +460,8 @@ def sizemin(self): points. The 'sizemin' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -475,8 +481,10 @@ def sizemode(self): to pixels. The 'sizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['diameter', 'area'] + + - One of the following enumeration values: + + ['diameter', 'area'] Returns ------- @@ -497,7 +505,7 @@ def sizeref(self): The 'sizeref' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_stream.py b/plotly/graph_objects/scattermapbox/_stream.py index b2257054c4..5e9aab93f2 100644 --- a/plotly/graph_objects/scattermapbox/_stream.py +++ b/plotly/graph_objects/scattermapbox/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_textfont.py b/plotly/graph_objects/scattermapbox/_textfont.py index 86f83e8c55..253369d023 100644 --- a/plotly/graph_objects/scattermapbox/_textfont.py +++ b/plotly/graph_objects/scattermapbox/_textfont.py @@ -56,7 +56,8 @@ def family(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -75,8 +76,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- diff --git a/plotly/graph_objects/scattermapbox/hoverlabel/_font.py b/plotly/graph_objects/scattermapbox/hoverlabel/_font.py index a63bd4804c..9d072c8c89 100644 --- a/plotly/graph_objects/scattermapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/scattermapbox/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py b/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py index fddcc48e8a..1a2f04c0b5 100644 --- a/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattermapbox/marker/_colorbar.py b/plotly/graph_objects/scattermapbox/marker/_colorbar.py index a1b80377e6..3dbc680437 100644 --- a/plotly/graph_objects/scattermapbox/marker/_colorbar.py +++ b/plotly/graph_objects/scattermapbox/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py index 1918e1e479..5c2e3f0966 100644 --- a/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattermapbox/marker/colorbar/_title.py b/plotly/graph_objects/scattermapbox/marker/colorbar/_title.py index 6c1f4612ff..14a0f0157d 100644 --- a/plotly/graph_objects/scattermapbox/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattermapbox/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py b/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py index 7f963cd61d..3e5935827d 100644 --- a/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattermapbox/selected/_marker.py b/plotly/graph_objects/scattermapbox/selected/_marker.py index 8201e6c0cd..bf84db600e 100644 --- a/plotly/graph_objects/scattermapbox/selected/_marker.py +++ b/plotly/graph_objects/scattermapbox/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -56,7 +57,8 @@ def size(self): Sets the marker size of selected points. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattermapbox/unselected/_marker.py b/plotly/graph_objects/scattermapbox/unselected/_marker.py index c65b0c9883..b092c1f99b 100644 --- a/plotly/graph_objects/scattermapbox/unselected/_marker.py +++ b/plotly/graph_objects/scattermapbox/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -59,7 +60,8 @@ def size(self): selection exists. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_hoverlabel.py b/plotly/graph_objects/scatterpolar/_hoverlabel.py index 26e06bcb17..ff7256c04b 100644 --- a/plotly/graph_objects/scatterpolar/_hoverlabel.py +++ b/plotly/graph_objects/scatterpolar/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_line.py b/plotly/graph_objects/scatterpolar/_line.py index 1949c58e6a..819bd2a3e4 100644 --- a/plotly/graph_objects/scatterpolar/_line.py +++ b/plotly/graph_objects/scatterpolar/_line.py @@ -27,8 +27,10 @@ def backoff(self): markers if `marker.angleref` is set to "previous". The 'backoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -112,8 +114,10 @@ def shape(self): correspond to step-wise line shapes. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['linear', 'spline'] + + - One of the following enumeration values: + + ['linear', 'spline'] Returns ------- @@ -133,7 +137,8 @@ def smoothing(self): to a "linear" shape). The 'smoothing' property is a number and may be specified as: - - An int or float in the interval [0, 1.3] + + - An int or float in the interval [0, 1.3] Returns ------- @@ -151,7 +156,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_marker.py b/plotly/graph_objects/scatterpolar/_marker.py index e7dafe0a4a..823bce72a1 100644 --- a/plotly/graph_objects/scatterpolar/_marker.py +++ b/plotly/graph_objects/scatterpolar/_marker.py @@ -68,8 +68,10 @@ def angleref(self): "up", angle 0 points toward the top of the screen. The 'angleref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['previous', 'up'] + + - One of the following enumeration values: + + ['previous', 'up'] Returns ------- @@ -156,7 +158,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -179,7 +181,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -201,7 +203,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -400,7 +402,8 @@ def maxdisplayed(self): corresponds to no limit. The 'maxdisplayed' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -418,8 +421,10 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -496,8 +501,10 @@ def size(self): Sets the marker size (in px). The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -517,7 +524,8 @@ def sizemin(self): points. The 'sizemin' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -537,8 +545,10 @@ def sizemode(self): to pixels. The 'sizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['diameter', 'area'] + + - One of the following enumeration values: + + ['diameter', 'area'] Returns ------- @@ -559,7 +569,7 @@ def sizeref(self): The 'sizeref' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -598,8 +608,10 @@ def standoff(self): arrowhead marker at it. The 'standoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -638,97 +650,93 @@ def symbol(self): appending "-open-dot" or "dot-open" to a symbol name. The 'symbol' property is an enumeration that may be specified as: - - One of the following enumeration values: - [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', - 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', - 'square', 101, '101', 'square-open', 201, '201', - 'square-dot', 301, '301', 'square-open-dot', 2, '2', - 'diamond', 102, '102', 'diamond-open', 202, '202', - 'diamond-dot', 302, '302', 'diamond-open-dot', 3, '3', - 'cross', 103, '103', 'cross-open', 203, '203', - 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', 'x', - 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', - 'x-open-dot', 5, '5', 'triangle-up', 105, '105', - 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, - '305', 'triangle-up-open-dot', 6, '6', 'triangle-down', - 106, '106', 'triangle-down-open', 206, '206', - 'triangle-down-dot', 306, '306', 'triangle-down-open-dot', - 7, '7', 'triangle-left', 107, '107', 'triangle-left-open', - 207, '207', 'triangle-left-dot', 307, '307', - 'triangle-left-open-dot', 8, '8', 'triangle-right', 108, - '108', 'triangle-right-open', 208, '208', - 'triangle-right-dot', 308, '308', - 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, - '109', 'triangle-ne-open', 209, '209', 'triangle-ne-dot', - 309, '309', 'triangle-ne-open-dot', 10, '10', - 'triangle-se', 110, '110', 'triangle-se-open', 210, '210', - 'triangle-se-dot', 310, '310', 'triangle-se-open-dot', 11, - '11', 'triangle-sw', 111, '111', 'triangle-sw-open', 211, - '211', 'triangle-sw-dot', 311, '311', - 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, - '112', 'triangle-nw-open', 212, '212', 'triangle-nw-dot', - 312, '312', 'triangle-nw-open-dot', 13, '13', 'pentagon', - 113, '113', 'pentagon-open', 213, '213', 'pentagon-dot', - 313, '313', 'pentagon-open-dot', 14, '14', 'hexagon', 114, - '114', 'hexagon-open', 214, '214', 'hexagon-dot', 314, - '314', 'hexagon-open-dot', 15, '15', 'hexagon2', 115, - '115', 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, - '315', 'hexagon2-open-dot', 16, '16', 'octagon', 116, - '116', 'octagon-open', 216, '216', 'octagon-dot', 316, - '316', 'octagon-open-dot', 17, '17', 'star', 117, '117', - 'star-open', 217, '217', 'star-dot', 317, '317', - 'star-open-dot', 18, '18', 'hexagram', 118, '118', - 'hexagram-open', 218, '218', 'hexagram-dot', 318, '318', - 'hexagram-open-dot', 19, '19', 'star-triangle-up', 119, - '119', 'star-triangle-up-open', 219, '219', - 'star-triangle-up-dot', 319, '319', - 'star-triangle-up-open-dot', 20, '20', - 'star-triangle-down', 120, '120', - 'star-triangle-down-open', 220, '220', - 'star-triangle-down-dot', 320, '320', - 'star-triangle-down-open-dot', 21, '21', 'star-square', - 121, '121', 'star-square-open', 221, '221', - 'star-square-dot', 321, '321', 'star-square-open-dot', 22, - '22', 'star-diamond', 122, '122', 'star-diamond-open', - 222, '222', 'star-diamond-dot', 322, '322', - 'star-diamond-open-dot', 23, '23', 'diamond-tall', 123, - '123', 'diamond-tall-open', 223, '223', - 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', - 24, '24', 'diamond-wide', 124, '124', 'diamond-wide-open', - 224, '224', 'diamond-wide-dot', 324, '324', - 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, - '125', 'hourglass-open', 26, '26', 'bowtie', 126, '126', - 'bowtie-open', 27, '27', 'circle-cross', 127, '127', - 'circle-cross-open', 28, '28', 'circle-x', 128, '128', - 'circle-x-open', 29, '29', 'square-cross', 129, '129', - 'square-cross-open', 30, '30', 'square-x', 130, '130', - 'square-x-open', 31, '31', 'diamond-cross', 131, '131', - 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', - 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', - 'cross-thin-open', 34, '34', 'x-thin', 134, '134', - 'x-thin-open', 35, '35', 'asterisk', 135, '135', - 'asterisk-open', 36, '36', 'hash', 136, '136', - 'hash-open', 236, '236', 'hash-dot', 336, '336', - 'hash-open-dot', 37, '37', 'y-up', 137, '137', - 'y-up-open', 38, '38', 'y-down', 138, '138', - 'y-down-open', 39, '39', 'y-left', 139, '139', - 'y-left-open', 40, '40', 'y-right', 140, '140', - 'y-right-open', 41, '41', 'line-ew', 141, '141', - 'line-ew-open', 42, '42', 'line-ns', 142, '142', - 'line-ns-open', 43, '43', 'line-ne', 143, '143', - 'line-ne-open', 44, '44', 'line-nw', 144, '144', - 'line-nw-open', 45, '45', 'arrow-up', 145, '145', - 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', - 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', - 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', - 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', - 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, - '150', 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', - 151, '151', 'arrow-bar-left-open', 52, '52', - 'arrow-bar-right', 152, '152', 'arrow-bar-right-open', 53, - '53', 'arrow', 153, '153', 'arrow-open', 54, '54', - 'arrow-wide', 154, '154', 'arrow-wide-open'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', + 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', 'square', + 101, '101', 'square-open', 201, '201', 'square-dot', 301, + '301', 'square-open-dot', 2, '2', 'diamond', 102, '102', + 'diamond-open', 202, '202', 'diamond-dot', 302, '302', + 'diamond-open-dot', 3, '3', 'cross', 103, '103', 'cross-open', + 203, '203', 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', + 'x', 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', + 'x-open-dot', 5, '5', 'triangle-up', 105, '105', + 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, '305', + 'triangle-up-open-dot', 6, '6', 'triangle-down', 106, '106', + 'triangle-down-open', 206, '206', 'triangle-down-dot', 306, + '306', 'triangle-down-open-dot', 7, '7', 'triangle-left', 107, + '107', 'triangle-left-open', 207, '207', 'triangle-left-dot', + 307, '307', 'triangle-left-open-dot', 8, '8', + 'triangle-right', 108, '108', 'triangle-right-open', 208, + '208', 'triangle-right-dot', 308, '308', + 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, '109', + 'triangle-ne-open', 209, '209', 'triangle-ne-dot', 309, '309', + 'triangle-ne-open-dot', 10, '10', 'triangle-se', 110, '110', + 'triangle-se-open', 210, '210', 'triangle-se-dot', 310, '310', + 'triangle-se-open-dot', 11, '11', 'triangle-sw', 111, '111', + 'triangle-sw-open', 211, '211', 'triangle-sw-dot', 311, '311', + 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, '112', + 'triangle-nw-open', 212, '212', 'triangle-nw-dot', 312, '312', + 'triangle-nw-open-dot', 13, '13', 'pentagon', 113, '113', + 'pentagon-open', 213, '213', 'pentagon-dot', 313, '313', + 'pentagon-open-dot', 14, '14', 'hexagon', 114, '114', + 'hexagon-open', 214, '214', 'hexagon-dot', 314, '314', + 'hexagon-open-dot', 15, '15', 'hexagon2', 115, '115', + 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, '315', + 'hexagon2-open-dot', 16, '16', 'octagon', 116, '116', + 'octagon-open', 216, '216', 'octagon-dot', 316, '316', + 'octagon-open-dot', 17, '17', 'star', 117, '117', 'star-open', + 217, '217', 'star-dot', 317, '317', 'star-open-dot', 18, '18', + 'hexagram', 118, '118', 'hexagram-open', 218, '218', + 'hexagram-dot', 318, '318', 'hexagram-open-dot', 19, '19', + 'star-triangle-up', 119, '119', 'star-triangle-up-open', 219, + '219', 'star-triangle-up-dot', 319, '319', + 'star-triangle-up-open-dot', 20, '20', 'star-triangle-down', + 120, '120', 'star-triangle-down-open', 220, '220', + 'star-triangle-down-dot', 320, '320', + 'star-triangle-down-open-dot', 21, '21', 'star-square', 121, + '121', 'star-square-open', 221, '221', 'star-square-dot', 321, + '321', 'star-square-open-dot', 22, '22', 'star-diamond', 122, + '122', 'star-diamond-open', 222, '222', 'star-diamond-dot', + 322, '322', 'star-diamond-open-dot', 23, '23', 'diamond-tall', + 123, '123', 'diamond-tall-open', 223, '223', + 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', 24, + '24', 'diamond-wide', 124, '124', 'diamond-wide-open', 224, + '224', 'diamond-wide-dot', 324, '324', + 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, '125', + 'hourglass-open', 26, '26', 'bowtie', 126, '126', + 'bowtie-open', 27, '27', 'circle-cross', 127, '127', + 'circle-cross-open', 28, '28', 'circle-x', 128, '128', + 'circle-x-open', 29, '29', 'square-cross', 129, '129', + 'square-cross-open', 30, '30', 'square-x', 130, '130', + 'square-x-open', 31, '31', 'diamond-cross', 131, '131', + 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', + 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', + 'cross-thin-open', 34, '34', 'x-thin', 134, '134', + 'x-thin-open', 35, '35', 'asterisk', 135, '135', + 'asterisk-open', 36, '36', 'hash', 136, '136', 'hash-open', + 236, '236', 'hash-dot', 336, '336', 'hash-open-dot', 37, '37', + 'y-up', 137, '137', 'y-up-open', 38, '38', 'y-down', 138, + '138', 'y-down-open', 39, '39', 'y-left', 139, '139', + 'y-left-open', 40, '40', 'y-right', 140, '140', + 'y-right-open', 41, '41', 'line-ew', 141, '141', + 'line-ew-open', 42, '42', 'line-ns', 142, '142', + 'line-ns-open', 43, '43', 'line-ne', 143, '143', + 'line-ne-open', 44, '44', 'line-nw', 144, '144', + 'line-nw-open', 45, '45', 'arrow-up', 145, '145', + 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', + 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', + 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', + 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', + 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, '150', + 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', 151, '151', + 'arrow-bar-left-open', 52, '52', 'arrow-bar-right', 152, + '152', 'arrow-bar-right-open', 53, '53', 'arrow', 153, '153', + 'arrow-open', 54, '54', 'arrow-wide', 154, '154', + 'arrow-wide-open'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_stream.py b/plotly/graph_objects/scatterpolar/_stream.py index 4258e6ac08..2ae0c64548 100644 --- a/plotly/graph_objects/scatterpolar/_stream.py +++ b/plotly/graph_objects/scatterpolar/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_textfont.py b/plotly/graph_objects/scatterpolar/_textfont.py index 3a5cbc4810..dcb6343201 100644 --- a/plotly/graph_objects/scatterpolar/_textfont.py +++ b/plotly/graph_objects/scatterpolar/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolar/hoverlabel/_font.py b/plotly/graph_objects/scatterpolar/hoverlabel/_font.py index df1021c1fa..c29e7c4070 100644 --- a/plotly/graph_objects/scatterpolar/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterpolar/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py b/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py index 471f64421c..f089d7d6cb 100644 --- a/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/_colorbar.py b/plotly/graph_objects/scatterpolar/marker/_colorbar.py index 29c6f3c65c..bd58b2fa6f 100644 --- a/plotly/graph_objects/scatterpolar/marker/_colorbar.py +++ b/plotly/graph_objects/scatterpolar/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/_gradient.py b/plotly/graph_objects/scatterpolar/marker/_gradient.py index c00290a599..3d2c6376ed 100644 --- a/plotly/graph_objects/scatterpolar/marker/_gradient.py +++ b/plotly/graph_objects/scatterpolar/marker/_gradient.py @@ -58,9 +58,12 @@ def type(self): Sets the type of gradient used to fill the markers The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['radial', 'horizontal', 'vertical', 'none'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['radial', 'horizontal', 'vertical', 'none'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/_line.py b/plotly/graph_objects/scatterpolar/marker/_line.py index 4c7c6d45c9..80fef42b00 100644 --- a/plotly/graph_objects/scatterpolar/marker/_line.py +++ b/plotly/graph_objects/scatterpolar/marker/_line.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -290,8 +290,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py index b756b3107b..aa5e0c8495 100644 --- a/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/colorbar/_title.py b/plotly/graph_objects/scatterpolar/marker/colorbar/_title.py index 6d513eea1d..426299f152 100644 --- a/plotly/graph_objects/scatterpolar/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatterpolar/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py index 4d2a1f29bc..291f897d21 100644 --- a/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatterpolar/selected/_marker.py b/plotly/graph_objects/scatterpolar/selected/_marker.py index ecfed7fc56..41a9c314c9 100644 --- a/plotly/graph_objects/scatterpolar/selected/_marker.py +++ b/plotly/graph_objects/scatterpolar/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -56,7 +57,8 @@ def size(self): Sets the marker size of selected points. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatterpolar/unselected/_marker.py b/plotly/graph_objects/scatterpolar/unselected/_marker.py index 91b7c6847c..c0a840fada 100644 --- a/plotly/graph_objects/scatterpolar/unselected/_marker.py +++ b/plotly/graph_objects/scatterpolar/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -59,7 +60,8 @@ def size(self): selection exists. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_hoverlabel.py b/plotly/graph_objects/scatterpolargl/_hoverlabel.py index c825f3a0e0..25cfa18c88 100644 --- a/plotly/graph_objects/scatterpolargl/_hoverlabel.py +++ b/plotly/graph_objects/scatterpolargl/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_line.py b/plotly/graph_objects/scatterpolargl/_line.py index 9f4c16db25..5fd0e48ceb 100644 --- a/plotly/graph_objects/scatterpolargl/_line.py +++ b/plotly/graph_objects/scatterpolargl/_line.py @@ -38,9 +38,10 @@ def dash(self): Sets the style of the lines. The 'dash' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['dash', 'dashdot', 'dot', 'longdash', 'longdashdot', - 'solid'] + + - One of the following enumeration values: + + ['dash', 'dashdot', 'dot', 'longdash', 'longdashdot', 'solid'] Returns ------- @@ -58,7 +59,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_marker.py b/plotly/graph_objects/scatterpolargl/_marker.py index 7fd5a0fe1e..ed48d4bc82 100644 --- a/plotly/graph_objects/scatterpolargl/_marker.py +++ b/plotly/graph_objects/scatterpolargl/_marker.py @@ -130,7 +130,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -153,7 +153,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -175,7 +175,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -354,8 +354,10 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -432,8 +434,10 @@ def size(self): Sets the marker size (in px). The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -453,7 +457,8 @@ def sizemin(self): points. The 'sizemin' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +478,10 @@ def sizemode(self): to pixels. The 'sizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['diameter', 'area'] + + - One of the following enumeration values: + + ['diameter', 'area'] Returns ------- @@ -495,7 +502,7 @@ def sizeref(self): The 'sizeref' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -534,97 +541,93 @@ def symbol(self): appending "-open-dot" or "dot-open" to a symbol name. The 'symbol' property is an enumeration that may be specified as: - - One of the following enumeration values: - [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', - 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', - 'square', 101, '101', 'square-open', 201, '201', - 'square-dot', 301, '301', 'square-open-dot', 2, '2', - 'diamond', 102, '102', 'diamond-open', 202, '202', - 'diamond-dot', 302, '302', 'diamond-open-dot', 3, '3', - 'cross', 103, '103', 'cross-open', 203, '203', - 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', 'x', - 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', - 'x-open-dot', 5, '5', 'triangle-up', 105, '105', - 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, - '305', 'triangle-up-open-dot', 6, '6', 'triangle-down', - 106, '106', 'triangle-down-open', 206, '206', - 'triangle-down-dot', 306, '306', 'triangle-down-open-dot', - 7, '7', 'triangle-left', 107, '107', 'triangle-left-open', - 207, '207', 'triangle-left-dot', 307, '307', - 'triangle-left-open-dot', 8, '8', 'triangle-right', 108, - '108', 'triangle-right-open', 208, '208', - 'triangle-right-dot', 308, '308', - 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, - '109', 'triangle-ne-open', 209, '209', 'triangle-ne-dot', - 309, '309', 'triangle-ne-open-dot', 10, '10', - 'triangle-se', 110, '110', 'triangle-se-open', 210, '210', - 'triangle-se-dot', 310, '310', 'triangle-se-open-dot', 11, - '11', 'triangle-sw', 111, '111', 'triangle-sw-open', 211, - '211', 'triangle-sw-dot', 311, '311', - 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, - '112', 'triangle-nw-open', 212, '212', 'triangle-nw-dot', - 312, '312', 'triangle-nw-open-dot', 13, '13', 'pentagon', - 113, '113', 'pentagon-open', 213, '213', 'pentagon-dot', - 313, '313', 'pentagon-open-dot', 14, '14', 'hexagon', 114, - '114', 'hexagon-open', 214, '214', 'hexagon-dot', 314, - '314', 'hexagon-open-dot', 15, '15', 'hexagon2', 115, - '115', 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, - '315', 'hexagon2-open-dot', 16, '16', 'octagon', 116, - '116', 'octagon-open', 216, '216', 'octagon-dot', 316, - '316', 'octagon-open-dot', 17, '17', 'star', 117, '117', - 'star-open', 217, '217', 'star-dot', 317, '317', - 'star-open-dot', 18, '18', 'hexagram', 118, '118', - 'hexagram-open', 218, '218', 'hexagram-dot', 318, '318', - 'hexagram-open-dot', 19, '19', 'star-triangle-up', 119, - '119', 'star-triangle-up-open', 219, '219', - 'star-triangle-up-dot', 319, '319', - 'star-triangle-up-open-dot', 20, '20', - 'star-triangle-down', 120, '120', - 'star-triangle-down-open', 220, '220', - 'star-triangle-down-dot', 320, '320', - 'star-triangle-down-open-dot', 21, '21', 'star-square', - 121, '121', 'star-square-open', 221, '221', - 'star-square-dot', 321, '321', 'star-square-open-dot', 22, - '22', 'star-diamond', 122, '122', 'star-diamond-open', - 222, '222', 'star-diamond-dot', 322, '322', - 'star-diamond-open-dot', 23, '23', 'diamond-tall', 123, - '123', 'diamond-tall-open', 223, '223', - 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', - 24, '24', 'diamond-wide', 124, '124', 'diamond-wide-open', - 224, '224', 'diamond-wide-dot', 324, '324', - 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, - '125', 'hourglass-open', 26, '26', 'bowtie', 126, '126', - 'bowtie-open', 27, '27', 'circle-cross', 127, '127', - 'circle-cross-open', 28, '28', 'circle-x', 128, '128', - 'circle-x-open', 29, '29', 'square-cross', 129, '129', - 'square-cross-open', 30, '30', 'square-x', 130, '130', - 'square-x-open', 31, '31', 'diamond-cross', 131, '131', - 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', - 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', - 'cross-thin-open', 34, '34', 'x-thin', 134, '134', - 'x-thin-open', 35, '35', 'asterisk', 135, '135', - 'asterisk-open', 36, '36', 'hash', 136, '136', - 'hash-open', 236, '236', 'hash-dot', 336, '336', - 'hash-open-dot', 37, '37', 'y-up', 137, '137', - 'y-up-open', 38, '38', 'y-down', 138, '138', - 'y-down-open', 39, '39', 'y-left', 139, '139', - 'y-left-open', 40, '40', 'y-right', 140, '140', - 'y-right-open', 41, '41', 'line-ew', 141, '141', - 'line-ew-open', 42, '42', 'line-ns', 142, '142', - 'line-ns-open', 43, '43', 'line-ne', 143, '143', - 'line-ne-open', 44, '44', 'line-nw', 144, '144', - 'line-nw-open', 45, '45', 'arrow-up', 145, '145', - 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', - 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', - 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', - 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', - 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, - '150', 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', - 151, '151', 'arrow-bar-left-open', 52, '52', - 'arrow-bar-right', 152, '152', 'arrow-bar-right-open', 53, - '53', 'arrow', 153, '153', 'arrow-open', 54, '54', - 'arrow-wide', 154, '154', 'arrow-wide-open'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', + 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', 'square', + 101, '101', 'square-open', 201, '201', 'square-dot', 301, + '301', 'square-open-dot', 2, '2', 'diamond', 102, '102', + 'diamond-open', 202, '202', 'diamond-dot', 302, '302', + 'diamond-open-dot', 3, '3', 'cross', 103, '103', 'cross-open', + 203, '203', 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', + 'x', 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', + 'x-open-dot', 5, '5', 'triangle-up', 105, '105', + 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, '305', + 'triangle-up-open-dot', 6, '6', 'triangle-down', 106, '106', + 'triangle-down-open', 206, '206', 'triangle-down-dot', 306, + '306', 'triangle-down-open-dot', 7, '7', 'triangle-left', 107, + '107', 'triangle-left-open', 207, '207', 'triangle-left-dot', + 307, '307', 'triangle-left-open-dot', 8, '8', + 'triangle-right', 108, '108', 'triangle-right-open', 208, + '208', 'triangle-right-dot', 308, '308', + 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, '109', + 'triangle-ne-open', 209, '209', 'triangle-ne-dot', 309, '309', + 'triangle-ne-open-dot', 10, '10', 'triangle-se', 110, '110', + 'triangle-se-open', 210, '210', 'triangle-se-dot', 310, '310', + 'triangle-se-open-dot', 11, '11', 'triangle-sw', 111, '111', + 'triangle-sw-open', 211, '211', 'triangle-sw-dot', 311, '311', + 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, '112', + 'triangle-nw-open', 212, '212', 'triangle-nw-dot', 312, '312', + 'triangle-nw-open-dot', 13, '13', 'pentagon', 113, '113', + 'pentagon-open', 213, '213', 'pentagon-dot', 313, '313', + 'pentagon-open-dot', 14, '14', 'hexagon', 114, '114', + 'hexagon-open', 214, '214', 'hexagon-dot', 314, '314', + 'hexagon-open-dot', 15, '15', 'hexagon2', 115, '115', + 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, '315', + 'hexagon2-open-dot', 16, '16', 'octagon', 116, '116', + 'octagon-open', 216, '216', 'octagon-dot', 316, '316', + 'octagon-open-dot', 17, '17', 'star', 117, '117', 'star-open', + 217, '217', 'star-dot', 317, '317', 'star-open-dot', 18, '18', + 'hexagram', 118, '118', 'hexagram-open', 218, '218', + 'hexagram-dot', 318, '318', 'hexagram-open-dot', 19, '19', + 'star-triangle-up', 119, '119', 'star-triangle-up-open', 219, + '219', 'star-triangle-up-dot', 319, '319', + 'star-triangle-up-open-dot', 20, '20', 'star-triangle-down', + 120, '120', 'star-triangle-down-open', 220, '220', + 'star-triangle-down-dot', 320, '320', + 'star-triangle-down-open-dot', 21, '21', 'star-square', 121, + '121', 'star-square-open', 221, '221', 'star-square-dot', 321, + '321', 'star-square-open-dot', 22, '22', 'star-diamond', 122, + '122', 'star-diamond-open', 222, '222', 'star-diamond-dot', + 322, '322', 'star-diamond-open-dot', 23, '23', 'diamond-tall', + 123, '123', 'diamond-tall-open', 223, '223', + 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', 24, + '24', 'diamond-wide', 124, '124', 'diamond-wide-open', 224, + '224', 'diamond-wide-dot', 324, '324', + 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, '125', + 'hourglass-open', 26, '26', 'bowtie', 126, '126', + 'bowtie-open', 27, '27', 'circle-cross', 127, '127', + 'circle-cross-open', 28, '28', 'circle-x', 128, '128', + 'circle-x-open', 29, '29', 'square-cross', 129, '129', + 'square-cross-open', 30, '30', 'square-x', 130, '130', + 'square-x-open', 31, '31', 'diamond-cross', 131, '131', + 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', + 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', + 'cross-thin-open', 34, '34', 'x-thin', 134, '134', + 'x-thin-open', 35, '35', 'asterisk', 135, '135', + 'asterisk-open', 36, '36', 'hash', 136, '136', 'hash-open', + 236, '236', 'hash-dot', 336, '336', 'hash-open-dot', 37, '37', + 'y-up', 137, '137', 'y-up-open', 38, '38', 'y-down', 138, + '138', 'y-down-open', 39, '39', 'y-left', 139, '139', + 'y-left-open', 40, '40', 'y-right', 140, '140', + 'y-right-open', 41, '41', 'line-ew', 141, '141', + 'line-ew-open', 42, '42', 'line-ns', 142, '142', + 'line-ns-open', 43, '43', 'line-ne', 143, '143', + 'line-ne-open', 44, '44', 'line-nw', 144, '144', + 'line-nw-open', 45, '45', 'arrow-up', 145, '145', + 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', + 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', + 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', + 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', + 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, '150', + 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', 151, '151', + 'arrow-bar-left-open', 52, '52', 'arrow-bar-right', 152, + '152', 'arrow-bar-right-open', 53, '53', 'arrow', 153, '153', + 'arrow-open', 54, '54', 'arrow-wide', 154, '154', + 'arrow-wide-open'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_stream.py b/plotly/graph_objects/scatterpolargl/_stream.py index 113df8381c..9b2168cb56 100644 --- a/plotly/graph_objects/scatterpolargl/_stream.py +++ b/plotly/graph_objects/scatterpolargl/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_textfont.py b/plotly/graph_objects/scatterpolargl/_textfont.py index 4b6b058844..edd6727e06 100644 --- a/plotly/graph_objects/scatterpolargl/_textfont.py +++ b/plotly/graph_objects/scatterpolargl/_textfont.py @@ -107,8 +107,10 @@ def familysrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -145,9 +147,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -183,9 +188,12 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -221,9 +229,12 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'bold'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'bold'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py b/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py index e14e92cfc2..ad0a65c856 100644 --- a/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py b/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py index 356f586c37..236ac186c1 100644 --- a/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/_colorbar.py b/plotly/graph_objects/scatterpolargl/marker/_colorbar.py index 5196a5d2f4..413503accb 100644 --- a/plotly/graph_objects/scatterpolargl/marker/_colorbar.py +++ b/plotly/graph_objects/scatterpolargl/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/_line.py b/plotly/graph_objects/scatterpolargl/marker/_line.py index 7289f48561..b4ad47132b 100644 --- a/plotly/graph_objects/scatterpolargl/marker/_line.py +++ b/plotly/graph_objects/scatterpolargl/marker/_line.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -290,8 +290,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py index 00b279d2d6..9b329f3e07 100644 --- a/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/colorbar/_title.py b/plotly/graph_objects/scatterpolargl/marker/colorbar/_title.py index f8c94443b6..550fe5d446 100644 --- a/plotly/graph_objects/scatterpolargl/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatterpolargl/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py index 5d5d7bad1e..0a55af0b2d 100644 --- a/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/selected/_marker.py b/plotly/graph_objects/scatterpolargl/selected/_marker.py index 55f0510abb..8a73e7fd34 100644 --- a/plotly/graph_objects/scatterpolargl/selected/_marker.py +++ b/plotly/graph_objects/scatterpolargl/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -56,7 +57,8 @@ def size(self): Sets the marker size of selected points. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/unselected/_marker.py b/plotly/graph_objects/scatterpolargl/unselected/_marker.py index 5c679c1f45..747df61b82 100644 --- a/plotly/graph_objects/scatterpolargl/unselected/_marker.py +++ b/plotly/graph_objects/scatterpolargl/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -59,7 +60,8 @@ def size(self): selection exists. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattersmith/_hoverlabel.py b/plotly/graph_objects/scattersmith/_hoverlabel.py index 0ea442674f..d44b0d84dc 100644 --- a/plotly/graph_objects/scattersmith/_hoverlabel.py +++ b/plotly/graph_objects/scattersmith/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattersmith/_line.py b/plotly/graph_objects/scattersmith/_line.py index 31a8ab51a3..f3c8f2f533 100644 --- a/plotly/graph_objects/scattersmith/_line.py +++ b/plotly/graph_objects/scattersmith/_line.py @@ -27,8 +27,10 @@ def backoff(self): markers if `marker.angleref` is set to "previous". The 'backoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -112,8 +114,10 @@ def shape(self): correspond to step-wise line shapes. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['linear', 'spline'] + + - One of the following enumeration values: + + ['linear', 'spline'] Returns ------- @@ -133,7 +137,8 @@ def smoothing(self): to a "linear" shape). The 'smoothing' property is a number and may be specified as: - - An int or float in the interval [0, 1.3] + + - An int or float in the interval [0, 1.3] Returns ------- @@ -151,7 +156,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattersmith/_marker.py b/plotly/graph_objects/scattersmith/_marker.py index 8e64a2d79d..2c6d07372b 100644 --- a/plotly/graph_objects/scattersmith/_marker.py +++ b/plotly/graph_objects/scattersmith/_marker.py @@ -68,8 +68,10 @@ def angleref(self): "up", angle 0 points toward the top of the screen. The 'angleref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['previous', 'up'] + + - One of the following enumeration values: + + ['previous', 'up'] Returns ------- @@ -156,7 +158,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -179,7 +181,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -201,7 +203,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -400,7 +402,8 @@ def maxdisplayed(self): corresponds to no limit. The 'maxdisplayed' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -418,8 +421,10 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -496,8 +501,10 @@ def size(self): Sets the marker size (in px). The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -517,7 +524,8 @@ def sizemin(self): points. The 'sizemin' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -537,8 +545,10 @@ def sizemode(self): to pixels. The 'sizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['diameter', 'area'] + + - One of the following enumeration values: + + ['diameter', 'area'] Returns ------- @@ -559,7 +569,7 @@ def sizeref(self): The 'sizeref' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -598,8 +608,10 @@ def standoff(self): arrowhead marker at it. The 'standoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -638,97 +650,93 @@ def symbol(self): appending "-open-dot" or "dot-open" to a symbol name. The 'symbol' property is an enumeration that may be specified as: - - One of the following enumeration values: - [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', - 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', - 'square', 101, '101', 'square-open', 201, '201', - 'square-dot', 301, '301', 'square-open-dot', 2, '2', - 'diamond', 102, '102', 'diamond-open', 202, '202', - 'diamond-dot', 302, '302', 'diamond-open-dot', 3, '3', - 'cross', 103, '103', 'cross-open', 203, '203', - 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', 'x', - 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', - 'x-open-dot', 5, '5', 'triangle-up', 105, '105', - 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, - '305', 'triangle-up-open-dot', 6, '6', 'triangle-down', - 106, '106', 'triangle-down-open', 206, '206', - 'triangle-down-dot', 306, '306', 'triangle-down-open-dot', - 7, '7', 'triangle-left', 107, '107', 'triangle-left-open', - 207, '207', 'triangle-left-dot', 307, '307', - 'triangle-left-open-dot', 8, '8', 'triangle-right', 108, - '108', 'triangle-right-open', 208, '208', - 'triangle-right-dot', 308, '308', - 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, - '109', 'triangle-ne-open', 209, '209', 'triangle-ne-dot', - 309, '309', 'triangle-ne-open-dot', 10, '10', - 'triangle-se', 110, '110', 'triangle-se-open', 210, '210', - 'triangle-se-dot', 310, '310', 'triangle-se-open-dot', 11, - '11', 'triangle-sw', 111, '111', 'triangle-sw-open', 211, - '211', 'triangle-sw-dot', 311, '311', - 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, - '112', 'triangle-nw-open', 212, '212', 'triangle-nw-dot', - 312, '312', 'triangle-nw-open-dot', 13, '13', 'pentagon', - 113, '113', 'pentagon-open', 213, '213', 'pentagon-dot', - 313, '313', 'pentagon-open-dot', 14, '14', 'hexagon', 114, - '114', 'hexagon-open', 214, '214', 'hexagon-dot', 314, - '314', 'hexagon-open-dot', 15, '15', 'hexagon2', 115, - '115', 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, - '315', 'hexagon2-open-dot', 16, '16', 'octagon', 116, - '116', 'octagon-open', 216, '216', 'octagon-dot', 316, - '316', 'octagon-open-dot', 17, '17', 'star', 117, '117', - 'star-open', 217, '217', 'star-dot', 317, '317', - 'star-open-dot', 18, '18', 'hexagram', 118, '118', - 'hexagram-open', 218, '218', 'hexagram-dot', 318, '318', - 'hexagram-open-dot', 19, '19', 'star-triangle-up', 119, - '119', 'star-triangle-up-open', 219, '219', - 'star-triangle-up-dot', 319, '319', - 'star-triangle-up-open-dot', 20, '20', - 'star-triangle-down', 120, '120', - 'star-triangle-down-open', 220, '220', - 'star-triangle-down-dot', 320, '320', - 'star-triangle-down-open-dot', 21, '21', 'star-square', - 121, '121', 'star-square-open', 221, '221', - 'star-square-dot', 321, '321', 'star-square-open-dot', 22, - '22', 'star-diamond', 122, '122', 'star-diamond-open', - 222, '222', 'star-diamond-dot', 322, '322', - 'star-diamond-open-dot', 23, '23', 'diamond-tall', 123, - '123', 'diamond-tall-open', 223, '223', - 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', - 24, '24', 'diamond-wide', 124, '124', 'diamond-wide-open', - 224, '224', 'diamond-wide-dot', 324, '324', - 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, - '125', 'hourglass-open', 26, '26', 'bowtie', 126, '126', - 'bowtie-open', 27, '27', 'circle-cross', 127, '127', - 'circle-cross-open', 28, '28', 'circle-x', 128, '128', - 'circle-x-open', 29, '29', 'square-cross', 129, '129', - 'square-cross-open', 30, '30', 'square-x', 130, '130', - 'square-x-open', 31, '31', 'diamond-cross', 131, '131', - 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', - 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', - 'cross-thin-open', 34, '34', 'x-thin', 134, '134', - 'x-thin-open', 35, '35', 'asterisk', 135, '135', - 'asterisk-open', 36, '36', 'hash', 136, '136', - 'hash-open', 236, '236', 'hash-dot', 336, '336', - 'hash-open-dot', 37, '37', 'y-up', 137, '137', - 'y-up-open', 38, '38', 'y-down', 138, '138', - 'y-down-open', 39, '39', 'y-left', 139, '139', - 'y-left-open', 40, '40', 'y-right', 140, '140', - 'y-right-open', 41, '41', 'line-ew', 141, '141', - 'line-ew-open', 42, '42', 'line-ns', 142, '142', - 'line-ns-open', 43, '43', 'line-ne', 143, '143', - 'line-ne-open', 44, '44', 'line-nw', 144, '144', - 'line-nw-open', 45, '45', 'arrow-up', 145, '145', - 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', - 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', - 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', - 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', - 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, - '150', 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', - 151, '151', 'arrow-bar-left-open', 52, '52', - 'arrow-bar-right', 152, '152', 'arrow-bar-right-open', 53, - '53', 'arrow', 153, '153', 'arrow-open', 54, '54', - 'arrow-wide', 154, '154', 'arrow-wide-open'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', + 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', 'square', + 101, '101', 'square-open', 201, '201', 'square-dot', 301, + '301', 'square-open-dot', 2, '2', 'diamond', 102, '102', + 'diamond-open', 202, '202', 'diamond-dot', 302, '302', + 'diamond-open-dot', 3, '3', 'cross', 103, '103', 'cross-open', + 203, '203', 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', + 'x', 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', + 'x-open-dot', 5, '5', 'triangle-up', 105, '105', + 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, '305', + 'triangle-up-open-dot', 6, '6', 'triangle-down', 106, '106', + 'triangle-down-open', 206, '206', 'triangle-down-dot', 306, + '306', 'triangle-down-open-dot', 7, '7', 'triangle-left', 107, + '107', 'triangle-left-open', 207, '207', 'triangle-left-dot', + 307, '307', 'triangle-left-open-dot', 8, '8', + 'triangle-right', 108, '108', 'triangle-right-open', 208, + '208', 'triangle-right-dot', 308, '308', + 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, '109', + 'triangle-ne-open', 209, '209', 'triangle-ne-dot', 309, '309', + 'triangle-ne-open-dot', 10, '10', 'triangle-se', 110, '110', + 'triangle-se-open', 210, '210', 'triangle-se-dot', 310, '310', + 'triangle-se-open-dot', 11, '11', 'triangle-sw', 111, '111', + 'triangle-sw-open', 211, '211', 'triangle-sw-dot', 311, '311', + 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, '112', + 'triangle-nw-open', 212, '212', 'triangle-nw-dot', 312, '312', + 'triangle-nw-open-dot', 13, '13', 'pentagon', 113, '113', + 'pentagon-open', 213, '213', 'pentagon-dot', 313, '313', + 'pentagon-open-dot', 14, '14', 'hexagon', 114, '114', + 'hexagon-open', 214, '214', 'hexagon-dot', 314, '314', + 'hexagon-open-dot', 15, '15', 'hexagon2', 115, '115', + 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, '315', + 'hexagon2-open-dot', 16, '16', 'octagon', 116, '116', + 'octagon-open', 216, '216', 'octagon-dot', 316, '316', + 'octagon-open-dot', 17, '17', 'star', 117, '117', 'star-open', + 217, '217', 'star-dot', 317, '317', 'star-open-dot', 18, '18', + 'hexagram', 118, '118', 'hexagram-open', 218, '218', + 'hexagram-dot', 318, '318', 'hexagram-open-dot', 19, '19', + 'star-triangle-up', 119, '119', 'star-triangle-up-open', 219, + '219', 'star-triangle-up-dot', 319, '319', + 'star-triangle-up-open-dot', 20, '20', 'star-triangle-down', + 120, '120', 'star-triangle-down-open', 220, '220', + 'star-triangle-down-dot', 320, '320', + 'star-triangle-down-open-dot', 21, '21', 'star-square', 121, + '121', 'star-square-open', 221, '221', 'star-square-dot', 321, + '321', 'star-square-open-dot', 22, '22', 'star-diamond', 122, + '122', 'star-diamond-open', 222, '222', 'star-diamond-dot', + 322, '322', 'star-diamond-open-dot', 23, '23', 'diamond-tall', + 123, '123', 'diamond-tall-open', 223, '223', + 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', 24, + '24', 'diamond-wide', 124, '124', 'diamond-wide-open', 224, + '224', 'diamond-wide-dot', 324, '324', + 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, '125', + 'hourglass-open', 26, '26', 'bowtie', 126, '126', + 'bowtie-open', 27, '27', 'circle-cross', 127, '127', + 'circle-cross-open', 28, '28', 'circle-x', 128, '128', + 'circle-x-open', 29, '29', 'square-cross', 129, '129', + 'square-cross-open', 30, '30', 'square-x', 130, '130', + 'square-x-open', 31, '31', 'diamond-cross', 131, '131', + 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', + 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', + 'cross-thin-open', 34, '34', 'x-thin', 134, '134', + 'x-thin-open', 35, '35', 'asterisk', 135, '135', + 'asterisk-open', 36, '36', 'hash', 136, '136', 'hash-open', + 236, '236', 'hash-dot', 336, '336', 'hash-open-dot', 37, '37', + 'y-up', 137, '137', 'y-up-open', 38, '38', 'y-down', 138, + '138', 'y-down-open', 39, '39', 'y-left', 139, '139', + 'y-left-open', 40, '40', 'y-right', 140, '140', + 'y-right-open', 41, '41', 'line-ew', 141, '141', + 'line-ew-open', 42, '42', 'line-ns', 142, '142', + 'line-ns-open', 43, '43', 'line-ne', 143, '143', + 'line-ne-open', 44, '44', 'line-nw', 144, '144', + 'line-nw-open', 45, '45', 'arrow-up', 145, '145', + 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', + 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', + 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', + 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', + 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, '150', + 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', 151, '151', + 'arrow-bar-left-open', 52, '52', 'arrow-bar-right', 152, + '152', 'arrow-bar-right-open', 53, '53', 'arrow', 153, '153', + 'arrow-open', 54, '54', 'arrow-wide', 154, '154', + 'arrow-wide-open'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattersmith/_stream.py b/plotly/graph_objects/scattersmith/_stream.py index 3a55e2bdfc..f7c54635e9 100644 --- a/plotly/graph_objects/scattersmith/_stream.py +++ b/plotly/graph_objects/scattersmith/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/scattersmith/_textfont.py b/plotly/graph_objects/scattersmith/_textfont.py index 62ab09e468..47dad8d042 100644 --- a/plotly/graph_objects/scattersmith/_textfont.py +++ b/plotly/graph_objects/scattersmith/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattersmith/hoverlabel/_font.py b/plotly/graph_objects/scattersmith/hoverlabel/_font.py index d7f827dabd..fe6ecae932 100644 --- a/plotly/graph_objects/scattersmith/hoverlabel/_font.py +++ b/plotly/graph_objects/scattersmith/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py b/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py index b054fdf4b9..e8c58ebedd 100644 --- a/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/_colorbar.py b/plotly/graph_objects/scattersmith/marker/_colorbar.py index 0e7e75f4c7..cc56e11cdc 100644 --- a/plotly/graph_objects/scattersmith/marker/_colorbar.py +++ b/plotly/graph_objects/scattersmith/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/_gradient.py b/plotly/graph_objects/scattersmith/marker/_gradient.py index 595f2f964d..c796edb82e 100644 --- a/plotly/graph_objects/scattersmith/marker/_gradient.py +++ b/plotly/graph_objects/scattersmith/marker/_gradient.py @@ -58,9 +58,12 @@ def type(self): Sets the type of gradient used to fill the markers The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['radial', 'horizontal', 'vertical', 'none'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['radial', 'horizontal', 'vertical', 'none'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/_line.py b/plotly/graph_objects/scattersmith/marker/_line.py index 36ced64ec3..9f406709fb 100644 --- a/plotly/graph_objects/scattersmith/marker/_line.py +++ b/plotly/graph_objects/scattersmith/marker/_line.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -290,8 +290,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py index 437295a6da..36562830de 100644 --- a/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/colorbar/_title.py b/plotly/graph_objects/scattersmith/marker/colorbar/_title.py index d5dd07fbf3..5ad0134f58 100644 --- a/plotly/graph_objects/scattersmith/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattersmith/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py b/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py index 3a47edd4cb..5caa8641ba 100644 --- a/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scattersmith/selected/_marker.py b/plotly/graph_objects/scattersmith/selected/_marker.py index 61a4852986..a00976f7f1 100644 --- a/plotly/graph_objects/scattersmith/selected/_marker.py +++ b/plotly/graph_objects/scattersmith/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -56,7 +57,8 @@ def size(self): Sets the marker size of selected points. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scattersmith/unselected/_marker.py b/plotly/graph_objects/scattersmith/unselected/_marker.py index 61c2b38504..565d4d84aa 100644 --- a/plotly/graph_objects/scattersmith/unselected/_marker.py +++ b/plotly/graph_objects/scattersmith/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -59,7 +60,8 @@ def size(self): selection exists. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatterternary/_hoverlabel.py b/plotly/graph_objects/scatterternary/_hoverlabel.py index fbf594d1c4..49b737467b 100644 --- a/plotly/graph_objects/scatterternary/_hoverlabel.py +++ b/plotly/graph_objects/scatterternary/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterternary/_line.py b/plotly/graph_objects/scatterternary/_line.py index 8541f40dad..2e7a1f3921 100644 --- a/plotly/graph_objects/scatterternary/_line.py +++ b/plotly/graph_objects/scatterternary/_line.py @@ -27,8 +27,10 @@ def backoff(self): markers if `marker.angleref` is set to "previous". The 'backoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -112,8 +114,10 @@ def shape(self): correspond to step-wise line shapes. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['linear', 'spline'] + + - One of the following enumeration values: + + ['linear', 'spline'] Returns ------- @@ -133,7 +137,8 @@ def smoothing(self): to a "linear" shape). The 'smoothing' property is a number and may be specified as: - - An int or float in the interval [0, 1.3] + + - An int or float in the interval [0, 1.3] Returns ------- @@ -151,7 +156,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatterternary/_marker.py b/plotly/graph_objects/scatterternary/_marker.py index 557db7df5b..fe0c279e61 100644 --- a/plotly/graph_objects/scatterternary/_marker.py +++ b/plotly/graph_objects/scatterternary/_marker.py @@ -68,8 +68,10 @@ def angleref(self): "up", angle 0 points toward the top of the screen. The 'angleref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['previous', 'up'] + + - One of the following enumeration values: + + ['previous', 'up'] Returns ------- @@ -156,7 +158,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -179,7 +181,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -201,7 +203,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -400,7 +402,8 @@ def maxdisplayed(self): corresponds to no limit. The 'maxdisplayed' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -418,8 +421,10 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -496,8 +501,10 @@ def size(self): Sets the marker size (in px). The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -517,7 +524,8 @@ def sizemin(self): points. The 'sizemin' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -537,8 +545,10 @@ def sizemode(self): to pixels. The 'sizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['diameter', 'area'] + + - One of the following enumeration values: + + ['diameter', 'area'] Returns ------- @@ -559,7 +569,7 @@ def sizeref(self): The 'sizeref' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -598,8 +608,10 @@ def standoff(self): arrowhead marker at it. The 'standoff' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -638,97 +650,93 @@ def symbol(self): appending "-open-dot" or "dot-open" to a symbol name. The 'symbol' property is an enumeration that may be specified as: - - One of the following enumeration values: - [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', - 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', - 'square', 101, '101', 'square-open', 201, '201', - 'square-dot', 301, '301', 'square-open-dot', 2, '2', - 'diamond', 102, '102', 'diamond-open', 202, '202', - 'diamond-dot', 302, '302', 'diamond-open-dot', 3, '3', - 'cross', 103, '103', 'cross-open', 203, '203', - 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', 'x', - 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', - 'x-open-dot', 5, '5', 'triangle-up', 105, '105', - 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, - '305', 'triangle-up-open-dot', 6, '6', 'triangle-down', - 106, '106', 'triangle-down-open', 206, '206', - 'triangle-down-dot', 306, '306', 'triangle-down-open-dot', - 7, '7', 'triangle-left', 107, '107', 'triangle-left-open', - 207, '207', 'triangle-left-dot', 307, '307', - 'triangle-left-open-dot', 8, '8', 'triangle-right', 108, - '108', 'triangle-right-open', 208, '208', - 'triangle-right-dot', 308, '308', - 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, - '109', 'triangle-ne-open', 209, '209', 'triangle-ne-dot', - 309, '309', 'triangle-ne-open-dot', 10, '10', - 'triangle-se', 110, '110', 'triangle-se-open', 210, '210', - 'triangle-se-dot', 310, '310', 'triangle-se-open-dot', 11, - '11', 'triangle-sw', 111, '111', 'triangle-sw-open', 211, - '211', 'triangle-sw-dot', 311, '311', - 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, - '112', 'triangle-nw-open', 212, '212', 'triangle-nw-dot', - 312, '312', 'triangle-nw-open-dot', 13, '13', 'pentagon', - 113, '113', 'pentagon-open', 213, '213', 'pentagon-dot', - 313, '313', 'pentagon-open-dot', 14, '14', 'hexagon', 114, - '114', 'hexagon-open', 214, '214', 'hexagon-dot', 314, - '314', 'hexagon-open-dot', 15, '15', 'hexagon2', 115, - '115', 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, - '315', 'hexagon2-open-dot', 16, '16', 'octagon', 116, - '116', 'octagon-open', 216, '216', 'octagon-dot', 316, - '316', 'octagon-open-dot', 17, '17', 'star', 117, '117', - 'star-open', 217, '217', 'star-dot', 317, '317', - 'star-open-dot', 18, '18', 'hexagram', 118, '118', - 'hexagram-open', 218, '218', 'hexagram-dot', 318, '318', - 'hexagram-open-dot', 19, '19', 'star-triangle-up', 119, - '119', 'star-triangle-up-open', 219, '219', - 'star-triangle-up-dot', 319, '319', - 'star-triangle-up-open-dot', 20, '20', - 'star-triangle-down', 120, '120', - 'star-triangle-down-open', 220, '220', - 'star-triangle-down-dot', 320, '320', - 'star-triangle-down-open-dot', 21, '21', 'star-square', - 121, '121', 'star-square-open', 221, '221', - 'star-square-dot', 321, '321', 'star-square-open-dot', 22, - '22', 'star-diamond', 122, '122', 'star-diamond-open', - 222, '222', 'star-diamond-dot', 322, '322', - 'star-diamond-open-dot', 23, '23', 'diamond-tall', 123, - '123', 'diamond-tall-open', 223, '223', - 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', - 24, '24', 'diamond-wide', 124, '124', 'diamond-wide-open', - 224, '224', 'diamond-wide-dot', 324, '324', - 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, - '125', 'hourglass-open', 26, '26', 'bowtie', 126, '126', - 'bowtie-open', 27, '27', 'circle-cross', 127, '127', - 'circle-cross-open', 28, '28', 'circle-x', 128, '128', - 'circle-x-open', 29, '29', 'square-cross', 129, '129', - 'square-cross-open', 30, '30', 'square-x', 130, '130', - 'square-x-open', 31, '31', 'diamond-cross', 131, '131', - 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', - 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', - 'cross-thin-open', 34, '34', 'x-thin', 134, '134', - 'x-thin-open', 35, '35', 'asterisk', 135, '135', - 'asterisk-open', 36, '36', 'hash', 136, '136', - 'hash-open', 236, '236', 'hash-dot', 336, '336', - 'hash-open-dot', 37, '37', 'y-up', 137, '137', - 'y-up-open', 38, '38', 'y-down', 138, '138', - 'y-down-open', 39, '39', 'y-left', 139, '139', - 'y-left-open', 40, '40', 'y-right', 140, '140', - 'y-right-open', 41, '41', 'line-ew', 141, '141', - 'line-ew-open', 42, '42', 'line-ns', 142, '142', - 'line-ns-open', 43, '43', 'line-ne', 143, '143', - 'line-ne-open', 44, '44', 'line-nw', 144, '144', - 'line-nw-open', 45, '45', 'arrow-up', 145, '145', - 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', - 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', - 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', - 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', - 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, - '150', 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', - 151, '151', 'arrow-bar-left-open', 52, '52', - 'arrow-bar-right', 152, '152', 'arrow-bar-right-open', 53, - '53', 'arrow', 153, '153', 'arrow-open', 54, '54', - 'arrow-wide', 154, '154', 'arrow-wide-open'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', + 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', 'square', + 101, '101', 'square-open', 201, '201', 'square-dot', 301, + '301', 'square-open-dot', 2, '2', 'diamond', 102, '102', + 'diamond-open', 202, '202', 'diamond-dot', 302, '302', + 'diamond-open-dot', 3, '3', 'cross', 103, '103', 'cross-open', + 203, '203', 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', + 'x', 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', + 'x-open-dot', 5, '5', 'triangle-up', 105, '105', + 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, '305', + 'triangle-up-open-dot', 6, '6', 'triangle-down', 106, '106', + 'triangle-down-open', 206, '206', 'triangle-down-dot', 306, + '306', 'triangle-down-open-dot', 7, '7', 'triangle-left', 107, + '107', 'triangle-left-open', 207, '207', 'triangle-left-dot', + 307, '307', 'triangle-left-open-dot', 8, '8', + 'triangle-right', 108, '108', 'triangle-right-open', 208, + '208', 'triangle-right-dot', 308, '308', + 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, '109', + 'triangle-ne-open', 209, '209', 'triangle-ne-dot', 309, '309', + 'triangle-ne-open-dot', 10, '10', 'triangle-se', 110, '110', + 'triangle-se-open', 210, '210', 'triangle-se-dot', 310, '310', + 'triangle-se-open-dot', 11, '11', 'triangle-sw', 111, '111', + 'triangle-sw-open', 211, '211', 'triangle-sw-dot', 311, '311', + 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, '112', + 'triangle-nw-open', 212, '212', 'triangle-nw-dot', 312, '312', + 'triangle-nw-open-dot', 13, '13', 'pentagon', 113, '113', + 'pentagon-open', 213, '213', 'pentagon-dot', 313, '313', + 'pentagon-open-dot', 14, '14', 'hexagon', 114, '114', + 'hexagon-open', 214, '214', 'hexagon-dot', 314, '314', + 'hexagon-open-dot', 15, '15', 'hexagon2', 115, '115', + 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, '315', + 'hexagon2-open-dot', 16, '16', 'octagon', 116, '116', + 'octagon-open', 216, '216', 'octagon-dot', 316, '316', + 'octagon-open-dot', 17, '17', 'star', 117, '117', 'star-open', + 217, '217', 'star-dot', 317, '317', 'star-open-dot', 18, '18', + 'hexagram', 118, '118', 'hexagram-open', 218, '218', + 'hexagram-dot', 318, '318', 'hexagram-open-dot', 19, '19', + 'star-triangle-up', 119, '119', 'star-triangle-up-open', 219, + '219', 'star-triangle-up-dot', 319, '319', + 'star-triangle-up-open-dot', 20, '20', 'star-triangle-down', + 120, '120', 'star-triangle-down-open', 220, '220', + 'star-triangle-down-dot', 320, '320', + 'star-triangle-down-open-dot', 21, '21', 'star-square', 121, + '121', 'star-square-open', 221, '221', 'star-square-dot', 321, + '321', 'star-square-open-dot', 22, '22', 'star-diamond', 122, + '122', 'star-diamond-open', 222, '222', 'star-diamond-dot', + 322, '322', 'star-diamond-open-dot', 23, '23', 'diamond-tall', + 123, '123', 'diamond-tall-open', 223, '223', + 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', 24, + '24', 'diamond-wide', 124, '124', 'diamond-wide-open', 224, + '224', 'diamond-wide-dot', 324, '324', + 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, '125', + 'hourglass-open', 26, '26', 'bowtie', 126, '126', + 'bowtie-open', 27, '27', 'circle-cross', 127, '127', + 'circle-cross-open', 28, '28', 'circle-x', 128, '128', + 'circle-x-open', 29, '29', 'square-cross', 129, '129', + 'square-cross-open', 30, '30', 'square-x', 130, '130', + 'square-x-open', 31, '31', 'diamond-cross', 131, '131', + 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', + 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', + 'cross-thin-open', 34, '34', 'x-thin', 134, '134', + 'x-thin-open', 35, '35', 'asterisk', 135, '135', + 'asterisk-open', 36, '36', 'hash', 136, '136', 'hash-open', + 236, '236', 'hash-dot', 336, '336', 'hash-open-dot', 37, '37', + 'y-up', 137, '137', 'y-up-open', 38, '38', 'y-down', 138, + '138', 'y-down-open', 39, '39', 'y-left', 139, '139', + 'y-left-open', 40, '40', 'y-right', 140, '140', + 'y-right-open', 41, '41', 'line-ew', 141, '141', + 'line-ew-open', 42, '42', 'line-ns', 142, '142', + 'line-ns-open', 43, '43', 'line-ne', 143, '143', + 'line-ne-open', 44, '44', 'line-nw', 144, '144', + 'line-nw-open', 45, '45', 'arrow-up', 145, '145', + 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', + 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', + 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', + 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', + 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, '150', + 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', 151, '151', + 'arrow-bar-left-open', 52, '52', 'arrow-bar-right', 152, + '152', 'arrow-bar-right-open', 53, '53', 'arrow', 153, '153', + 'arrow-open', 54, '54', 'arrow-wide', 154, '154', + 'arrow-wide-open'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterternary/_stream.py b/plotly/graph_objects/scatterternary/_stream.py index 5d18c51d00..831f569be3 100644 --- a/plotly/graph_objects/scatterternary/_stream.py +++ b/plotly/graph_objects/scatterternary/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/scatterternary/_textfont.py b/plotly/graph_objects/scatterternary/_textfont.py index eead237d62..55932e525f 100644 --- a/plotly/graph_objects/scatterternary/_textfont.py +++ b/plotly/graph_objects/scatterternary/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterternary/hoverlabel/_font.py b/plotly/graph_objects/scatterternary/hoverlabel/_font.py index 8702472f64..b61435ce18 100644 --- a/plotly/graph_objects/scatterternary/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterternary/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py b/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py index af012f9cf6..23b0a66f27 100644 --- a/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/_colorbar.py b/plotly/graph_objects/scatterternary/marker/_colorbar.py index 5c189a6076..87c5205147 100644 --- a/plotly/graph_objects/scatterternary/marker/_colorbar.py +++ b/plotly/graph_objects/scatterternary/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/_gradient.py b/plotly/graph_objects/scatterternary/marker/_gradient.py index f2d7cc71fb..97a476d3cc 100644 --- a/plotly/graph_objects/scatterternary/marker/_gradient.py +++ b/plotly/graph_objects/scatterternary/marker/_gradient.py @@ -58,9 +58,12 @@ def type(self): Sets the type of gradient used to fill the markers The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['radial', 'horizontal', 'vertical', 'none'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['radial', 'horizontal', 'vertical', 'none'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/_line.py b/plotly/graph_objects/scatterternary/marker/_line.py index 6a8ecb348c..bb8b8e5dc1 100644 --- a/plotly/graph_objects/scatterternary/marker/_line.py +++ b/plotly/graph_objects/scatterternary/marker/_line.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -290,8 +290,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py index 5fb782c193..971b170bfd 100644 --- a/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/colorbar/_title.py b/plotly/graph_objects/scatterternary/marker/colorbar/_title.py index 1761382c0f..1f4564b364 100644 --- a/plotly/graph_objects/scatterternary/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatterternary/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py index bd8d4ccf84..24cdeb828c 100644 --- a/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/scatterternary/selected/_marker.py b/plotly/graph_objects/scatterternary/selected/_marker.py index bc15ad11f4..9178137141 100644 --- a/plotly/graph_objects/scatterternary/selected/_marker.py +++ b/plotly/graph_objects/scatterternary/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -56,7 +57,8 @@ def size(self): Sets the marker size of selected points. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/scatterternary/unselected/_marker.py b/plotly/graph_objects/scatterternary/unselected/_marker.py index 54ec89a5fc..3c7cf938c4 100644 --- a/plotly/graph_objects/scatterternary/unselected/_marker.py +++ b/plotly/graph_objects/scatterternary/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -59,7 +60,8 @@ def size(self): selection exists. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/splom/_hoverlabel.py b/plotly/graph_objects/splom/_hoverlabel.py index 00b8f342e2..2334a23d94 100644 --- a/plotly/graph_objects/splom/_hoverlabel.py +++ b/plotly/graph_objects/splom/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/splom/_marker.py b/plotly/graph_objects/splom/_marker.py index b3ff0d9d7b..9badc1b81a 100644 --- a/plotly/graph_objects/splom/_marker.py +++ b/plotly/graph_objects/splom/_marker.py @@ -130,7 +130,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -153,7 +153,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -175,7 +175,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -354,8 +354,10 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -432,8 +434,10 @@ def size(self): Sets the marker size (in px). The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -453,7 +457,8 @@ def sizemin(self): points. The 'sizemin' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +478,10 @@ def sizemode(self): to pixels. The 'sizemode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['diameter', 'area'] + + - One of the following enumeration values: + + ['diameter', 'area'] Returns ------- @@ -495,7 +502,7 @@ def sizeref(self): The 'sizeref' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -534,97 +541,93 @@ def symbol(self): appending "-open-dot" or "dot-open" to a symbol name. The 'symbol' property is an enumeration that may be specified as: - - One of the following enumeration values: - [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', - 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', - 'square', 101, '101', 'square-open', 201, '201', - 'square-dot', 301, '301', 'square-open-dot', 2, '2', - 'diamond', 102, '102', 'diamond-open', 202, '202', - 'diamond-dot', 302, '302', 'diamond-open-dot', 3, '3', - 'cross', 103, '103', 'cross-open', 203, '203', - 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', 'x', - 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', - 'x-open-dot', 5, '5', 'triangle-up', 105, '105', - 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, - '305', 'triangle-up-open-dot', 6, '6', 'triangle-down', - 106, '106', 'triangle-down-open', 206, '206', - 'triangle-down-dot', 306, '306', 'triangle-down-open-dot', - 7, '7', 'triangle-left', 107, '107', 'triangle-left-open', - 207, '207', 'triangle-left-dot', 307, '307', - 'triangle-left-open-dot', 8, '8', 'triangle-right', 108, - '108', 'triangle-right-open', 208, '208', - 'triangle-right-dot', 308, '308', - 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, - '109', 'triangle-ne-open', 209, '209', 'triangle-ne-dot', - 309, '309', 'triangle-ne-open-dot', 10, '10', - 'triangle-se', 110, '110', 'triangle-se-open', 210, '210', - 'triangle-se-dot', 310, '310', 'triangle-se-open-dot', 11, - '11', 'triangle-sw', 111, '111', 'triangle-sw-open', 211, - '211', 'triangle-sw-dot', 311, '311', - 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, - '112', 'triangle-nw-open', 212, '212', 'triangle-nw-dot', - 312, '312', 'triangle-nw-open-dot', 13, '13', 'pentagon', - 113, '113', 'pentagon-open', 213, '213', 'pentagon-dot', - 313, '313', 'pentagon-open-dot', 14, '14', 'hexagon', 114, - '114', 'hexagon-open', 214, '214', 'hexagon-dot', 314, - '314', 'hexagon-open-dot', 15, '15', 'hexagon2', 115, - '115', 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, - '315', 'hexagon2-open-dot', 16, '16', 'octagon', 116, - '116', 'octagon-open', 216, '216', 'octagon-dot', 316, - '316', 'octagon-open-dot', 17, '17', 'star', 117, '117', - 'star-open', 217, '217', 'star-dot', 317, '317', - 'star-open-dot', 18, '18', 'hexagram', 118, '118', - 'hexagram-open', 218, '218', 'hexagram-dot', 318, '318', - 'hexagram-open-dot', 19, '19', 'star-triangle-up', 119, - '119', 'star-triangle-up-open', 219, '219', - 'star-triangle-up-dot', 319, '319', - 'star-triangle-up-open-dot', 20, '20', - 'star-triangle-down', 120, '120', - 'star-triangle-down-open', 220, '220', - 'star-triangle-down-dot', 320, '320', - 'star-triangle-down-open-dot', 21, '21', 'star-square', - 121, '121', 'star-square-open', 221, '221', - 'star-square-dot', 321, '321', 'star-square-open-dot', 22, - '22', 'star-diamond', 122, '122', 'star-diamond-open', - 222, '222', 'star-diamond-dot', 322, '322', - 'star-diamond-open-dot', 23, '23', 'diamond-tall', 123, - '123', 'diamond-tall-open', 223, '223', - 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', - 24, '24', 'diamond-wide', 124, '124', 'diamond-wide-open', - 224, '224', 'diamond-wide-dot', 324, '324', - 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, - '125', 'hourglass-open', 26, '26', 'bowtie', 126, '126', - 'bowtie-open', 27, '27', 'circle-cross', 127, '127', - 'circle-cross-open', 28, '28', 'circle-x', 128, '128', - 'circle-x-open', 29, '29', 'square-cross', 129, '129', - 'square-cross-open', 30, '30', 'square-x', 130, '130', - 'square-x-open', 31, '31', 'diamond-cross', 131, '131', - 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', - 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', - 'cross-thin-open', 34, '34', 'x-thin', 134, '134', - 'x-thin-open', 35, '35', 'asterisk', 135, '135', - 'asterisk-open', 36, '36', 'hash', 136, '136', - 'hash-open', 236, '236', 'hash-dot', 336, '336', - 'hash-open-dot', 37, '37', 'y-up', 137, '137', - 'y-up-open', 38, '38', 'y-down', 138, '138', - 'y-down-open', 39, '39', 'y-left', 139, '139', - 'y-left-open', 40, '40', 'y-right', 140, '140', - 'y-right-open', 41, '41', 'line-ew', 141, '141', - 'line-ew-open', 42, '42', 'line-ns', 142, '142', - 'line-ns-open', 43, '43', 'line-ne', 143, '143', - 'line-ne-open', 44, '44', 'line-nw', 144, '144', - 'line-nw-open', 45, '45', 'arrow-up', 145, '145', - 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', - 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', - 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', - 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', - 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, - '150', 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', - 151, '151', 'arrow-bar-left-open', 52, '52', - 'arrow-bar-right', 152, '152', 'arrow-bar-right-open', 53, - '53', 'arrow', 153, '153', 'arrow-open', 54, '54', - 'arrow-wide', 154, '154', 'arrow-wide-open'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', + 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', 'square', + 101, '101', 'square-open', 201, '201', 'square-dot', 301, + '301', 'square-open-dot', 2, '2', 'diamond', 102, '102', + 'diamond-open', 202, '202', 'diamond-dot', 302, '302', + 'diamond-open-dot', 3, '3', 'cross', 103, '103', 'cross-open', + 203, '203', 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', + 'x', 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', + 'x-open-dot', 5, '5', 'triangle-up', 105, '105', + 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, '305', + 'triangle-up-open-dot', 6, '6', 'triangle-down', 106, '106', + 'triangle-down-open', 206, '206', 'triangle-down-dot', 306, + '306', 'triangle-down-open-dot', 7, '7', 'triangle-left', 107, + '107', 'triangle-left-open', 207, '207', 'triangle-left-dot', + 307, '307', 'triangle-left-open-dot', 8, '8', + 'triangle-right', 108, '108', 'triangle-right-open', 208, + '208', 'triangle-right-dot', 308, '308', + 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, '109', + 'triangle-ne-open', 209, '209', 'triangle-ne-dot', 309, '309', + 'triangle-ne-open-dot', 10, '10', 'triangle-se', 110, '110', + 'triangle-se-open', 210, '210', 'triangle-se-dot', 310, '310', + 'triangle-se-open-dot', 11, '11', 'triangle-sw', 111, '111', + 'triangle-sw-open', 211, '211', 'triangle-sw-dot', 311, '311', + 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, '112', + 'triangle-nw-open', 212, '212', 'triangle-nw-dot', 312, '312', + 'triangle-nw-open-dot', 13, '13', 'pentagon', 113, '113', + 'pentagon-open', 213, '213', 'pentagon-dot', 313, '313', + 'pentagon-open-dot', 14, '14', 'hexagon', 114, '114', + 'hexagon-open', 214, '214', 'hexagon-dot', 314, '314', + 'hexagon-open-dot', 15, '15', 'hexagon2', 115, '115', + 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, '315', + 'hexagon2-open-dot', 16, '16', 'octagon', 116, '116', + 'octagon-open', 216, '216', 'octagon-dot', 316, '316', + 'octagon-open-dot', 17, '17', 'star', 117, '117', 'star-open', + 217, '217', 'star-dot', 317, '317', 'star-open-dot', 18, '18', + 'hexagram', 118, '118', 'hexagram-open', 218, '218', + 'hexagram-dot', 318, '318', 'hexagram-open-dot', 19, '19', + 'star-triangle-up', 119, '119', 'star-triangle-up-open', 219, + '219', 'star-triangle-up-dot', 319, '319', + 'star-triangle-up-open-dot', 20, '20', 'star-triangle-down', + 120, '120', 'star-triangle-down-open', 220, '220', + 'star-triangle-down-dot', 320, '320', + 'star-triangle-down-open-dot', 21, '21', 'star-square', 121, + '121', 'star-square-open', 221, '221', 'star-square-dot', 321, + '321', 'star-square-open-dot', 22, '22', 'star-diamond', 122, + '122', 'star-diamond-open', 222, '222', 'star-diamond-dot', + 322, '322', 'star-diamond-open-dot', 23, '23', 'diamond-tall', + 123, '123', 'diamond-tall-open', 223, '223', + 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', 24, + '24', 'diamond-wide', 124, '124', 'diamond-wide-open', 224, + '224', 'diamond-wide-dot', 324, '324', + 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, '125', + 'hourglass-open', 26, '26', 'bowtie', 126, '126', + 'bowtie-open', 27, '27', 'circle-cross', 127, '127', + 'circle-cross-open', 28, '28', 'circle-x', 128, '128', + 'circle-x-open', 29, '29', 'square-cross', 129, '129', + 'square-cross-open', 30, '30', 'square-x', 130, '130', + 'square-x-open', 31, '31', 'diamond-cross', 131, '131', + 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', + 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', + 'cross-thin-open', 34, '34', 'x-thin', 134, '134', + 'x-thin-open', 35, '35', 'asterisk', 135, '135', + 'asterisk-open', 36, '36', 'hash', 136, '136', 'hash-open', + 236, '236', 'hash-dot', 336, '336', 'hash-open-dot', 37, '37', + 'y-up', 137, '137', 'y-up-open', 38, '38', 'y-down', 138, + '138', 'y-down-open', 39, '39', 'y-left', 139, '139', + 'y-left-open', 40, '40', 'y-right', 140, '140', + 'y-right-open', 41, '41', 'line-ew', 141, '141', + 'line-ew-open', 42, '42', 'line-ns', 142, '142', + 'line-ns-open', 43, '43', 'line-ne', 143, '143', + 'line-ne-open', 44, '44', 'line-nw', 144, '144', + 'line-nw-open', 45, '45', 'arrow-up', 145, '145', + 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', + 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', + 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', + 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', + 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, '150', + 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', 151, '151', + 'arrow-bar-left-open', 52, '52', 'arrow-bar-right', 152, + '152', 'arrow-bar-right-open', 53, '53', 'arrow', 153, '153', + 'arrow-open', 54, '54', 'arrow-wide', 154, '154', + 'arrow-wide-open'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/splom/_stream.py b/plotly/graph_objects/splom/_stream.py index fa84c20505..3eb93a14bc 100644 --- a/plotly/graph_objects/splom/_stream.py +++ b/plotly/graph_objects/splom/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/splom/dimension/_axis.py b/plotly/graph_objects/splom/dimension/_axis.py index ee46bbebd4..7333314821 100644 --- a/plotly/graph_objects/splom/dimension/_axis.py +++ b/plotly/graph_objects/splom/dimension/_axis.py @@ -38,8 +38,10 @@ def type(self): over this attribute. The 'type' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['linear', 'log', 'date', 'category'] + + - One of the following enumeration values: + + ['linear', 'log', 'date', 'category'] Returns ------- diff --git a/plotly/graph_objects/splom/hoverlabel/_font.py b/plotly/graph_objects/splom/hoverlabel/_font.py index 3bc5f60d80..3df90d872d 100644 --- a/plotly/graph_objects/splom/hoverlabel/_font.py +++ b/plotly/graph_objects/splom/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/splom/legendgrouptitle/_font.py b/plotly/graph_objects/splom/legendgrouptitle/_font.py index e6891cc159..c3bdb91be7 100644 --- a/plotly/graph_objects/splom/legendgrouptitle/_font.py +++ b/plotly/graph_objects/splom/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/splom/marker/_colorbar.py b/plotly/graph_objects/splom/marker/_colorbar.py index 6b2db35f0c..bf2d24a18b 100644 --- a/plotly/graph_objects/splom/marker/_colorbar.py +++ b/plotly/graph_objects/splom/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/splom/marker/_line.py b/plotly/graph_objects/splom/marker/_line.py index 348f49c41a..88ca0295e9 100644 --- a/plotly/graph_objects/splom/marker/_line.py +++ b/plotly/graph_objects/splom/marker/_line.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -104,7 +104,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -126,7 +126,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -290,8 +290,10 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/splom/marker/colorbar/_tickfont.py b/plotly/graph_objects/splom/marker/colorbar/_tickfont.py index fa2c861def..a4845d0a9d 100644 --- a/plotly/graph_objects/splom/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/splom/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/splom/marker/colorbar/_title.py b/plotly/graph_objects/splom/marker/colorbar/_title.py index 461c88fa3b..51c4e2fea9 100644 --- a/plotly/graph_objects/splom/marker/colorbar/_title.py +++ b/plotly/graph_objects/splom/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/splom/marker/colorbar/title/_font.py b/plotly/graph_objects/splom/marker/colorbar/title/_font.py index 35b6a0b547..146939be2c 100644 --- a/plotly/graph_objects/splom/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/splom/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/splom/selected/_marker.py b/plotly/graph_objects/splom/selected/_marker.py index a19741c63a..abd1dd9452 100644 --- a/plotly/graph_objects/splom/selected/_marker.py +++ b/plotly/graph_objects/splom/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -56,7 +57,8 @@ def size(self): Sets the marker size of selected points. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/splom/unselected/_marker.py b/plotly/graph_objects/splom/unselected/_marker.py index b2772ea22c..f977ec96d5 100644 --- a/plotly/graph_objects/splom/unselected/_marker.py +++ b/plotly/graph_objects/splom/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -59,7 +60,8 @@ def size(self): selection exists. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/streamtube/_colorbar.py b/plotly/graph_objects/streamtube/_colorbar.py index 031231d470..20c5f37a7e 100644 --- a/plotly/graph_objects/streamtube/_colorbar.py +++ b/plotly/graph_objects/streamtube/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -655,8 +674,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -676,10 +697,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -721,7 +744,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -745,8 +769,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -785,8 +811,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -898,7 +926,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -942,7 +971,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -963,8 +992,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -982,7 +1013,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1002,8 +1034,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1028,7 +1062,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1049,8 +1083,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1068,7 +1104,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1088,8 +1125,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/streamtube/_hoverlabel.py b/plotly/graph_objects/streamtube/_hoverlabel.py index 66895b55fb..d8820ae4b6 100644 --- a/plotly/graph_objects/streamtube/_hoverlabel.py +++ b/plotly/graph_objects/streamtube/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/streamtube/_lighting.py b/plotly/graph_objects/streamtube/_lighting.py index 5f47700a7c..4e0c175a5d 100644 --- a/plotly/graph_objects/streamtube/_lighting.py +++ b/plotly/graph_objects/streamtube/_lighting.py @@ -25,7 +25,8 @@ def ambient(self): out the image. The 'ambient' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -44,7 +45,8 @@ def diffuse(self): range of angles. The 'diffuse' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -63,7 +65,8 @@ def facenormalsepsilon(self): from degenerate geometry. The 'facenormalsepsilon' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -83,7 +86,8 @@ def fresnel(self): of the paper (almost 90 degrees), causing shine. The 'fresnel' property is a number and may be specified as: - - An int or float in the interval [0, 5] + + - An int or float in the interval [0, 5] Returns ------- @@ -102,7 +106,8 @@ def roughness(self): and less contrasty the shine. The 'roughness' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -121,7 +126,8 @@ def specular(self): single direction, causing shine. The 'specular' property is a number and may be specified as: - - An int or float in the interval [0, 2] + + - An int or float in the interval [0, 2] Returns ------- @@ -140,7 +146,8 @@ def vertexnormalsepsilon(self): arising from degenerate geometry. The 'vertexnormalsepsilon' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/streamtube/_lightposition.py b/plotly/graph_objects/streamtube/_lightposition.py index bf32dba3c5..14e1fc6820 100644 --- a/plotly/graph_objects/streamtube/_lightposition.py +++ b/plotly/graph_objects/streamtube/_lightposition.py @@ -16,7 +16,8 @@ def x(self): Numeric vector, representing the X coordinate for each vertex. The 'x' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- @@ -34,7 +35,8 @@ def y(self): Numeric vector, representing the Y coordinate for each vertex. The 'y' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- @@ -52,7 +54,8 @@ def z(self): Numeric vector, representing the Z coordinate for each vertex. The 'z' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- diff --git a/plotly/graph_objects/streamtube/_stream.py b/plotly/graph_objects/streamtube/_stream.py index cc37bfdc8c..e652d18ef1 100644 --- a/plotly/graph_objects/streamtube/_stream.py +++ b/plotly/graph_objects/streamtube/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/streamtube/colorbar/_tickfont.py b/plotly/graph_objects/streamtube/colorbar/_tickfont.py index fc5aee5623..f1f7e0a764 100644 --- a/plotly/graph_objects/streamtube/colorbar/_tickfont.py +++ b/plotly/graph_objects/streamtube/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/streamtube/colorbar/_title.py b/plotly/graph_objects/streamtube/colorbar/_title.py index d8792d1b72..79bb9cf380 100644 --- a/plotly/graph_objects/streamtube/colorbar/_title.py +++ b/plotly/graph_objects/streamtube/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/streamtube/colorbar/title/_font.py b/plotly/graph_objects/streamtube/colorbar/title/_font.py index 32e2b98d49..515768004a 100644 --- a/plotly/graph_objects/streamtube/colorbar/title/_font.py +++ b/plotly/graph_objects/streamtube/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/streamtube/hoverlabel/_font.py b/plotly/graph_objects/streamtube/hoverlabel/_font.py index 07e000244d..ed8cded350 100644 --- a/plotly/graph_objects/streamtube/hoverlabel/_font.py +++ b/plotly/graph_objects/streamtube/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/streamtube/legendgrouptitle/_font.py b/plotly/graph_objects/streamtube/legendgrouptitle/_font.py index 26953f53a9..8bfa837167 100644 --- a/plotly/graph_objects/streamtube/legendgrouptitle/_font.py +++ b/plotly/graph_objects/streamtube/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/sunburst/_domain.py b/plotly/graph_objects/sunburst/_domain.py index 2109ba5d86..bf0f49701e 100644 --- a/plotly/graph_objects/sunburst/_domain.py +++ b/plotly/graph_objects/sunburst/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/sunburst/_hoverlabel.py b/plotly/graph_objects/sunburst/_hoverlabel.py index 5a4ea3e751..a73aa02212 100644 --- a/plotly/graph_objects/sunburst/_hoverlabel.py +++ b/plotly/graph_objects/sunburst/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/_insidetextfont.py b/plotly/graph_objects/sunburst/_insidetextfont.py index 8cd1bf3025..8e70d4d217 100644 --- a/plotly/graph_objects/sunburst/_insidetextfont.py +++ b/plotly/graph_objects/sunburst/_insidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/_leaf.py b/plotly/graph_objects/sunburst/_leaf.py index b3f63f2ca4..f6034033c8 100644 --- a/plotly/graph_objects/sunburst/_leaf.py +++ b/plotly/graph_objects/sunburst/_leaf.py @@ -17,7 +17,8 @@ def opacity(self): to 1; otherwise it is defaulted to 0.7 The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/sunburst/_marker.py b/plotly/graph_objects/sunburst/_marker.py index 993c46d4a1..a4c6ac8080 100644 --- a/plotly/graph_objects/sunburst/_marker.py +++ b/plotly/graph_objects/sunburst/_marker.py @@ -80,7 +80,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -103,7 +103,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -124,7 +124,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/sunburst/_outsidetextfont.py b/plotly/graph_objects/sunburst/_outsidetextfont.py index 244747f1c5..0c46457862 100644 --- a/plotly/graph_objects/sunburst/_outsidetextfont.py +++ b/plotly/graph_objects/sunburst/_outsidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/_stream.py b/plotly/graph_objects/sunburst/_stream.py index 5a223d6011..d66c8c4c91 100644 --- a/plotly/graph_objects/sunburst/_stream.py +++ b/plotly/graph_objects/sunburst/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/sunburst/_textfont.py b/plotly/graph_objects/sunburst/_textfont.py index 0796cf641f..ca67bea392 100644 --- a/plotly/graph_objects/sunburst/_textfont.py +++ b/plotly/graph_objects/sunburst/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/hoverlabel/_font.py b/plotly/graph_objects/sunburst/hoverlabel/_font.py index 4e34e4dc97..d99b17b41f 100644 --- a/plotly/graph_objects/sunburst/hoverlabel/_font.py +++ b/plotly/graph_objects/sunburst/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/legendgrouptitle/_font.py b/plotly/graph_objects/sunburst/legendgrouptitle/_font.py index e13aad1d3f..5084b180c1 100644 --- a/plotly/graph_objects/sunburst/legendgrouptitle/_font.py +++ b/plotly/graph_objects/sunburst/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/_colorbar.py b/plotly/graph_objects/sunburst/marker/_colorbar.py index 4fb681caf3..f00e07d047 100644 --- a/plotly/graph_objects/sunburst/marker/_colorbar.py +++ b/plotly/graph_objects/sunburst/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/_line.py b/plotly/graph_objects/sunburst/marker/_line.py index 7cf9c603a2..5a73d42e1e 100644 --- a/plotly/graph_objects/sunburst/marker/_line.py +++ b/plotly/graph_objects/sunburst/marker/_line.py @@ -58,8 +58,10 @@ def width(self): Sets the width (in px) of the line enclosing each sector. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/_pattern.py b/plotly/graph_objects/sunburst/marker/_pattern.py index 08fdf08bb7..9bf4e1cb2a 100644 --- a/plotly/graph_objects/sunburst/marker/_pattern.py +++ b/plotly/graph_objects/sunburst/marker/_pattern.py @@ -120,7 +120,8 @@ def fgopacity(self): 0.5 when `fillmode` is "overlay". Otherwise, defaults to 1. The 'fgopacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -139,8 +140,10 @@ def fillmode(self): to `bgcolor` or a `fgcolor`. The 'fillmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['replace', 'overlay'] + + - One of the following enumeration values: + + ['replace', 'overlay'] Returns ------- @@ -199,9 +202,12 @@ def shape(self): used for filling the area. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['', '/', '\\', 'x', '-', '|', '+', '.'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['', '/', '\\', 'x', '-', '|', '+', '.'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -238,8 +244,10 @@ def size(self): which corresponds to the interval of repetition of the pattern. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -278,8 +286,10 @@ def solidity(self): shows only the foreground color without pattern. The 'solidity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py b/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py index 411ed48e53..f038ad97e0 100644 --- a/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/colorbar/_title.py b/plotly/graph_objects/sunburst/marker/colorbar/_title.py index b2be2a07c6..60e84b6dd4 100644 --- a/plotly/graph_objects/sunburst/marker/colorbar/_title.py +++ b/plotly/graph_objects/sunburst/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py b/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py index 7942584bd3..8256b50382 100644 --- a/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/surface/_colorbar.py b/plotly/graph_objects/surface/_colorbar.py index ee9a5bd25f..8177fb8616 100644 --- a/plotly/graph_objects/surface/_colorbar.py +++ b/plotly/graph_objects/surface/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/surface/_hoverlabel.py b/plotly/graph_objects/surface/_hoverlabel.py index 5169b181c6..1762e5d834 100644 --- a/plotly/graph_objects/surface/_hoverlabel.py +++ b/plotly/graph_objects/surface/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/surface/_lighting.py b/plotly/graph_objects/surface/_lighting.py index d6305c0434..3861c73b8a 100644 --- a/plotly/graph_objects/surface/_lighting.py +++ b/plotly/graph_objects/surface/_lighting.py @@ -17,7 +17,8 @@ def ambient(self): out the image. The 'ambient' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -36,7 +37,8 @@ def diffuse(self): range of angles. The 'diffuse' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -56,7 +58,8 @@ def fresnel(self): of the paper (almost 90 degrees), causing shine. The 'fresnel' property is a number and may be specified as: - - An int or float in the interval [0, 5] + + - An int or float in the interval [0, 5] Returns ------- @@ -75,7 +78,8 @@ def roughness(self): and less contrasty the shine. The 'roughness' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -94,7 +98,8 @@ def specular(self): single direction, causing shine. The 'specular' property is a number and may be specified as: - - An int or float in the interval [0, 2] + + - An int or float in the interval [0, 2] Returns ------- diff --git a/plotly/graph_objects/surface/_lightposition.py b/plotly/graph_objects/surface/_lightposition.py index a28cb98cdd..8a8c5bf1c1 100644 --- a/plotly/graph_objects/surface/_lightposition.py +++ b/plotly/graph_objects/surface/_lightposition.py @@ -16,7 +16,8 @@ def x(self): Numeric vector, representing the X coordinate for each vertex. The 'x' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- @@ -34,7 +35,8 @@ def y(self): Numeric vector, representing the Y coordinate for each vertex. The 'y' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- @@ -52,7 +54,8 @@ def z(self): Numeric vector, representing the Z coordinate for each vertex. The 'z' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- diff --git a/plotly/graph_objects/surface/_stream.py b/plotly/graph_objects/surface/_stream.py index 0c048be298..df02ee14ac 100644 --- a/plotly/graph_objects/surface/_stream.py +++ b/plotly/graph_objects/surface/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/surface/colorbar/_tickfont.py b/plotly/graph_objects/surface/colorbar/_tickfont.py index 1dd13fd9fe..d0c0d9e5aa 100644 --- a/plotly/graph_objects/surface/colorbar/_tickfont.py +++ b/plotly/graph_objects/surface/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/surface/colorbar/_title.py b/plotly/graph_objects/surface/colorbar/_title.py index 47d0f99400..26e83e665c 100644 --- a/plotly/graph_objects/surface/colorbar/_title.py +++ b/plotly/graph_objects/surface/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/surface/colorbar/title/_font.py b/plotly/graph_objects/surface/colorbar/title/_font.py index 3705c091ef..31d25fa4ba 100644 --- a/plotly/graph_objects/surface/colorbar/title/_font.py +++ b/plotly/graph_objects/surface/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/surface/contours/_x.py b/plotly/graph_objects/surface/contours/_x.py index 06e1a6f072..585a3311e4 100644 --- a/plotly/graph_objects/surface/contours/_x.py +++ b/plotly/graph_objects/surface/contours/_x.py @@ -52,7 +52,7 @@ def end(self): The 'end' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -111,7 +111,8 @@ def highlightwidth(self): Sets the width of the highlighted contour lines. The 'highlightwidth' property is a number and may be specified as: - - An int or float in the interval [1, 16] + + - An int or float in the interval [1, 16] Returns ------- @@ -167,7 +168,8 @@ def size(self): Sets the step between each contour level. Must be positive. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -187,7 +189,7 @@ def start(self): The 'start' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -224,7 +226,8 @@ def width(self): Sets the width of the contour lines. The 'width' property is a number and may be specified as: - - An int or float in the interval [1, 16] + + - An int or float in the interval [1, 16] Returns ------- diff --git a/plotly/graph_objects/surface/contours/_y.py b/plotly/graph_objects/surface/contours/_y.py index 3ad957a81d..97e3d2f12e 100644 --- a/plotly/graph_objects/surface/contours/_y.py +++ b/plotly/graph_objects/surface/contours/_y.py @@ -52,7 +52,7 @@ def end(self): The 'end' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -111,7 +111,8 @@ def highlightwidth(self): Sets the width of the highlighted contour lines. The 'highlightwidth' property is a number and may be specified as: - - An int or float in the interval [1, 16] + + - An int or float in the interval [1, 16] Returns ------- @@ -167,7 +168,8 @@ def size(self): Sets the step between each contour level. Must be positive. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -187,7 +189,7 @@ def start(self): The 'start' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -224,7 +226,8 @@ def width(self): Sets the width of the contour lines. The 'width' property is a number and may be specified as: - - An int or float in the interval [1, 16] + + - An int or float in the interval [1, 16] Returns ------- diff --git a/plotly/graph_objects/surface/contours/_z.py b/plotly/graph_objects/surface/contours/_z.py index 8bea45ec56..e809ce179b 100644 --- a/plotly/graph_objects/surface/contours/_z.py +++ b/plotly/graph_objects/surface/contours/_z.py @@ -52,7 +52,7 @@ def end(self): The 'end' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -111,7 +111,8 @@ def highlightwidth(self): Sets the width of the highlighted contour lines. The 'highlightwidth' property is a number and may be specified as: - - An int or float in the interval [1, 16] + + - An int or float in the interval [1, 16] Returns ------- @@ -167,7 +168,8 @@ def size(self): Sets the step between each contour level. Must be positive. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -187,7 +189,7 @@ def start(self): The 'start' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -224,7 +226,8 @@ def width(self): Sets the width of the contour lines. The 'width' property is a number and may be specified as: - - An int or float in the interval [1, 16] + + - An int or float in the interval [1, 16] Returns ------- diff --git a/plotly/graph_objects/surface/hoverlabel/_font.py b/plotly/graph_objects/surface/hoverlabel/_font.py index e5896853a2..b193a34115 100644 --- a/plotly/graph_objects/surface/hoverlabel/_font.py +++ b/plotly/graph_objects/surface/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/surface/legendgrouptitle/_font.py b/plotly/graph_objects/surface/legendgrouptitle/_font.py index c84fe3e3c1..6eeccc28ed 100644 --- a/plotly/graph_objects/surface/legendgrouptitle/_font.py +++ b/plotly/graph_objects/surface/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/table/_cells.py b/plotly/graph_objects/table/_cells.py index 2378859061..4e7bd8ccd3 100644 --- a/plotly/graph_objects/table/_cells.py +++ b/plotly/graph_objects/table/_cells.py @@ -34,9 +34,12 @@ def align(self): set to override the text width. The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'center', 'right'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -150,7 +153,7 @@ def height(self): The 'height' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/table/_domain.py b/plotly/graph_objects/table/_domain.py index 8202718222..e1391445e7 100644 --- a/plotly/graph_objects/table/_domain.py +++ b/plotly/graph_objects/table/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/table/_header.py b/plotly/graph_objects/table/_header.py index f956499e42..db3f192884 100644 --- a/plotly/graph_objects/table/_header.py +++ b/plotly/graph_objects/table/_header.py @@ -34,9 +34,12 @@ def align(self): set to override the text width. The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'center', 'right'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -150,7 +153,7 @@ def height(self): The 'height' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- diff --git a/plotly/graph_objects/table/_hoverlabel.py b/plotly/graph_objects/table/_hoverlabel.py index d6ceca1e3b..46d3bc8050 100644 --- a/plotly/graph_objects/table/_hoverlabel.py +++ b/plotly/graph_objects/table/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/table/_stream.py b/plotly/graph_objects/table/_stream.py index 005e0d9b67..f1c00339c8 100644 --- a/plotly/graph_objects/table/_stream.py +++ b/plotly/graph_objects/table/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/table/cells/_font.py b/plotly/graph_objects/table/cells/_font.py index d316e28e38..2c684efd6f 100644 --- a/plotly/graph_objects/table/cells/_font.py +++ b/plotly/graph_objects/table/cells/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/table/cells/_line.py b/plotly/graph_objects/table/cells/_line.py index b3132dc50a..9ee5cc01bc 100644 --- a/plotly/graph_objects/table/cells/_line.py +++ b/plotly/graph_objects/table/cells/_line.py @@ -54,8 +54,9 @@ def width(self): """ The 'width' property is a number and may be specified as: - - An int or float - - A tuple, list, or one-dimensional numpy array of the above + - An int or float + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/table/header/_font.py b/plotly/graph_objects/table/header/_font.py index 20ead1f1ab..820a375888 100644 --- a/plotly/graph_objects/table/header/_font.py +++ b/plotly/graph_objects/table/header/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/table/header/_line.py b/plotly/graph_objects/table/header/_line.py index adf8715fd3..7834b18247 100644 --- a/plotly/graph_objects/table/header/_line.py +++ b/plotly/graph_objects/table/header/_line.py @@ -54,8 +54,9 @@ def width(self): """ The 'width' property is a number and may be specified as: - - An int or float - - A tuple, list, or one-dimensional numpy array of the above + - An int or float + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/table/hoverlabel/_font.py b/plotly/graph_objects/table/hoverlabel/_font.py index 688e1c407c..7611c31a56 100644 --- a/plotly/graph_objects/table/hoverlabel/_font.py +++ b/plotly/graph_objects/table/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/table/legendgrouptitle/_font.py b/plotly/graph_objects/table/legendgrouptitle/_font.py index 675cc4a349..a4c4663668 100644 --- a/plotly/graph_objects/table/legendgrouptitle/_font.py +++ b/plotly/graph_objects/table/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/treemap/_domain.py b/plotly/graph_objects/treemap/_domain.py index b00df20fee..fed2388551 100644 --- a/plotly/graph_objects/treemap/_domain.py +++ b/plotly/graph_objects/treemap/_domain.py @@ -61,10 +61,12 @@ def x(self): * a list or tuple of 2 elements where: (0) The 'x[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'x[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -87,10 +89,12 @@ def y(self): * a list or tuple of 2 elements where: (0) The 'y[0]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] (1) The 'y[1]' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/treemap/_hoverlabel.py b/plotly/graph_objects/treemap/_hoverlabel.py index b13ee99bd6..91d9cadf92 100644 --- a/plotly/graph_objects/treemap/_hoverlabel.py +++ b/plotly/graph_objects/treemap/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/_insidetextfont.py b/plotly/graph_objects/treemap/_insidetextfont.py index 33b0801bd7..c7fb173c5f 100644 --- a/plotly/graph_objects/treemap/_insidetextfont.py +++ b/plotly/graph_objects/treemap/_insidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/_marker.py b/plotly/graph_objects/treemap/_marker.py index 000211589c..a742f93de9 100644 --- a/plotly/graph_objects/treemap/_marker.py +++ b/plotly/graph_objects/treemap/_marker.py @@ -83,7 +83,7 @@ def cmax(self): The 'cmax' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -106,7 +106,7 @@ def cmid(self): The 'cmid' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -127,7 +127,7 @@ def cmin(self): The 'cmin' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -278,7 +278,8 @@ def cornerradius(self): Sets the maximum rounding of corners (in px). The 'cornerradius' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -303,8 +304,10 @@ def depthfade(self): background color. The 'depthfade' property is an enumeration that may be specified as: - - One of the following enumeration values: - [True, False, 'reversed'] + + - One of the following enumeration values: + + [True, False, 'reversed'] Returns ------- diff --git a/plotly/graph_objects/treemap/_outsidetextfont.py b/plotly/graph_objects/treemap/_outsidetextfont.py index 1b94661c35..dacc936b76 100644 --- a/plotly/graph_objects/treemap/_outsidetextfont.py +++ b/plotly/graph_objects/treemap/_outsidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/_pathbar.py b/plotly/graph_objects/treemap/_pathbar.py index 20493efd0c..edc4b525ee 100644 --- a/plotly/graph_objects/treemap/_pathbar.py +++ b/plotly/graph_objects/treemap/_pathbar.py @@ -17,8 +17,10 @@ def edgeshape(self): labels. The 'edgeshape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['>', '<', '|', '/', '\\'] + + - One of the following enumeration values: + + ['>', '<', '|', '/', '\\'] Returns ------- @@ -37,8 +39,10 @@ def side(self): should be presented. The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'bottom'] + + - One of the following enumeration values: + + ['top', 'bottom'] Returns ------- @@ -79,7 +83,8 @@ def thickness(self): each side. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [12, inf] + + - An int or float in the interval [12, inf] Returns ------- diff --git a/plotly/graph_objects/treemap/_stream.py b/plotly/graph_objects/treemap/_stream.py index 1b64cc6ba3..b60922558f 100644 --- a/plotly/graph_objects/treemap/_stream.py +++ b/plotly/graph_objects/treemap/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/treemap/_textfont.py b/plotly/graph_objects/treemap/_textfont.py index 809bd2f505..2273c8967a 100644 --- a/plotly/graph_objects/treemap/_textfont.py +++ b/plotly/graph_objects/treemap/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/_tiling.py b/plotly/graph_objects/treemap/_tiling.py index ce78eda1e3..5ef9c48598 100644 --- a/plotly/graph_objects/treemap/_tiling.py +++ b/plotly/graph_objects/treemap/_tiling.py @@ -38,9 +38,11 @@ def packing(self): https://github.com/d3/d3-hierarchy#treemap-tiling The 'packing' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['squarify', 'binary', 'dice', 'slice', 'slice-dice', - 'dice-slice'] + + - One of the following enumeration values: + + ['squarify', 'binary', 'dice', 'slice', 'slice-dice', + 'dice-slice'] Returns ------- @@ -58,7 +60,8 @@ def pad(self): Sets the inner padding (in px). The 'pad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -87,7 +90,8 @@ def squarifyratio(self): layouts. The 'squarifyratio' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- diff --git a/plotly/graph_objects/treemap/hoverlabel/_font.py b/plotly/graph_objects/treemap/hoverlabel/_font.py index f5f60daa11..213ef2f9d4 100644 --- a/plotly/graph_objects/treemap/hoverlabel/_font.py +++ b/plotly/graph_objects/treemap/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/legendgrouptitle/_font.py b/plotly/graph_objects/treemap/legendgrouptitle/_font.py index 47f6f9c6c7..6a915644f9 100644 --- a/plotly/graph_objects/treemap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/treemap/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/treemap/marker/_colorbar.py b/plotly/graph_objects/treemap/marker/_colorbar.py index 7858178304..59bf4ea8f7 100644 --- a/plotly/graph_objects/treemap/marker/_colorbar.py +++ b/plotly/graph_objects/treemap/marker/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/treemap/marker/_line.py b/plotly/graph_objects/treemap/marker/_line.py index 1985da51a6..95428ec64b 100644 --- a/plotly/graph_objects/treemap/marker/_line.py +++ b/plotly/graph_objects/treemap/marker/_line.py @@ -58,8 +58,10 @@ def width(self): Sets the width (in px) of the line enclosing each sector. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/marker/_pad.py b/plotly/graph_objects/treemap/marker/_pad.py index e3a61b8451..32f933a2a3 100644 --- a/plotly/graph_objects/treemap/marker/_pad.py +++ b/plotly/graph_objects/treemap/marker/_pad.py @@ -16,7 +16,8 @@ def b(self): Sets the padding form the bottom (in px). The 'b' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -34,7 +35,8 @@ def l(self): Sets the padding form the left (in px). The 'l' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -52,7 +54,8 @@ def r(self): Sets the padding form the right (in px). The 'r' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -70,7 +73,8 @@ def t(self): Sets the padding form the top (in px). The 't' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/treemap/marker/_pattern.py b/plotly/graph_objects/treemap/marker/_pattern.py index 96c1de4eb7..c7b4ee623d 100644 --- a/plotly/graph_objects/treemap/marker/_pattern.py +++ b/plotly/graph_objects/treemap/marker/_pattern.py @@ -120,7 +120,8 @@ def fgopacity(self): 0.5 when `fillmode` is "overlay". Otherwise, defaults to 1. The 'fgopacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -139,8 +140,10 @@ def fillmode(self): to `bgcolor` or a `fgcolor`. The 'fillmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['replace', 'overlay'] + + - One of the following enumeration values: + + ['replace', 'overlay'] Returns ------- @@ -199,9 +202,12 @@ def shape(self): used for filling the area. The 'shape' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['', '/', '\\', 'x', '-', '|', '+', '.'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['', '/', '\\', 'x', '-', '|', '+', '.'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -238,8 +244,10 @@ def size(self): which corresponds to the interval of repetition of the pattern. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -278,8 +286,10 @@ def solidity(self): shows only the foreground color without pattern. The 'solidity' property is a number and may be specified as: - - An int or float in the interval [0, 1] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [0, 1] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py b/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py index 80d083568c..b8fb2f825b 100644 --- a/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/treemap/marker/colorbar/_title.py b/plotly/graph_objects/treemap/marker/colorbar/_title.py index 200a434b87..80ccf24cd3 100644 --- a/plotly/graph_objects/treemap/marker/colorbar/_title.py +++ b/plotly/graph_objects/treemap/marker/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/treemap/marker/colorbar/title/_font.py b/plotly/graph_objects/treemap/marker/colorbar/title/_font.py index 22649b4356..98a81eee89 100644 --- a/plotly/graph_objects/treemap/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/treemap/marker/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/treemap/pathbar/_textfont.py b/plotly/graph_objects/treemap/pathbar/_textfont.py index 5b590c076b..a5adde1452 100644 --- a/plotly/graph_objects/treemap/pathbar/_textfont.py +++ b/plotly/graph_objects/treemap/pathbar/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/violin/_box.py b/plotly/graph_objects/violin/_box.py index 6fb9e4172e..9a3a352ed1 100644 --- a/plotly/graph_objects/violin/_box.py +++ b/plotly/graph_objects/violin/_box.py @@ -78,7 +78,8 @@ def width(self): the violins. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/violin/_hoverlabel.py b/plotly/graph_objects/violin/_hoverlabel.py index 49a4e405e4..8c5460a6cb 100644 --- a/plotly/graph_objects/violin/_hoverlabel.py +++ b/plotly/graph_objects/violin/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/violin/_line.py b/plotly/graph_objects/violin/_line.py index b4edcea434..4b197432a6 100644 --- a/plotly/graph_objects/violin/_line.py +++ b/plotly/graph_objects/violin/_line.py @@ -38,7 +38,8 @@ def width(self): Sets the width (in px) of line bounding the violin(s). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/violin/_marker.py b/plotly/graph_objects/violin/_marker.py index e121210337..6351572be8 100644 --- a/plotly/graph_objects/violin/_marker.py +++ b/plotly/graph_objects/violin/_marker.py @@ -88,7 +88,8 @@ def opacity(self): Sets the marker opacity. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -128,7 +129,8 @@ def size(self): Sets the marker size (in px). The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -149,96 +151,91 @@ def symbol(self): appending "-open-dot" or "dot-open" to a symbol name. The 'symbol' property is an enumeration that may be specified as: - - One of the following enumeration values: - [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', - 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', - 'square', 101, '101', 'square-open', 201, '201', - 'square-dot', 301, '301', 'square-open-dot', 2, '2', - 'diamond', 102, '102', 'diamond-open', 202, '202', - 'diamond-dot', 302, '302', 'diamond-open-dot', 3, '3', - 'cross', 103, '103', 'cross-open', 203, '203', - 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', 'x', - 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', - 'x-open-dot', 5, '5', 'triangle-up', 105, '105', - 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, - '305', 'triangle-up-open-dot', 6, '6', 'triangle-down', - 106, '106', 'triangle-down-open', 206, '206', - 'triangle-down-dot', 306, '306', 'triangle-down-open-dot', - 7, '7', 'triangle-left', 107, '107', 'triangle-left-open', - 207, '207', 'triangle-left-dot', 307, '307', - 'triangle-left-open-dot', 8, '8', 'triangle-right', 108, - '108', 'triangle-right-open', 208, '208', - 'triangle-right-dot', 308, '308', - 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, - '109', 'triangle-ne-open', 209, '209', 'triangle-ne-dot', - 309, '309', 'triangle-ne-open-dot', 10, '10', - 'triangle-se', 110, '110', 'triangle-se-open', 210, '210', - 'triangle-se-dot', 310, '310', 'triangle-se-open-dot', 11, - '11', 'triangle-sw', 111, '111', 'triangle-sw-open', 211, - '211', 'triangle-sw-dot', 311, '311', - 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, - '112', 'triangle-nw-open', 212, '212', 'triangle-nw-dot', - 312, '312', 'triangle-nw-open-dot', 13, '13', 'pentagon', - 113, '113', 'pentagon-open', 213, '213', 'pentagon-dot', - 313, '313', 'pentagon-open-dot', 14, '14', 'hexagon', 114, - '114', 'hexagon-open', 214, '214', 'hexagon-dot', 314, - '314', 'hexagon-open-dot', 15, '15', 'hexagon2', 115, - '115', 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, - '315', 'hexagon2-open-dot', 16, '16', 'octagon', 116, - '116', 'octagon-open', 216, '216', 'octagon-dot', 316, - '316', 'octagon-open-dot', 17, '17', 'star', 117, '117', - 'star-open', 217, '217', 'star-dot', 317, '317', - 'star-open-dot', 18, '18', 'hexagram', 118, '118', - 'hexagram-open', 218, '218', 'hexagram-dot', 318, '318', - 'hexagram-open-dot', 19, '19', 'star-triangle-up', 119, - '119', 'star-triangle-up-open', 219, '219', - 'star-triangle-up-dot', 319, '319', - 'star-triangle-up-open-dot', 20, '20', - 'star-triangle-down', 120, '120', - 'star-triangle-down-open', 220, '220', - 'star-triangle-down-dot', 320, '320', - 'star-triangle-down-open-dot', 21, '21', 'star-square', - 121, '121', 'star-square-open', 221, '221', - 'star-square-dot', 321, '321', 'star-square-open-dot', 22, - '22', 'star-diamond', 122, '122', 'star-diamond-open', - 222, '222', 'star-diamond-dot', 322, '322', - 'star-diamond-open-dot', 23, '23', 'diamond-tall', 123, - '123', 'diamond-tall-open', 223, '223', - 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', - 24, '24', 'diamond-wide', 124, '124', 'diamond-wide-open', - 224, '224', 'diamond-wide-dot', 324, '324', - 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, - '125', 'hourglass-open', 26, '26', 'bowtie', 126, '126', - 'bowtie-open', 27, '27', 'circle-cross', 127, '127', - 'circle-cross-open', 28, '28', 'circle-x', 128, '128', - 'circle-x-open', 29, '29', 'square-cross', 129, '129', - 'square-cross-open', 30, '30', 'square-x', 130, '130', - 'square-x-open', 31, '31', 'diamond-cross', 131, '131', - 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', - 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', - 'cross-thin-open', 34, '34', 'x-thin', 134, '134', - 'x-thin-open', 35, '35', 'asterisk', 135, '135', - 'asterisk-open', 36, '36', 'hash', 136, '136', - 'hash-open', 236, '236', 'hash-dot', 336, '336', - 'hash-open-dot', 37, '37', 'y-up', 137, '137', - 'y-up-open', 38, '38', 'y-down', 138, '138', - 'y-down-open', 39, '39', 'y-left', 139, '139', - 'y-left-open', 40, '40', 'y-right', 140, '140', - 'y-right-open', 41, '41', 'line-ew', 141, '141', - 'line-ew-open', 42, '42', 'line-ns', 142, '142', - 'line-ns-open', 43, '43', 'line-ne', 143, '143', - 'line-ne-open', 44, '44', 'line-nw', 144, '144', - 'line-nw-open', 45, '45', 'arrow-up', 145, '145', - 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', - 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', - 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', - 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', - 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, - '150', 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', - 151, '151', 'arrow-bar-left-open', 52, '52', - 'arrow-bar-right', 152, '152', 'arrow-bar-right-open', 53, - '53', 'arrow', 153, '153', 'arrow-open', 54, '54', - 'arrow-wide', 154, '154', 'arrow-wide-open'] + + - One of the following enumeration values: + + [0, '0', 'circle', 100, '100', 'circle-open', 200, '200', + 'circle-dot', 300, '300', 'circle-open-dot', 1, '1', 'square', + 101, '101', 'square-open', 201, '201', 'square-dot', 301, + '301', 'square-open-dot', 2, '2', 'diamond', 102, '102', + 'diamond-open', 202, '202', 'diamond-dot', 302, '302', + 'diamond-open-dot', 3, '3', 'cross', 103, '103', 'cross-open', + 203, '203', 'cross-dot', 303, '303', 'cross-open-dot', 4, '4', + 'x', 104, '104', 'x-open', 204, '204', 'x-dot', 304, '304', + 'x-open-dot', 5, '5', 'triangle-up', 105, '105', + 'triangle-up-open', 205, '205', 'triangle-up-dot', 305, '305', + 'triangle-up-open-dot', 6, '6', 'triangle-down', 106, '106', + 'triangle-down-open', 206, '206', 'triangle-down-dot', 306, + '306', 'triangle-down-open-dot', 7, '7', 'triangle-left', 107, + '107', 'triangle-left-open', 207, '207', 'triangle-left-dot', + 307, '307', 'triangle-left-open-dot', 8, '8', + 'triangle-right', 108, '108', 'triangle-right-open', 208, + '208', 'triangle-right-dot', 308, '308', + 'triangle-right-open-dot', 9, '9', 'triangle-ne', 109, '109', + 'triangle-ne-open', 209, '209', 'triangle-ne-dot', 309, '309', + 'triangle-ne-open-dot', 10, '10', 'triangle-se', 110, '110', + 'triangle-se-open', 210, '210', 'triangle-se-dot', 310, '310', + 'triangle-se-open-dot', 11, '11', 'triangle-sw', 111, '111', + 'triangle-sw-open', 211, '211', 'triangle-sw-dot', 311, '311', + 'triangle-sw-open-dot', 12, '12', 'triangle-nw', 112, '112', + 'triangle-nw-open', 212, '212', 'triangle-nw-dot', 312, '312', + 'triangle-nw-open-dot', 13, '13', 'pentagon', 113, '113', + 'pentagon-open', 213, '213', 'pentagon-dot', 313, '313', + 'pentagon-open-dot', 14, '14', 'hexagon', 114, '114', + 'hexagon-open', 214, '214', 'hexagon-dot', 314, '314', + 'hexagon-open-dot', 15, '15', 'hexagon2', 115, '115', + 'hexagon2-open', 215, '215', 'hexagon2-dot', 315, '315', + 'hexagon2-open-dot', 16, '16', 'octagon', 116, '116', + 'octagon-open', 216, '216', 'octagon-dot', 316, '316', + 'octagon-open-dot', 17, '17', 'star', 117, '117', 'star-open', + 217, '217', 'star-dot', 317, '317', 'star-open-dot', 18, '18', + 'hexagram', 118, '118', 'hexagram-open', 218, '218', + 'hexagram-dot', 318, '318', 'hexagram-open-dot', 19, '19', + 'star-triangle-up', 119, '119', 'star-triangle-up-open', 219, + '219', 'star-triangle-up-dot', 319, '319', + 'star-triangle-up-open-dot', 20, '20', 'star-triangle-down', + 120, '120', 'star-triangle-down-open', 220, '220', + 'star-triangle-down-dot', 320, '320', + 'star-triangle-down-open-dot', 21, '21', 'star-square', 121, + '121', 'star-square-open', 221, '221', 'star-square-dot', 321, + '321', 'star-square-open-dot', 22, '22', 'star-diamond', 122, + '122', 'star-diamond-open', 222, '222', 'star-diamond-dot', + 322, '322', 'star-diamond-open-dot', 23, '23', 'diamond-tall', + 123, '123', 'diamond-tall-open', 223, '223', + 'diamond-tall-dot', 323, '323', 'diamond-tall-open-dot', 24, + '24', 'diamond-wide', 124, '124', 'diamond-wide-open', 224, + '224', 'diamond-wide-dot', 324, '324', + 'diamond-wide-open-dot', 25, '25', 'hourglass', 125, '125', + 'hourglass-open', 26, '26', 'bowtie', 126, '126', + 'bowtie-open', 27, '27', 'circle-cross', 127, '127', + 'circle-cross-open', 28, '28', 'circle-x', 128, '128', + 'circle-x-open', 29, '29', 'square-cross', 129, '129', + 'square-cross-open', 30, '30', 'square-x', 130, '130', + 'square-x-open', 31, '31', 'diamond-cross', 131, '131', + 'diamond-cross-open', 32, '32', 'diamond-x', 132, '132', + 'diamond-x-open', 33, '33', 'cross-thin', 133, '133', + 'cross-thin-open', 34, '34', 'x-thin', 134, '134', + 'x-thin-open', 35, '35', 'asterisk', 135, '135', + 'asterisk-open', 36, '36', 'hash', 136, '136', 'hash-open', + 236, '236', 'hash-dot', 336, '336', 'hash-open-dot', 37, '37', + 'y-up', 137, '137', 'y-up-open', 38, '38', 'y-down', 138, + '138', 'y-down-open', 39, '39', 'y-left', 139, '139', + 'y-left-open', 40, '40', 'y-right', 140, '140', + 'y-right-open', 41, '41', 'line-ew', 141, '141', + 'line-ew-open', 42, '42', 'line-ns', 142, '142', + 'line-ns-open', 43, '43', 'line-ne', 143, '143', + 'line-ne-open', 44, '44', 'line-nw', 144, '144', + 'line-nw-open', 45, '45', 'arrow-up', 145, '145', + 'arrow-up-open', 46, '46', 'arrow-down', 146, '146', + 'arrow-down-open', 47, '47', 'arrow-left', 147, '147', + 'arrow-left-open', 48, '48', 'arrow-right', 148, '148', + 'arrow-right-open', 49, '49', 'arrow-bar-up', 149, '149', + 'arrow-bar-up-open', 50, '50', 'arrow-bar-down', 150, '150', + 'arrow-bar-down-open', 51, '51', 'arrow-bar-left', 151, '151', + 'arrow-bar-left-open', 52, '52', 'arrow-bar-right', 152, + '152', 'arrow-bar-right-open', 53, '53', 'arrow', 153, '153', + 'arrow-open', 54, '54', 'arrow-wide', 154, '154', + 'arrow-wide-open'] Returns ------- diff --git a/plotly/graph_objects/violin/_meanline.py b/plotly/graph_objects/violin/_meanline.py index 50defccb42..579c3cbeb1 100644 --- a/plotly/graph_objects/violin/_meanline.py +++ b/plotly/graph_objects/violin/_meanline.py @@ -59,7 +59,8 @@ def width(self): Sets the mean line width. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/violin/_stream.py b/plotly/graph_objects/violin/_stream.py index 9dea8017e2..be39243f12 100644 --- a/plotly/graph_objects/violin/_stream.py +++ b/plotly/graph_objects/violin/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/violin/box/_line.py b/plotly/graph_objects/violin/box/_line.py index a9fab3c05c..d8d47a5606 100644 --- a/plotly/graph_objects/violin/box/_line.py +++ b/plotly/graph_objects/violin/box/_line.py @@ -38,7 +38,8 @@ def width(self): Sets the inner box plot bounding line width. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/violin/hoverlabel/_font.py b/plotly/graph_objects/violin/hoverlabel/_font.py index b1e8f06226..e6a7f6d374 100644 --- a/plotly/graph_objects/violin/hoverlabel/_font.py +++ b/plotly/graph_objects/violin/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/violin/legendgrouptitle/_font.py b/plotly/graph_objects/violin/legendgrouptitle/_font.py index e80416b24e..2e8dfd7f2a 100644 --- a/plotly/graph_objects/violin/legendgrouptitle/_font.py +++ b/plotly/graph_objects/violin/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/violin/marker/_line.py b/plotly/graph_objects/violin/marker/_line.py index 6f0b432561..f77fbfadad 100644 --- a/plotly/graph_objects/violin/marker/_line.py +++ b/plotly/graph_objects/violin/marker/_line.py @@ -65,7 +65,8 @@ def outlierwidth(self): points. The 'outlierwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -83,7 +84,8 @@ def width(self): Sets the width (in px) of the lines bounding the marker points. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/violin/selected/_marker.py b/plotly/graph_objects/violin/selected/_marker.py index 89ed733219..27b9706bc5 100644 --- a/plotly/graph_objects/violin/selected/_marker.py +++ b/plotly/graph_objects/violin/selected/_marker.py @@ -38,7 +38,8 @@ def opacity(self): Sets the marker opacity of selected points. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -56,7 +57,8 @@ def size(self): Sets the marker size of selected points. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/violin/unselected/_marker.py b/plotly/graph_objects/violin/unselected/_marker.py index 5bb639f684..d8d086a226 100644 --- a/plotly/graph_objects/violin/unselected/_marker.py +++ b/plotly/graph_objects/violin/unselected/_marker.py @@ -40,7 +40,8 @@ def opacity(self): a selection exists. The 'opacity' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -59,7 +60,8 @@ def size(self): selection exists. The 'size' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/volume/_colorbar.py b/plotly/graph_objects/volume/_colorbar.py index 6ad8dd6e9b..78a0a6a7d9 100644 --- a/plotly/graph_objects/volume/_colorbar.py +++ b/plotly/graph_objects/volume/_colorbar.py @@ -110,7 +110,8 @@ def borderwidth(self): Sets the width (in px) or the border enclosing this color bar. The 'borderwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -168,8 +169,10 @@ def exponentformat(self): "B", 1B. The 'exponentformat' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['none', 'e', 'E', 'power', 'SI', 'B'] + + - One of the following enumeration values: + + ['none', 'e', 'E', 'power', 'SI', 'B'] Returns ------- @@ -214,7 +217,8 @@ def len(self): length minus the padding on both ends. The 'len' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -234,8 +238,10 @@ def lenmode(self): "fraction" or in *pixels. Use `len` to set the value. The 'lenmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -254,7 +260,8 @@ def minexponent(self): has an effect when `tickformat` is "SI" or "B". The 'minexponent' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -294,8 +301,10 @@ def orientation(self): Sets the orientation of the colorbar. The 'orientation' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['h', 'v'] + + - One of the following enumeration values: + + ['h', 'v'] Returns ------- @@ -335,7 +344,8 @@ def outlinewidth(self): Sets the width (in px) of the axis line. The 'outlinewidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -374,8 +384,10 @@ def showexponent(self): no exponents appear. The 'showexponent' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -414,8 +426,10 @@ def showtickprefix(self): "none", tick prefixes are hidden. The 'showtickprefix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -433,8 +447,10 @@ def showticksuffix(self): Same as `showtickprefix` but for tick suffixes. The 'showticksuffix' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['all', 'first', 'last', 'none'] + + - One of the following enumeration values: + + ['all', 'first', 'last', 'none'] Returns ------- @@ -453,7 +469,8 @@ def thickness(self): size of the padding, ticks and labels. The 'thickness' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -473,8 +490,10 @@ def thicknessmode(self): "fraction" or in "pixels". Use `thickness` to set the value. The 'thicknessmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['fraction', 'pixels'] + + - One of the following enumeration values: + + ['fraction', 'pixels'] Returns ------- @@ -656,8 +675,10 @@ def ticklabeloverflow(self): default is *hide past div*. The 'ticklabeloverflow' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['allow', 'hide past div', 'hide past domain'] + + - One of the following enumeration values: + + ['allow', 'hide past div', 'hide past domain'] Returns ------- @@ -677,10 +698,12 @@ def ticklabelposition(self): and bottom when `orientation` is "v". The 'ticklabelposition' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', 'outside top', 'inside top', - 'outside left', 'inside left', 'outside right', 'inside - right', 'outside bottom', 'inside bottom'] + + - One of the following enumeration values: + + ['outside', 'inside', 'outside top', 'inside top', 'outside + left', 'inside left', 'outside right', 'inside right', + 'outside bottom', 'inside bottom'] Returns ------- @@ -722,7 +745,8 @@ def ticklen(self): Sets the tick length (in px). The 'ticklen' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -746,8 +770,10 @@ def tickmode(self): is the default value if `tickvals` is provided). The 'tickmode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['auto', 'linear', 'array'] + + - One of the following enumeration values: + + ['auto', 'linear', 'array'] Returns ------- @@ -786,8 +812,10 @@ def ticks(self): drawn outside (inside) the axis lines. The 'ticks' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['outside', 'inside', ''] + + - One of the following enumeration values: + + ['outside', 'inside', ''] Returns ------- @@ -899,7 +927,8 @@ def tickwidth(self): Sets the tick width (in px). The 'tickwidth' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -943,7 +972,7 @@ def x(self): The 'x' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -964,8 +993,10 @@ def xanchor(self): "center" when `orientation` is "h". The 'xanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'center', 'right'] + + - One of the following enumeration values: + + ['left', 'center', 'right'] Returns ------- @@ -983,7 +1014,8 @@ def xpad(self): Sets the amount of padding (in px) along the x direction. The 'xpad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1003,8 +1035,10 @@ def xref(self): plotting area only. The 'xref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- @@ -1029,7 +1063,7 @@ def y(self): The 'y' property is a number and may be specified as: - - An int or float + - An int or float Returns ------- @@ -1050,8 +1084,10 @@ def yanchor(self): and "bottom" when `orientation` is "h". The 'yanchor' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['top', 'middle', 'bottom'] + + - One of the following enumeration values: + + ['top', 'middle', 'bottom'] Returns ------- @@ -1069,7 +1105,8 @@ def ypad(self): Sets the amount of padding (in px) along the y direction. The 'ypad' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- @@ -1089,8 +1126,10 @@ def yref(self): plotting area only. The 'yref' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['container', 'paper'] + + - One of the following enumeration values: + + ['container', 'paper'] Returns ------- diff --git a/plotly/graph_objects/volume/_contour.py b/plotly/graph_objects/volume/_contour.py index e1cabb5851..ec36c1144b 100644 --- a/plotly/graph_objects/volume/_contour.py +++ b/plotly/graph_objects/volume/_contour.py @@ -56,7 +56,8 @@ def width(self): Sets the width of the contour lines. The 'width' property is a number and may be specified as: - - An int or float in the interval [1, 16] + + - An int or float in the interval [1, 16] Returns ------- diff --git a/plotly/graph_objects/volume/_hoverlabel.py b/plotly/graph_objects/volume/_hoverlabel.py index bc5de072d5..83f83a3b5f 100644 --- a/plotly/graph_objects/volume/_hoverlabel.py +++ b/plotly/graph_objects/volume/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/volume/_lighting.py b/plotly/graph_objects/volume/_lighting.py index c11c440343..a942345010 100644 --- a/plotly/graph_objects/volume/_lighting.py +++ b/plotly/graph_objects/volume/_lighting.py @@ -25,7 +25,8 @@ def ambient(self): out the image. The 'ambient' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -44,7 +45,8 @@ def diffuse(self): range of angles. The 'diffuse' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -63,7 +65,8 @@ def facenormalsepsilon(self): from degenerate geometry. The 'facenormalsepsilon' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -83,7 +86,8 @@ def fresnel(self): of the paper (almost 90 degrees), causing shine. The 'fresnel' property is a number and may be specified as: - - An int or float in the interval [0, 5] + + - An int or float in the interval [0, 5] Returns ------- @@ -102,7 +106,8 @@ def roughness(self): and less contrasty the shine. The 'roughness' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- @@ -121,7 +126,8 @@ def specular(self): single direction, causing shine. The 'specular' property is a number and may be specified as: - - An int or float in the interval [0, 2] + + - An int or float in the interval [0, 2] Returns ------- @@ -140,7 +146,8 @@ def vertexnormalsepsilon(self): arising from degenerate geometry. The 'vertexnormalsepsilon' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/volume/_lightposition.py b/plotly/graph_objects/volume/_lightposition.py index 80f0f4a10b..3f9ded094d 100644 --- a/plotly/graph_objects/volume/_lightposition.py +++ b/plotly/graph_objects/volume/_lightposition.py @@ -16,7 +16,8 @@ def x(self): Numeric vector, representing the X coordinate for each vertex. The 'x' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- @@ -34,7 +35,8 @@ def y(self): Numeric vector, representing the Y coordinate for each vertex. The 'y' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- @@ -52,7 +54,8 @@ def z(self): Numeric vector, representing the Z coordinate for each vertex. The 'z' property is a number and may be specified as: - - An int or float in the interval [-100000, 100000] + + - An int or float in the interval [-100000, 100000] Returns ------- diff --git a/plotly/graph_objects/volume/_spaceframe.py b/plotly/graph_objects/volume/_spaceframe.py index 850201305d..2eadeea47e 100644 --- a/plotly/graph_objects/volume/_spaceframe.py +++ b/plotly/graph_objects/volume/_spaceframe.py @@ -19,7 +19,8 @@ def fill(self): openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/volume/_stream.py b/plotly/graph_objects/volume/_stream.py index 9fedc6bf58..5f5fe13aa1 100644 --- a/plotly/graph_objects/volume/_stream.py +++ b/plotly/graph_objects/volume/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/volume/_surface.py b/plotly/graph_objects/volume/_surface.py index 0f4c3331ea..64a7ad2f48 100644 --- a/plotly/graph_objects/volume/_surface.py +++ b/plotly/graph_objects/volume/_surface.py @@ -40,7 +40,8 @@ def fill(self): allow the creation of openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/volume/caps/_x.py b/plotly/graph_objects/volume/caps/_x.py index 714c17588a..d25c11d7c3 100644 --- a/plotly/graph_objects/volume/caps/_x.py +++ b/plotly/graph_objects/volume/caps/_x.py @@ -19,7 +19,8 @@ def fill(self): the creation of openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/volume/caps/_y.py b/plotly/graph_objects/volume/caps/_y.py index 4a56ff0635..b0a8570383 100644 --- a/plotly/graph_objects/volume/caps/_y.py +++ b/plotly/graph_objects/volume/caps/_y.py @@ -19,7 +19,8 @@ def fill(self): the creation of openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/volume/caps/_z.py b/plotly/graph_objects/volume/caps/_z.py index de7072762b..f8b3b96693 100644 --- a/plotly/graph_objects/volume/caps/_z.py +++ b/plotly/graph_objects/volume/caps/_z.py @@ -19,7 +19,8 @@ def fill(self): the creation of openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/volume/colorbar/_tickfont.py b/plotly/graph_objects/volume/colorbar/_tickfont.py index 7f20927717..88a25db22e 100644 --- a/plotly/graph_objects/volume/colorbar/_tickfont.py +++ b/plotly/graph_objects/volume/colorbar/_tickfont.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/volume/colorbar/_title.py b/plotly/graph_objects/volume/colorbar/_title.py index 8bbb6185de..3ef63d036b 100644 --- a/plotly/graph_objects/volume/colorbar/_title.py +++ b/plotly/graph_objects/volume/colorbar/_title.py @@ -39,8 +39,10 @@ def side(self): defaults to "right" when `orientation` if "h". The 'side' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['right', 'top', 'bottom'] + + - One of the following enumeration values: + + ['right', 'top', 'bottom'] Returns ------- diff --git a/plotly/graph_objects/volume/colorbar/title/_font.py b/plotly/graph_objects/volume/colorbar/title/_font.py index f047fb52ed..e057936679 100644 --- a/plotly/graph_objects/volume/colorbar/title/_font.py +++ b/plotly/graph_objects/volume/colorbar/title/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/volume/hoverlabel/_font.py b/plotly/graph_objects/volume/hoverlabel/_font.py index dceca5fff1..36d70e3d18 100644 --- a/plotly/graph_objects/volume/hoverlabel/_font.py +++ b/plotly/graph_objects/volume/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/volume/legendgrouptitle/_font.py b/plotly/graph_objects/volume/legendgrouptitle/_font.py index a3dd830597..3fa2cf2984 100644 --- a/plotly/graph_objects/volume/legendgrouptitle/_font.py +++ b/plotly/graph_objects/volume/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/volume/slices/_x.py b/plotly/graph_objects/volume/slices/_x.py index f7b703636a..74f81ddaea 100644 --- a/plotly/graph_objects/volume/slices/_x.py +++ b/plotly/graph_objects/volume/slices/_x.py @@ -19,7 +19,8 @@ def fill(self): the creation of openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/volume/slices/_y.py b/plotly/graph_objects/volume/slices/_y.py index 07d7b49c97..f0d4bc3b10 100644 --- a/plotly/graph_objects/volume/slices/_y.py +++ b/plotly/graph_objects/volume/slices/_y.py @@ -19,7 +19,8 @@ def fill(self): the creation of openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/volume/slices/_z.py b/plotly/graph_objects/volume/slices/_z.py index 3117404b62..b0bf0cbca7 100644 --- a/plotly/graph_objects/volume/slices/_z.py +++ b/plotly/graph_objects/volume/slices/_z.py @@ -19,7 +19,8 @@ def fill(self): the creation of openings parallel to the edges. The 'fill' property is a number and may be specified as: - - An int or float in the interval [0, 1] + + - An int or float in the interval [0, 1] Returns ------- diff --git a/plotly/graph_objects/waterfall/_connector.py b/plotly/graph_objects/waterfall/_connector.py index a76c69fb9e..6c0795012e 100644 --- a/plotly/graph_objects/waterfall/_connector.py +++ b/plotly/graph_objects/waterfall/_connector.py @@ -35,8 +35,10 @@ def mode(self): Sets the shape of connector lines. The 'mode' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['spanning', 'between'] + + - One of the following enumeration values: + + ['spanning', 'between'] Returns ------- diff --git a/plotly/graph_objects/waterfall/_hoverlabel.py b/plotly/graph_objects/waterfall/_hoverlabel.py index 8d3af23054..636ca43867 100644 --- a/plotly/graph_objects/waterfall/_hoverlabel.py +++ b/plotly/graph_objects/waterfall/_hoverlabel.py @@ -28,9 +28,12 @@ def align(self): more two or more lines The 'align' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['left', 'right', 'auto'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['left', 'right', 'auto'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/_insidetextfont.py b/plotly/graph_objects/waterfall/_insidetextfont.py index 9e97dc0662..6cbf1e7381 100644 --- a/plotly/graph_objects/waterfall/_insidetextfont.py +++ b/plotly/graph_objects/waterfall/_insidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/_outsidetextfont.py b/plotly/graph_objects/waterfall/_outsidetextfont.py index abe8fee90b..f44777412b 100644 --- a/plotly/graph_objects/waterfall/_outsidetextfont.py +++ b/plotly/graph_objects/waterfall/_outsidetextfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/_stream.py b/plotly/graph_objects/waterfall/_stream.py index 9d9ec7685d..9de5f2b333 100644 --- a/plotly/graph_objects/waterfall/_stream.py +++ b/plotly/graph_objects/waterfall/_stream.py @@ -18,7 +18,8 @@ def maxpoints(self): 50 points will be displayed on the plot. The 'maxpoints' property is a number and may be specified as: - - An int or float in the interval [0, 10000] + + - An int or float in the interval [0, 10000] Returns ------- diff --git a/plotly/graph_objects/waterfall/_textfont.py b/plotly/graph_objects/waterfall/_textfont.py index 27c9e2e52c..1a42900e02 100644 --- a/plotly/graph_objects/waterfall/_textfont.py +++ b/plotly/graph_objects/waterfall/_textfont.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/connector/_line.py b/plotly/graph_objects/waterfall/connector/_line.py index 12acc20057..2f3b75123a 100644 --- a/plotly/graph_objects/waterfall/connector/_line.py +++ b/plotly/graph_objects/waterfall/connector/_line.py @@ -62,7 +62,8 @@ def width(self): Sets the line width (in px). The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/waterfall/decreasing/marker/_line.py b/plotly/graph_objects/waterfall/decreasing/marker/_line.py index 33a4fa50d0..b00dcd5024 100644 --- a/plotly/graph_objects/waterfall/decreasing/marker/_line.py +++ b/plotly/graph_objects/waterfall/decreasing/marker/_line.py @@ -38,7 +38,8 @@ def width(self): Sets the line width of all decreasing values. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/waterfall/hoverlabel/_font.py b/plotly/graph_objects/waterfall/hoverlabel/_font.py index 6539976b36..04bde14a8c 100644 --- a/plotly/graph_objects/waterfall/hoverlabel/_font.py +++ b/plotly/graph_objects/waterfall/hoverlabel/_font.py @@ -197,8 +197,10 @@ def shadowsrc(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] - - A tuple, list, or one-dimensional numpy array of the above + + - An int or float in the interval [1, inf] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -235,9 +237,12 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'italic'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -275,9 +280,12 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -313,10 +321,13 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] - - A tuple, list, or one-dimensional numpy array of the above + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/increasing/marker/_line.py b/plotly/graph_objects/waterfall/increasing/marker/_line.py index 263b9269fa..9aa816b53e 100644 --- a/plotly/graph_objects/waterfall/increasing/marker/_line.py +++ b/plotly/graph_objects/waterfall/increasing/marker/_line.py @@ -38,7 +38,8 @@ def width(self): Sets the line width of all increasing values. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- diff --git a/plotly/graph_objects/waterfall/legendgrouptitle/_font.py b/plotly/graph_objects/waterfall/legendgrouptitle/_font.py index efc8adad6c..56d6a93776 100644 --- a/plotly/graph_objects/waterfall/legendgrouptitle/_font.py +++ b/plotly/graph_objects/waterfall/legendgrouptitle/_font.py @@ -111,7 +111,8 @@ def shadow(self, val): def size(self): """ The 'size' property is a number and may be specified as: - - An int or float in the interval [1, inf] + + - An int or float in the interval [1, inf] Returns ------- @@ -130,8 +131,10 @@ def style(self): face from its family. The 'style' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'italic'] + + - One of the following enumeration values: + + ['normal', 'italic'] Returns ------- @@ -151,8 +154,10 @@ def textcase(self): capitalized. The 'textcase' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'word caps', 'upper', 'lower'] + + - One of the following enumeration values: + + ['normal', 'word caps', 'upper', 'lower'] Returns ------- @@ -170,9 +175,11 @@ def variant(self): Sets the variant of the font. The 'variant' property is an enumeration that may be specified as: - - One of the following enumeration values: - ['normal', 'small-caps', 'all-small-caps', - 'all-petite-caps', 'petite-caps', 'unicase'] + + - One of the following enumeration values: + + ['normal', 'small-caps', 'all-small-caps', 'all-petite-caps', + 'petite-caps', 'unicase'] Returns ------- diff --git a/plotly/graph_objects/waterfall/totals/marker/_line.py b/plotly/graph_objects/waterfall/totals/marker/_line.py index 2acc4590bc..2e855cb20f 100644 --- a/plotly/graph_objects/waterfall/totals/marker/_line.py +++ b/plotly/graph_objects/waterfall/totals/marker/_line.py @@ -38,7 +38,8 @@ def width(self): Sets the line width of all intermediate sums and total values. The 'width' property is a number and may be specified as: - - An int or float in the interval [0, inf] + + - An int or float in the interval [0, inf] Returns ------- From 683643c95edbb7c93452a54c5afb843cf45e625f Mon Sep 17 00:00:00 2001 From: daexs Date: Mon, 18 Aug 2025 10:35:39 -0400 Subject: [PATCH 09/18] Fixed list format in 'Dash' and 'String' properties. --- _plotly_utils/basevalidators.py | 49 ++++++----- plotly/graph_objects/_bar.py | 78 +++++++++++------ plotly/graph_objects/_barpolar.py | 45 ++++++---- plotly/graph_objects/_box.py | 69 ++++++++++----- plotly/graph_objects/_candlestick.py | 48 +++++++---- plotly/graph_objects/_carpet.py | 18 ++-- plotly/graph_objects/_choropleth.py | 51 +++++++---- plotly/graph_objects/_choroplethmap.py | 57 ++++++++----- plotly/graph_objects/_choroplethmapbox.py | 57 ++++++++----- plotly/graph_objects/_cone.py | 81 ++++++++++++------ plotly/graph_objects/_contour.py | 51 +++++++---- plotly/graph_objects/_contourcarpet.py | 24 ++++-- plotly/graph_objects/_densitymap.py | 51 +++++++---- plotly/graph_objects/_densitymapbox.py | 51 +++++++---- plotly/graph_objects/_frame.py | 18 ++-- plotly/graph_objects/_funnel.py | 78 +++++++++++------ plotly/graph_objects/_funnelarea.py | 51 +++++++---- plotly/graph_objects/_heatmap.py | 51 +++++++---- plotly/graph_objects/_histogram.py | 81 ++++++++++++------ plotly/graph_objects/_histogram2d.py | 69 ++++++++++----- plotly/graph_objects/_histogram2dcontour.py | 69 ++++++++++----- plotly/graph_objects/_icicle.py | 39 ++++++--- plotly/graph_objects/_image.py | 27 ++++-- plotly/graph_objects/_indicator.py | 12 ++- plotly/graph_objects/_isosurface.py | 69 ++++++++++----- plotly/graph_objects/_layout.py | 6 +- plotly/graph_objects/_mesh3d.py | 63 +++++++++----- plotly/graph_objects/_ohlc.py | 48 +++++++---- plotly/graph_objects/_parcats.py | 18 ++-- plotly/graph_objects/_parcoords.py | 12 ++- plotly/graph_objects/_pie.py | 51 +++++++---- plotly/graph_objects/_sankey.py | 24 ++++-- plotly/graph_objects/_scatter.py | 84 ++++++++++++------- plotly/graph_objects/_scatter3d.py | 72 ++++++++++------ plotly/graph_objects/_scattercarpet.py | 60 ++++++++----- plotly/graph_objects/_scattergeo.py | 60 ++++++++----- plotly/graph_objects/_scattergl.py | 66 ++++++++++----- plotly/graph_objects/_scattermap.py | 60 ++++++++----- plotly/graph_objects/_scattermapbox.py | 60 ++++++++----- plotly/graph_objects/_scatterpolar.py | 54 ++++++++---- plotly/graph_objects/_scatterpolargl.py | 54 ++++++++---- plotly/graph_objects/_scattersmith.py | 54 ++++++++---- plotly/graph_objects/_scatterternary.py | 54 ++++++++---- plotly/graph_objects/_splom.py | 57 ++++++++----- plotly/graph_objects/_streamtube.py | 75 +++++++++++------ plotly/graph_objects/_sunburst.py | 39 ++++++--- plotly/graph_objects/_surface.py | 63 +++++++++----- plotly/graph_objects/_table.py | 12 ++- plotly/graph_objects/_treemap.py | 39 ++++++--- plotly/graph_objects/_violin.py | 75 +++++++++++------ plotly/graph_objects/_volume.py | 69 ++++++++++----- plotly/graph_objects/_waterfall.py | 78 +++++++++++------ plotly/graph_objects/bar/_insidetextfont.py | 15 ++-- plotly/graph_objects/bar/_legendgrouptitle.py | 6 +- plotly/graph_objects/bar/_outsidetextfont.py | 15 ++-- plotly/graph_objects/bar/_stream.py | 3 +- plotly/graph_objects/bar/_textfont.py | 15 ++-- plotly/graph_objects/bar/hoverlabel/_font.py | 15 ++-- .../bar/legendgrouptitle/_font.py | 9 +- plotly/graph_objects/bar/marker/_colorbar.py | 18 ++-- plotly/graph_objects/bar/marker/_pattern.py | 9 +- .../bar/marker/colorbar/_tickfont.py | 9 +- .../bar/marker/colorbar/_tickformatstop.py | 18 ++-- .../bar/marker/colorbar/_title.py | 6 +- .../bar/marker/colorbar/title/_font.py | 9 +- .../barpolar/_legendgrouptitle.py | 6 +- plotly/graph_objects/barpolar/_stream.py | 3 +- .../barpolar/hoverlabel/_font.py | 15 ++-- .../barpolar/legendgrouptitle/_font.py | 9 +- .../barpolar/marker/_colorbar.py | 18 ++-- .../graph_objects/barpolar/marker/_pattern.py | 9 +- .../barpolar/marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../barpolar/marker/colorbar/_title.py | 6 +- .../barpolar/marker/colorbar/title/_font.py | 9 +- plotly/graph_objects/box/_legendgrouptitle.py | 6 +- plotly/graph_objects/box/_stream.py | 3 +- plotly/graph_objects/box/hoverlabel/_font.py | 15 ++-- .../box/legendgrouptitle/_font.py | 9 +- .../candlestick/_legendgrouptitle.py | 6 +- plotly/graph_objects/candlestick/_stream.py | 3 +- .../candlestick/hoverlabel/_font.py | 15 ++-- .../candlestick/legendgrouptitle/_font.py | 9 +- plotly/graph_objects/carpet/_aaxis.py | 54 ++++++++---- plotly/graph_objects/carpet/_baxis.py | 54 ++++++++---- plotly/graph_objects/carpet/_font.py | 9 +- .../graph_objects/carpet/_legendgrouptitle.py | 6 +- plotly/graph_objects/carpet/_stream.py | 3 +- .../graph_objects/carpet/aaxis/_tickfont.py | 9 +- .../carpet/aaxis/_tickformatstop.py | 18 ++-- plotly/graph_objects/carpet/aaxis/_title.py | 6 +- .../graph_objects/carpet/aaxis/title/_font.py | 9 +- .../graph_objects/carpet/baxis/_tickfont.py | 9 +- .../carpet/baxis/_tickformatstop.py | 18 ++-- plotly/graph_objects/carpet/baxis/_title.py | 6 +- .../graph_objects/carpet/baxis/title/_font.py | 9 +- .../carpet/legendgrouptitle/_font.py | 9 +- plotly/graph_objects/choropleth/_colorbar.py | 18 ++-- .../choropleth/_legendgrouptitle.py | 6 +- plotly/graph_objects/choropleth/_stream.py | 3 +- .../choropleth/colorbar/_tickfont.py | 9 +- .../choropleth/colorbar/_tickformatstop.py | 18 ++-- .../choropleth/colorbar/_title.py | 6 +- .../choropleth/colorbar/title/_font.py | 9 +- .../choropleth/hoverlabel/_font.py | 15 ++-- .../choropleth/legendgrouptitle/_font.py | 9 +- .../graph_objects/choroplethmap/_colorbar.py | 18 ++-- .../choroplethmap/_legendgrouptitle.py | 6 +- plotly/graph_objects/choroplethmap/_stream.py | 3 +- .../choroplethmap/colorbar/_tickfont.py | 9 +- .../choroplethmap/colorbar/_tickformatstop.py | 18 ++-- .../choroplethmap/colorbar/_title.py | 6 +- .../choroplethmap/colorbar/title/_font.py | 9 +- .../choroplethmap/hoverlabel/_font.py | 15 ++-- .../choroplethmap/legendgrouptitle/_font.py | 9 +- .../choroplethmapbox/_colorbar.py | 18 ++-- .../choroplethmapbox/_legendgrouptitle.py | 6 +- .../graph_objects/choroplethmapbox/_stream.py | 3 +- .../choroplethmapbox/colorbar/_tickfont.py | 9 +- .../colorbar/_tickformatstop.py | 18 ++-- .../choroplethmapbox/colorbar/_title.py | 6 +- .../choroplethmapbox/colorbar/title/_font.py | 9 +- .../choroplethmapbox/hoverlabel/_font.py | 15 ++-- .../legendgrouptitle/_font.py | 9 +- plotly/graph_objects/cone/_colorbar.py | 18 ++-- .../graph_objects/cone/_legendgrouptitle.py | 6 +- plotly/graph_objects/cone/_stream.py | 3 +- .../graph_objects/cone/colorbar/_tickfont.py | 9 +- .../cone/colorbar/_tickformatstop.py | 18 ++-- plotly/graph_objects/cone/colorbar/_title.py | 6 +- .../cone/colorbar/title/_font.py | 9 +- plotly/graph_objects/cone/hoverlabel/_font.py | 15 ++-- .../cone/legendgrouptitle/_font.py | 9 +- plotly/graph_objects/contour/_colorbar.py | 18 ++-- plotly/graph_objects/contour/_contours.py | 6 +- .../contour/_legendgrouptitle.py | 6 +- plotly/graph_objects/contour/_line.py | 12 ++- plotly/graph_objects/contour/_stream.py | 3 +- plotly/graph_objects/contour/_textfont.py | 9 +- .../contour/colorbar/_tickfont.py | 9 +- .../contour/colorbar/_tickformatstop.py | 18 ++-- .../graph_objects/contour/colorbar/_title.py | 6 +- .../contour/colorbar/title/_font.py | 9 +- .../contour/contours/_labelfont.py | 9 +- .../graph_objects/contour/hoverlabel/_font.py | 15 ++-- .../contour/legendgrouptitle/_font.py | 9 +- .../graph_objects/contourcarpet/_colorbar.py | 18 ++-- .../graph_objects/contourcarpet/_contours.py | 6 +- .../contourcarpet/_legendgrouptitle.py | 6 +- plotly/graph_objects/contourcarpet/_line.py | 12 ++- plotly/graph_objects/contourcarpet/_stream.py | 3 +- .../contourcarpet/colorbar/_tickfont.py | 9 +- .../contourcarpet/colorbar/_tickformatstop.py | 18 ++-- .../contourcarpet/colorbar/_title.py | 6 +- .../contourcarpet/colorbar/title/_font.py | 9 +- .../contourcarpet/contours/_labelfont.py | 9 +- .../contourcarpet/legendgrouptitle/_font.py | 9 +- plotly/graph_objects/densitymap/_colorbar.py | 18 ++-- .../densitymap/_legendgrouptitle.py | 6 +- plotly/graph_objects/densitymap/_stream.py | 3 +- .../densitymap/colorbar/_tickfont.py | 9 +- .../densitymap/colorbar/_tickformatstop.py | 18 ++-- .../densitymap/colorbar/_title.py | 6 +- .../densitymap/colorbar/title/_font.py | 9 +- .../densitymap/hoverlabel/_font.py | 15 ++-- .../densitymap/legendgrouptitle/_font.py | 9 +- .../graph_objects/densitymapbox/_colorbar.py | 18 ++-- .../densitymapbox/_legendgrouptitle.py | 6 +- plotly/graph_objects/densitymapbox/_stream.py | 3 +- .../densitymapbox/colorbar/_tickfont.py | 9 +- .../densitymapbox/colorbar/_tickformatstop.py | 18 ++-- .../densitymapbox/colorbar/_title.py | 6 +- .../densitymapbox/colorbar/title/_font.py | 9 +- .../densitymapbox/hoverlabel/_font.py | 15 ++-- .../densitymapbox/legendgrouptitle/_font.py | 9 +- .../graph_objects/funnel/_insidetextfont.py | 15 ++-- .../graph_objects/funnel/_legendgrouptitle.py | 6 +- .../graph_objects/funnel/_outsidetextfont.py | 15 ++-- plotly/graph_objects/funnel/_stream.py | 3 +- plotly/graph_objects/funnel/_textfont.py | 15 ++-- .../graph_objects/funnel/connector/_line.py | 12 ++- .../graph_objects/funnel/hoverlabel/_font.py | 15 ++-- .../funnel/legendgrouptitle/_font.py | 9 +- .../graph_objects/funnel/marker/_colorbar.py | 18 ++-- .../funnel/marker/colorbar/_tickfont.py | 9 +- .../funnel/marker/colorbar/_tickformatstop.py | 18 ++-- .../funnel/marker/colorbar/_title.py | 6 +- .../funnel/marker/colorbar/title/_font.py | 9 +- .../funnelarea/_insidetextfont.py | 15 ++-- .../funnelarea/_legendgrouptitle.py | 6 +- plotly/graph_objects/funnelarea/_stream.py | 3 +- plotly/graph_objects/funnelarea/_textfont.py | 15 ++-- plotly/graph_objects/funnelarea/_title.py | 6 +- .../funnelarea/hoverlabel/_font.py | 15 ++-- .../funnelarea/legendgrouptitle/_font.py | 9 +- .../funnelarea/marker/_pattern.py | 9 +- .../graph_objects/funnelarea/title/_font.py | 15 ++-- plotly/graph_objects/heatmap/_colorbar.py | 18 ++-- .../heatmap/_legendgrouptitle.py | 6 +- plotly/graph_objects/heatmap/_stream.py | 3 +- plotly/graph_objects/heatmap/_textfont.py | 9 +- .../heatmap/colorbar/_tickfont.py | 9 +- .../heatmap/colorbar/_tickformatstop.py | 18 ++-- .../graph_objects/heatmap/colorbar/_title.py | 6 +- .../heatmap/colorbar/title/_font.py | 9 +- .../graph_objects/heatmap/hoverlabel/_font.py | 15 ++-- .../heatmap/legendgrouptitle/_font.py | 9 +- .../histogram/_insidetextfont.py | 9 +- .../histogram/_legendgrouptitle.py | 6 +- .../histogram/_outsidetextfont.py | 9 +- plotly/graph_objects/histogram/_stream.py | 3 +- plotly/graph_objects/histogram/_textfont.py | 9 +- .../histogram/hoverlabel/_font.py | 15 ++-- .../histogram/legendgrouptitle/_font.py | 9 +- .../histogram/marker/_colorbar.py | 18 ++-- .../histogram/marker/_pattern.py | 9 +- .../histogram/marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../histogram/marker/colorbar/_title.py | 6 +- .../histogram/marker/colorbar/title/_font.py | 9 +- plotly/graph_objects/histogram2d/_colorbar.py | 18 ++-- .../histogram2d/_legendgrouptitle.py | 6 +- plotly/graph_objects/histogram2d/_stream.py | 3 +- plotly/graph_objects/histogram2d/_textfont.py | 9 +- .../histogram2d/colorbar/_tickfont.py | 9 +- .../histogram2d/colorbar/_tickformatstop.py | 18 ++-- .../histogram2d/colorbar/_title.py | 6 +- .../histogram2d/colorbar/title/_font.py | 9 +- .../histogram2d/hoverlabel/_font.py | 15 ++-- .../histogram2d/legendgrouptitle/_font.py | 9 +- .../histogram2dcontour/_colorbar.py | 18 ++-- .../histogram2dcontour/_contours.py | 6 +- .../histogram2dcontour/_legendgrouptitle.py | 6 +- .../graph_objects/histogram2dcontour/_line.py | 12 ++- .../histogram2dcontour/_stream.py | 3 +- .../histogram2dcontour/_textfont.py | 9 +- .../histogram2dcontour/colorbar/_tickfont.py | 9 +- .../colorbar/_tickformatstop.py | 18 ++-- .../histogram2dcontour/colorbar/_title.py | 6 +- .../colorbar/title/_font.py | 9 +- .../histogram2dcontour/contours/_labelfont.py | 9 +- .../histogram2dcontour/hoverlabel/_font.py | 15 ++-- .../legendgrouptitle/_font.py | 9 +- .../graph_objects/icicle/_insidetextfont.py | 15 ++-- .../graph_objects/icicle/_legendgrouptitle.py | 6 +- .../graph_objects/icicle/_outsidetextfont.py | 15 ++-- plotly/graph_objects/icicle/_stream.py | 3 +- plotly/graph_objects/icicle/_textfont.py | 15 ++-- .../graph_objects/icicle/hoverlabel/_font.py | 15 ++-- .../icicle/legendgrouptitle/_font.py | 9 +- .../graph_objects/icicle/marker/_colorbar.py | 18 ++-- .../graph_objects/icicle/marker/_pattern.py | 9 +- .../icicle/marker/colorbar/_tickfont.py | 9 +- .../icicle/marker/colorbar/_tickformatstop.py | 18 ++-- .../icicle/marker/colorbar/_title.py | 6 +- .../icicle/marker/colorbar/title/_font.py | 9 +- .../graph_objects/icicle/pathbar/_textfont.py | 15 ++-- .../graph_objects/image/_legendgrouptitle.py | 6 +- plotly/graph_objects/image/_stream.py | 3 +- .../graph_objects/image/hoverlabel/_font.py | 15 ++-- .../image/legendgrouptitle/_font.py | 9 +- plotly/graph_objects/indicator/_delta.py | 18 ++-- .../indicator/_legendgrouptitle.py | 6 +- plotly/graph_objects/indicator/_number.py | 18 ++-- plotly/graph_objects/indicator/_stream.py | 3 +- plotly/graph_objects/indicator/_title.py | 6 +- .../indicator/delta/_decreasing.py | 6 +- plotly/graph_objects/indicator/delta/_font.py | 9 +- .../indicator/delta/_increasing.py | 6 +- plotly/graph_objects/indicator/gauge/_axis.py | 18 ++-- plotly/graph_objects/indicator/gauge/_step.py | 12 ++- .../indicator/gauge/axis/_tickfont.py | 9 +- .../indicator/gauge/axis/_tickformatstop.py | 18 ++-- .../indicator/legendgrouptitle/_font.py | 9 +- .../graph_objects/indicator/number/_font.py | 9 +- plotly/graph_objects/indicator/title/_font.py | 9 +- plotly/graph_objects/isosurface/_colorbar.py | 18 ++-- .../isosurface/_legendgrouptitle.py | 6 +- plotly/graph_objects/isosurface/_stream.py | 3 +- .../isosurface/colorbar/_tickfont.py | 9 +- .../isosurface/colorbar/_tickformatstop.py | 18 ++-- .../isosurface/colorbar/_title.py | 6 +- .../isosurface/colorbar/title/_font.py | 9 +- .../isosurface/hoverlabel/_font.py | 15 ++-- .../isosurface/legendgrouptitle/_font.py | 9 +- plotly/graph_objects/layout/_annotation.py | 24 ++++-- plotly/graph_objects/layout/_font.py | 9 +- plotly/graph_objects/layout/_image.py | 12 ++- plotly/graph_objects/layout/_mapbox.py | 3 +- plotly/graph_objects/layout/_modebar.py | 18 ++-- plotly/graph_objects/layout/_newshape.py | 12 ++- plotly/graph_objects/layout/_selection.py | 18 ++-- plotly/graph_objects/layout/_shape.py | 24 ++++-- plotly/graph_objects/layout/_slider.py | 12 ++- plotly/graph_objects/layout/_title.py | 6 +- plotly/graph_objects/layout/_updatemenu.py | 12 ++- plotly/graph_objects/layout/_xaxis.py | 48 +++++++---- plotly/graph_objects/layout/_yaxis.py | 48 +++++++---- .../graph_objects/layout/annotation/_font.py | 9 +- .../layout/annotation/hoverlabel/_font.py | 9 +- .../layout/coloraxis/_colorbar.py | 18 ++-- .../layout/coloraxis/colorbar/_tickfont.py | 9 +- .../coloraxis/colorbar/_tickformatstop.py | 18 ++-- .../layout/coloraxis/colorbar/_title.py | 6 +- .../layout/coloraxis/colorbar/title/_font.py | 9 +- plotly/graph_objects/layout/geo/_lataxis.py | 12 ++- plotly/graph_objects/layout/geo/_lonaxis.py | 12 ++- .../graph_objects/layout/hoverlabel/_font.py | 9 +- .../layout/hoverlabel/_grouptitlefont.py | 9 +- plotly/graph_objects/layout/legend/_font.py | 9 +- .../layout/legend/_grouptitlefont.py | 9 +- plotly/graph_objects/layout/legend/_title.py | 6 +- .../layout/legend/title/_font.py | 9 +- plotly/graph_objects/layout/map/_layer.py | 30 ++++--- .../graph_objects/layout/map/layer/_symbol.py | 12 ++- .../layout/map/layer/symbol/_textfont.py | 3 +- plotly/graph_objects/layout/mapbox/_layer.py | 30 ++++--- .../layout/mapbox/layer/_symbol.py | 12 ++- .../layout/mapbox/layer/symbol/_textfont.py | 3 +- .../layout/newselection/_line.py | 12 ++- .../graph_objects/layout/newshape/_label.py | 12 ++- .../layout/newshape/_legendgrouptitle.py | 6 +- plotly/graph_objects/layout/newshape/_line.py | 12 ++- .../layout/newshape/label/_font.py | 9 +- .../layout/newshape/legendgrouptitle/_font.py | 9 +- .../layout/polar/_angularaxis.py | 36 +++++--- .../graph_objects/layout/polar/_radialaxis.py | 36 +++++--- .../layout/polar/angularaxis/_tickfont.py | 9 +- .../polar/angularaxis/_tickformatstop.py | 18 ++-- .../layout/polar/radialaxis/_tickfont.py | 9 +- .../polar/radialaxis/_tickformatstop.py | 18 ++-- .../layout/polar/radialaxis/_title.py | 6 +- .../layout/polar/radialaxis/title/_font.py | 9 +- .../graph_objects/layout/scene/_annotation.py | 24 ++++-- plotly/graph_objects/layout/scene/_xaxis.py | 24 ++++-- plotly/graph_objects/layout/scene/_yaxis.py | 24 ++++-- plotly/graph_objects/layout/scene/_zaxis.py | 24 ++++-- .../layout/scene/annotation/_font.py | 9 +- .../scene/annotation/hoverlabel/_font.py | 9 +- .../layout/scene/xaxis/_tickfont.py | 9 +- .../layout/scene/xaxis/_tickformatstop.py | 18 ++-- .../layout/scene/xaxis/_title.py | 6 +- .../layout/scene/xaxis/title/_font.py | 9 +- .../layout/scene/yaxis/_tickfont.py | 9 +- .../layout/scene/yaxis/_tickformatstop.py | 18 ++-- .../layout/scene/yaxis/_title.py | 6 +- .../layout/scene/yaxis/title/_font.py | 9 +- .../layout/scene/zaxis/_tickfont.py | 9 +- .../layout/scene/zaxis/_tickformatstop.py | 18 ++-- .../layout/scene/zaxis/_title.py | 6 +- .../layout/scene/zaxis/title/_font.py | 9 +- .../graph_objects/layout/selection/_line.py | 12 ++- plotly/graph_objects/layout/shape/_label.py | 12 ++- .../layout/shape/_legendgrouptitle.py | 6 +- plotly/graph_objects/layout/shape/_line.py | 12 ++- .../graph_objects/layout/shape/label/_font.py | 9 +- .../layout/shape/legendgrouptitle/_font.py | 9 +- .../layout/slider/_currentvalue.py | 12 ++- plotly/graph_objects/layout/slider/_font.py | 9 +- plotly/graph_objects/layout/slider/_step.py | 24 ++++-- .../layout/slider/currentvalue/_font.py | 9 +- .../layout/smith/_imaginaryaxis.py | 36 +++++--- .../graph_objects/layout/smith/_realaxis.py | 36 +++++--- .../layout/smith/imaginaryaxis/_tickfont.py | 9 +- .../layout/smith/realaxis/_tickfont.py | 9 +- plotly/graph_objects/layout/ternary/_aaxis.py | 36 +++++--- plotly/graph_objects/layout/ternary/_baxis.py | 36 +++++--- plotly/graph_objects/layout/ternary/_caxis.py | 36 +++++--- .../layout/ternary/aaxis/_tickfont.py | 9 +- .../layout/ternary/aaxis/_tickformatstop.py | 18 ++-- .../layout/ternary/aaxis/_title.py | 6 +- .../layout/ternary/aaxis/title/_font.py | 9 +- .../layout/ternary/baxis/_tickfont.py | 9 +- .../layout/ternary/baxis/_tickformatstop.py | 18 ++-- .../layout/ternary/baxis/_title.py | 6 +- .../layout/ternary/baxis/title/_font.py | 9 +- .../layout/ternary/caxis/_tickfont.py | 9 +- .../layout/ternary/caxis/_tickformatstop.py | 18 ++-- .../layout/ternary/caxis/_title.py | 6 +- .../layout/ternary/caxis/title/_font.py | 9 +- plotly/graph_objects/layout/title/_font.py | 9 +- .../graph_objects/layout/title/_subtitle.py | 6 +- .../layout/title/subtitle/_font.py | 9 +- .../layout/updatemenu/_button.py | 18 ++-- .../graph_objects/layout/updatemenu/_font.py | 9 +- plotly/graph_objects/layout/xaxis/_minor.py | 12 ++- .../graph_objects/layout/xaxis/_rangebreak.py | 12 ++- .../graph_objects/layout/xaxis/_tickfont.py | 9 +- .../layout/xaxis/_tickformatstop.py | 18 ++-- plotly/graph_objects/layout/xaxis/_title.py | 6 +- .../layout/xaxis/rangeselector/_button.py | 18 ++-- .../layout/xaxis/rangeselector/_font.py | 9 +- .../graph_objects/layout/xaxis/title/_font.py | 9 +- plotly/graph_objects/layout/yaxis/_minor.py | 12 ++- .../graph_objects/layout/yaxis/_rangebreak.py | 12 ++- .../graph_objects/layout/yaxis/_tickfont.py | 9 +- .../layout/yaxis/_tickformatstop.py | 18 ++-- plotly/graph_objects/layout/yaxis/_title.py | 6 +- .../graph_objects/layout/yaxis/title/_font.py | 9 +- plotly/graph_objects/mesh3d/_colorbar.py | 18 ++-- .../graph_objects/mesh3d/_legendgrouptitle.py | 6 +- plotly/graph_objects/mesh3d/_stream.py | 3 +- .../mesh3d/colorbar/_tickfont.py | 9 +- .../mesh3d/colorbar/_tickformatstop.py | 18 ++-- .../graph_objects/mesh3d/colorbar/_title.py | 6 +- .../mesh3d/colorbar/title/_font.py | 9 +- .../graph_objects/mesh3d/hoverlabel/_font.py | 15 ++-- .../mesh3d/legendgrouptitle/_font.py | 9 +- .../graph_objects/ohlc/_legendgrouptitle.py | 6 +- plotly/graph_objects/ohlc/_line.py | 12 ++- plotly/graph_objects/ohlc/_stream.py | 3 +- plotly/graph_objects/ohlc/decreasing/_line.py | 12 ++- plotly/graph_objects/ohlc/hoverlabel/_font.py | 15 ++-- plotly/graph_objects/ohlc/increasing/_line.py | 12 ++- .../ohlc/legendgrouptitle/_font.py | 9 +- plotly/graph_objects/parcats/_dimension.py | 6 +- plotly/graph_objects/parcats/_labelfont.py | 9 +- .../parcats/_legendgrouptitle.py | 6 +- plotly/graph_objects/parcats/_line.py | 6 +- plotly/graph_objects/parcats/_stream.py | 3 +- plotly/graph_objects/parcats/_tickfont.py | 9 +- .../parcats/legendgrouptitle/_font.py | 9 +- .../graph_objects/parcats/line/_colorbar.py | 18 ++-- .../parcats/line/colorbar/_tickfont.py | 9 +- .../parcats/line/colorbar/_tickformatstop.py | 18 ++-- .../parcats/line/colorbar/_title.py | 6 +- .../parcats/line/colorbar/title/_font.py | 9 +- plotly/graph_objects/parcoords/_dimension.py | 24 ++++-- plotly/graph_objects/parcoords/_labelfont.py | 9 +- .../parcoords/_legendgrouptitle.py | 6 +- plotly/graph_objects/parcoords/_rangefont.py | 9 +- plotly/graph_objects/parcoords/_stream.py | 3 +- plotly/graph_objects/parcoords/_tickfont.py | 9 +- .../parcoords/legendgrouptitle/_font.py | 9 +- .../graph_objects/parcoords/line/_colorbar.py | 18 ++-- .../parcoords/line/colorbar/_tickfont.py | 9 +- .../line/colorbar/_tickformatstop.py | 18 ++-- .../parcoords/line/colorbar/_title.py | 6 +- .../parcoords/line/colorbar/title/_font.py | 9 +- plotly/graph_objects/pie/_insidetextfont.py | 15 ++-- plotly/graph_objects/pie/_legendgrouptitle.py | 6 +- plotly/graph_objects/pie/_outsidetextfont.py | 15 ++-- plotly/graph_objects/pie/_stream.py | 3 +- plotly/graph_objects/pie/_textfont.py | 15 ++-- plotly/graph_objects/pie/_title.py | 6 +- plotly/graph_objects/pie/hoverlabel/_font.py | 15 ++-- .../pie/legendgrouptitle/_font.py | 9 +- plotly/graph_objects/pie/marker/_pattern.py | 9 +- plotly/graph_objects/pie/title/_font.py | 15 ++-- .../graph_objects/sankey/_legendgrouptitle.py | 6 +- plotly/graph_objects/sankey/_link.py | 9 +- plotly/graph_objects/sankey/_node.py | 9 +- plotly/graph_objects/sankey/_stream.py | 3 +- plotly/graph_objects/sankey/_textfont.py | 9 +- .../graph_objects/sankey/hoverlabel/_font.py | 15 ++-- .../sankey/legendgrouptitle/_font.py | 9 +- .../graph_objects/sankey/link/_colorscale.py | 18 ++-- .../sankey/link/hoverlabel/_font.py | 15 ++-- .../sankey/node/hoverlabel/_font.py | 15 ++-- plotly/graph_objects/scatter/_fillpattern.py | 9 +- .../scatter/_legendgrouptitle.py | 6 +- plotly/graph_objects/scatter/_line.py | 12 ++- plotly/graph_objects/scatter/_stream.py | 3 +- plotly/graph_objects/scatter/_textfont.py | 15 ++-- .../graph_objects/scatter/hoverlabel/_font.py | 15 ++-- .../scatter/legendgrouptitle/_font.py | 9 +- .../graph_objects/scatter/marker/_colorbar.py | 18 ++-- .../scatter/marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../scatter/marker/colorbar/_title.py | 6 +- .../scatter/marker/colorbar/title/_font.py | 9 +- .../scatter3d/_legendgrouptitle.py | 6 +- plotly/graph_objects/scatter3d/_stream.py | 3 +- plotly/graph_objects/scatter3d/_textfont.py | 6 +- .../scatter3d/hoverlabel/_font.py | 15 ++-- .../scatter3d/legendgrouptitle/_font.py | 9 +- .../graph_objects/scatter3d/line/_colorbar.py | 18 ++-- .../scatter3d/line/colorbar/_tickfont.py | 9 +- .../line/colorbar/_tickformatstop.py | 18 ++-- .../scatter3d/line/colorbar/_title.py | 6 +- .../scatter3d/line/colorbar/title/_font.py | 9 +- .../scatter3d/marker/_colorbar.py | 18 ++-- .../scatter3d/marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../scatter3d/marker/colorbar/_title.py | 6 +- .../scatter3d/marker/colorbar/title/_font.py | 9 +- .../scattercarpet/_legendgrouptitle.py | 6 +- plotly/graph_objects/scattercarpet/_line.py | 12 ++- plotly/graph_objects/scattercarpet/_stream.py | 3 +- .../graph_objects/scattercarpet/_textfont.py | 15 ++-- .../scattercarpet/hoverlabel/_font.py | 15 ++-- .../scattercarpet/legendgrouptitle/_font.py | 9 +- .../scattercarpet/marker/_colorbar.py | 18 ++-- .../marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../scattercarpet/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 9 +- .../scattergeo/_legendgrouptitle.py | 6 +- plotly/graph_objects/scattergeo/_line.py | 12 ++- plotly/graph_objects/scattergeo/_stream.py | 3 +- plotly/graph_objects/scattergeo/_textfont.py | 15 ++-- .../scattergeo/hoverlabel/_font.py | 15 ++-- .../scattergeo/legendgrouptitle/_font.py | 9 +- .../scattergeo/marker/_colorbar.py | 18 ++-- .../scattergeo/marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../scattergeo/marker/colorbar/_title.py | 6 +- .../scattergeo/marker/colorbar/title/_font.py | 9 +- .../scattergl/_legendgrouptitle.py | 6 +- plotly/graph_objects/scattergl/_stream.py | 3 +- plotly/graph_objects/scattergl/_textfont.py | 6 +- .../scattergl/hoverlabel/_font.py | 15 ++-- .../scattergl/legendgrouptitle/_font.py | 9 +- .../scattergl/marker/_colorbar.py | 18 ++-- .../scattergl/marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../scattergl/marker/colorbar/_title.py | 6 +- .../scattergl/marker/colorbar/title/_font.py | 9 +- .../scattermap/_legendgrouptitle.py | 6 +- plotly/graph_objects/scattermap/_marker.py | 9 +- plotly/graph_objects/scattermap/_stream.py | 3 +- plotly/graph_objects/scattermap/_textfont.py | 3 +- .../scattermap/hoverlabel/_font.py | 15 ++-- .../scattermap/legendgrouptitle/_font.py | 9 +- .../scattermap/marker/_colorbar.py | 18 ++-- .../scattermap/marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../scattermap/marker/colorbar/_title.py | 6 +- .../scattermap/marker/colorbar/title/_font.py | 9 +- .../scattermapbox/_legendgrouptitle.py | 6 +- plotly/graph_objects/scattermapbox/_marker.py | 9 +- plotly/graph_objects/scattermapbox/_stream.py | 3 +- .../graph_objects/scattermapbox/_textfont.py | 3 +- .../scattermapbox/hoverlabel/_font.py | 15 ++-- .../scattermapbox/legendgrouptitle/_font.py | 9 +- .../scattermapbox/marker/_colorbar.py | 18 ++-- .../marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../scattermapbox/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 9 +- .../scatterpolar/_legendgrouptitle.py | 6 +- plotly/graph_objects/scatterpolar/_line.py | 12 ++- plotly/graph_objects/scatterpolar/_stream.py | 3 +- .../graph_objects/scatterpolar/_textfont.py | 15 ++-- .../scatterpolar/hoverlabel/_font.py | 15 ++-- .../scatterpolar/legendgrouptitle/_font.py | 9 +- .../scatterpolar/marker/_colorbar.py | 18 ++-- .../scatterpolar/marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../scatterpolar/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 9 +- .../scatterpolargl/_legendgrouptitle.py | 6 +- .../graph_objects/scatterpolargl/_stream.py | 3 +- .../graph_objects/scatterpolargl/_textfont.py | 6 +- .../scatterpolargl/hoverlabel/_font.py | 15 ++-- .../scatterpolargl/legendgrouptitle/_font.py | 9 +- .../scatterpolargl/marker/_colorbar.py | 18 ++-- .../marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../scatterpolargl/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 9 +- .../scattersmith/_legendgrouptitle.py | 6 +- plotly/graph_objects/scattersmith/_line.py | 12 ++- plotly/graph_objects/scattersmith/_stream.py | 3 +- .../graph_objects/scattersmith/_textfont.py | 15 ++-- .../scattersmith/hoverlabel/_font.py | 15 ++-- .../scattersmith/legendgrouptitle/_font.py | 9 +- .../scattersmith/marker/_colorbar.py | 18 ++-- .../scattersmith/marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../scattersmith/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 9 +- .../scatterternary/_legendgrouptitle.py | 6 +- plotly/graph_objects/scatterternary/_line.py | 12 ++- .../graph_objects/scatterternary/_stream.py | 3 +- .../graph_objects/scatterternary/_textfont.py | 15 ++-- .../scatterternary/hoverlabel/_font.py | 15 ++-- .../scatterternary/legendgrouptitle/_font.py | 9 +- .../scatterternary/marker/_colorbar.py | 18 ++-- .../marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../scatterternary/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 9 +- plotly/graph_objects/splom/_dimension.py | 18 ++-- .../graph_objects/splom/_legendgrouptitle.py | 6 +- plotly/graph_objects/splom/_stream.py | 3 +- .../graph_objects/splom/hoverlabel/_font.py | 15 ++-- .../splom/legendgrouptitle/_font.py | 9 +- .../graph_objects/splom/marker/_colorbar.py | 18 ++-- .../splom/marker/colorbar/_tickfont.py | 9 +- .../splom/marker/colorbar/_tickformatstop.py | 18 ++-- .../splom/marker/colorbar/_title.py | 6 +- .../splom/marker/colorbar/title/_font.py | 9 +- plotly/graph_objects/streamtube/_colorbar.py | 18 ++-- .../streamtube/_legendgrouptitle.py | 6 +- plotly/graph_objects/streamtube/_stream.py | 3 +- .../streamtube/colorbar/_tickfont.py | 9 +- .../streamtube/colorbar/_tickformatstop.py | 18 ++-- .../streamtube/colorbar/_title.py | 6 +- .../streamtube/colorbar/title/_font.py | 9 +- .../streamtube/hoverlabel/_font.py | 15 ++-- .../streamtube/legendgrouptitle/_font.py | 9 +- .../graph_objects/sunburst/_insidetextfont.py | 15 ++-- .../sunburst/_legendgrouptitle.py | 6 +- .../sunburst/_outsidetextfont.py | 15 ++-- plotly/graph_objects/sunburst/_stream.py | 3 +- plotly/graph_objects/sunburst/_textfont.py | 15 ++-- .../sunburst/hoverlabel/_font.py | 15 ++-- .../sunburst/legendgrouptitle/_font.py | 9 +- .../sunburst/marker/_colorbar.py | 18 ++-- .../graph_objects/sunburst/marker/_pattern.py | 9 +- .../sunburst/marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../sunburst/marker/colorbar/_title.py | 6 +- .../sunburst/marker/colorbar/title/_font.py | 9 +- plotly/graph_objects/surface/_colorbar.py | 18 ++-- .../surface/_legendgrouptitle.py | 6 +- plotly/graph_objects/surface/_stream.py | 3 +- .../surface/colorbar/_tickfont.py | 9 +- .../surface/colorbar/_tickformatstop.py | 18 ++-- .../graph_objects/surface/colorbar/_title.py | 6 +- .../surface/colorbar/title/_font.py | 9 +- .../graph_objects/surface/hoverlabel/_font.py | 15 ++-- .../surface/legendgrouptitle/_font.py | 9 +- plotly/graph_objects/table/_cells.py | 18 ++-- plotly/graph_objects/table/_header.py | 18 ++-- .../graph_objects/table/_legendgrouptitle.py | 6 +- plotly/graph_objects/table/_stream.py | 3 +- plotly/graph_objects/table/cells/_font.py | 15 ++-- plotly/graph_objects/table/header/_font.py | 15 ++-- .../graph_objects/table/hoverlabel/_font.py | 15 ++-- .../table/legendgrouptitle/_font.py | 9 +- .../graph_objects/treemap/_insidetextfont.py | 15 ++-- .../treemap/_legendgrouptitle.py | 6 +- .../graph_objects/treemap/_outsidetextfont.py | 15 ++-- plotly/graph_objects/treemap/_stream.py | 3 +- plotly/graph_objects/treemap/_textfont.py | 15 ++-- .../graph_objects/treemap/hoverlabel/_font.py | 15 ++-- .../treemap/legendgrouptitle/_font.py | 9 +- .../graph_objects/treemap/marker/_colorbar.py | 18 ++-- .../graph_objects/treemap/marker/_pattern.py | 9 +- .../treemap/marker/colorbar/_tickfont.py | 9 +- .../marker/colorbar/_tickformatstop.py | 18 ++-- .../treemap/marker/colorbar/_title.py | 6 +- .../treemap/marker/colorbar/title/_font.py | 9 +- .../treemap/pathbar/_textfont.py | 15 ++-- .../graph_objects/violin/_legendgrouptitle.py | 6 +- plotly/graph_objects/violin/_stream.py | 3 +- .../graph_objects/violin/hoverlabel/_font.py | 15 ++-- .../violin/legendgrouptitle/_font.py | 9 +- plotly/graph_objects/volume/_colorbar.py | 18 ++-- .../graph_objects/volume/_legendgrouptitle.py | 6 +- plotly/graph_objects/volume/_stream.py | 3 +- .../volume/colorbar/_tickfont.py | 9 +- .../volume/colorbar/_tickformatstop.py | 18 ++-- .../graph_objects/volume/colorbar/_title.py | 6 +- .../volume/colorbar/title/_font.py | 9 +- .../graph_objects/volume/hoverlabel/_font.py | 15 ++-- .../volume/legendgrouptitle/_font.py | 9 +- .../waterfall/_insidetextfont.py | 15 ++-- .../waterfall/_legendgrouptitle.py | 6 +- .../waterfall/_outsidetextfont.py | 15 ++-- plotly/graph_objects/waterfall/_stream.py | 3 +- plotly/graph_objects/waterfall/_textfont.py | 15 ++-- .../waterfall/connector/_line.py | 12 ++- .../waterfall/hoverlabel/_font.py | 15 ++-- .../waterfall/legendgrouptitle/_font.py | 9 +- 667 files changed, 6384 insertions(+), 3202 deletions(-) diff --git a/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py index 53f2a29271..8daf415eb4 100644 --- a/_plotly_utils/basevalidators.py +++ b/_plotly_utils/basevalidators.py @@ -21,6 +21,9 @@ def fullmatch(regex, string, flags=0): regex_string = regex return re.match("(?:" + regex_string + r")\Z", string, flags=flags) +# Constants +INDENT = 8 + # Utility functions # ----------------- @@ -537,8 +540,8 @@ def description(self): enum_vals_str = "\n".join( textwrap.wrap( repr(enum_vals), - initial_indent=" " * 8, - subsequent_indent=" " * 8, + initial_indent=" " * INDENT, + subsequent_indent=" " * INDENT, break_on_hyphens=False, ) ) @@ -554,8 +557,8 @@ def description(self): enum_regexs_str = "\n".join( textwrap.wrap( repr(enum_regexs), - initial_indent=" " * 8, - subsequent_indent=" " * 8, + initial_indent=" " * INDENT, + subsequent_indent=" " * INDENT, break_on_hyphens=False, break_long_words=False, ) @@ -1010,44 +1013,44 @@ def description(self): if self.no_blank: desc = ( desc - + """ - - A non-empty string""" + + """\n + - A non-empty string""" ) elif self.values: valid_str = "\n".join( textwrap.wrap( repr(self.values), - initial_indent=" " * 12, - subsequent_indent=" " * 12, + initial_indent=" " * INDENT, + subsequent_indent=" " * INDENT, break_on_hyphens=False, ) ) desc = ( desc - + """ - - One of the following strings: + + """\n + - One of the following strings: {valid_str}""".format(valid_str=valid_str) ) else: desc = ( desc - + """ - - A string""" + + """\n + - A string""" ) if not self.strict: desc = ( desc - + """ - - A number that will be converted to a string""" + + """\n + - A number that will be converted to a string""" ) if self.array_ok: desc = ( desc - + """ - - A tuple, list, or one-dimensional numpy array of the above""" + + """\n + - A tuple, list, or one-dimensional numpy array of the above""" ) return desc @@ -2284,8 +2287,8 @@ def description(self): enum_vals_str = "\n".join( textwrap.wrap( repr(enum_vals), - initial_indent=" " * 12, - subsequent_indent=" " * 12, + initial_indent=" " * INDENT, + subsequent_indent=" " * INDENT, break_on_hyphens=False, width=80, ) @@ -2293,16 +2296,16 @@ def description(self): desc = ( desc - + """ - - One of the following dash styles: + + """\n + - One of the following dash styles:\n {enum_vals_str}""".format(enum_vals_str=enum_vals_str) ) desc = ( desc - + """ - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + """\n + - A string containing a dash length list in pixels or percentages\n + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) """ ) return desc diff --git a/plotly/graph_objects/_bar.py b/plotly/graph_objects/_bar.py index 1d059e51b7..750d5c1cbb 100644 --- a/plotly/graph_objects/_bar.py +++ b/plotly/graph_objects/_bar.py @@ -94,8 +94,10 @@ def alignmentgroup(self): compute their positional range dependently or independently. The 'alignmentgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -395,9 +397,12 @@ def hovertemplate(self): ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -438,9 +443,12 @@ def hovertext(self): `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -583,8 +591,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -731,8 +741,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -775,8 +787,10 @@ def offsetgroup(self): coordinate will line up. The 'offsetgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -958,9 +972,12 @@ def text(self): seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1102,9 +1119,12 @@ def texttemplate(self): and `label`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1142,8 +1162,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1367,8 +1389,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1561,8 +1585,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_barpolar.py b/plotly/graph_objects/_barpolar.py index 471af73bb9..8d10a07e33 100644 --- a/plotly/graph_objects/_barpolar.py +++ b/plotly/graph_objects/_barpolar.py @@ -266,9 +266,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -305,9 +308,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -407,8 +413,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -555,8 +563,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -793,9 +803,12 @@ def text(self): coordinates. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -909,8 +922,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_box.py b/plotly/graph_objects/_box.py index 00000fb67c..7937390117 100644 --- a/plotly/graph_objects/_box.py +++ b/plotly/graph_objects/_box.py @@ -106,8 +106,10 @@ def alignmentgroup(self): compute their positional range dependently or independently. The 'alignmentgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -387,9 +389,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -426,9 +431,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -550,8 +558,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -837,8 +847,10 @@ def name(self): horizontal) are missing and the position axis is categorical The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -946,8 +958,10 @@ def offsetgroup(self): coordinate will line up. The 'offsetgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1323,9 +1337,12 @@ def text(self): `hoverinfo` must contain a "text" flag. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1362,8 +1379,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1631,8 +1650,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1826,8 +1847,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_candlestick.py b/plotly/graph_objects/_candlestick.py index c8e6f9c1cf..04d5558873 100644 --- a/plotly/graph_objects/_candlestick.py +++ b/plotly/graph_objects/_candlestick.py @@ -260,9 +260,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -381,8 +384,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -565,8 +570,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -702,9 +709,12 @@ def text(self): this trace's sample points. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -741,8 +751,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -910,8 +922,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1043,8 +1057,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_carpet.py b/plotly/graph_objects/_carpet.py index c83917e298..41be8ff53a 100644 --- a/plotly/graph_objects/_carpet.py +++ b/plotly/graph_objects/_carpet.py @@ -209,8 +209,10 @@ def carpet(self): lie The 'carpet' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -543,8 +545,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -601,8 +605,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_choropleth.py b/plotly/graph_objects/_choropleth.py index ff803fe60f..0ba6beef1d 100644 --- a/plotly/graph_objects/_choropleth.py +++ b/plotly/graph_objects/_choropleth.py @@ -227,8 +227,10 @@ def featureidkey(self): "properties.name". The 'featureidkey' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -374,9 +376,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -413,9 +418,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -515,8 +523,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -726,8 +736,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -863,9 +875,12 @@ def text(self): Sets the text elements associated with each location. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -902,8 +917,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_choroplethmap.py b/plotly/graph_objects/_choroplethmap.py index e03908f0ff..452cfe6ebe 100644 --- a/plotly/graph_objects/_choroplethmap.py +++ b/plotly/graph_objects/_choroplethmap.py @@ -92,8 +92,10 @@ def below(self): layer will be inserted above every existing layer. The 'below' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -248,8 +250,10 @@ def featureidkey(self): property, for example "properties.name". The 'featureidkey' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -372,9 +376,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -411,9 +418,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -513,8 +523,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -699,8 +711,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -859,9 +873,12 @@ def text(self): Sets the text elements associated with each location. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -898,8 +915,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_choroplethmapbox.py b/plotly/graph_objects/_choroplethmapbox.py index 5d228da229..522e6448fc 100644 --- a/plotly/graph_objects/_choroplethmapbox.py +++ b/plotly/graph_objects/_choroplethmapbox.py @@ -93,8 +93,10 @@ def below(self): layer will be inserted above every existing layer. The 'below' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -249,8 +251,10 @@ def featureidkey(self): property, for example "properties.name". The 'featureidkey' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -373,9 +377,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -412,9 +419,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -514,8 +524,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -700,8 +712,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -864,9 +878,12 @@ def text(self): Sets the text elements associated with each location. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -903,8 +920,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_cone.py b/plotly/graph_objects/_cone.py index 1a968853de..0148a6c637 100644 --- a/plotly/graph_objects/_cone.py +++ b/plotly/graph_objects/_cone.py @@ -430,9 +430,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -469,9 +472,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -571,8 +577,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -738,8 +746,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -937,9 +947,12 @@ def text(self): these elements will be seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -997,8 +1010,10 @@ def uhoverformat(self): default the values are formatted using generic number format. The 'uhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1017,8 +1032,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1107,8 +1124,10 @@ def vhoverformat(self): default the values are formatted using generic number format. The 'vhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1189,8 +1208,10 @@ def whoverformat(self): default the values are formatted using generic number format. The 'whoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1255,8 +1276,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1321,8 +1344,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1387,8 +1412,10 @@ def zhoverformat(self): are formatted using `zaxis.hoverformat`. The 'zhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_contour.py b/plotly/graph_objects/_contour.py index 8987e48253..a7903609b8 100644 --- a/plotly/graph_objects/_contour.py +++ b/plotly/graph_objects/_contour.py @@ -476,9 +476,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -615,8 +618,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -763,8 +768,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -972,8 +979,10 @@ def texttemplate(self): `z` and `text`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1010,8 +1019,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1177,8 +1188,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1395,8 +1408,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1562,8 +1577,10 @@ def zhoverformat(self): default the values are formatted using generic number format. The 'zhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_contourcarpet.py b/plotly/graph_objects/_contourcarpet.py index a7cbdc8652..983a5666d8 100644 --- a/plotly/graph_objects/_contourcarpet.py +++ b/plotly/graph_objects/_contourcarpet.py @@ -275,8 +275,10 @@ def carpet(self): lies The 'carpet' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -612,8 +614,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -760,8 +764,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -952,8 +958,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_densitymap.py b/plotly/graph_objects/_densitymap.py index 5b86eb85a2..5da75dac38 100644 --- a/plotly/graph_objects/_densitymap.py +++ b/plotly/graph_objects/_densitymap.py @@ -91,8 +91,10 @@ def below(self): layer will be inserted above every existing layer. The 'below' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -329,9 +331,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -372,9 +377,12 @@ def hovertext(self): `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -510,8 +518,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -675,8 +685,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -859,9 +871,12 @@ def text(self): elements will be seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -898,8 +913,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_densitymapbox.py b/plotly/graph_objects/_densitymapbox.py index 30b8bd0482..539e6665a0 100644 --- a/plotly/graph_objects/_densitymapbox.py +++ b/plotly/graph_objects/_densitymapbox.py @@ -92,8 +92,10 @@ def below(self): to '', the layer will be inserted above every existing layer. The 'below' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -330,9 +332,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -373,9 +378,12 @@ def hovertext(self): `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -511,8 +519,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -676,8 +686,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -864,9 +876,12 @@ def text(self): elements will be seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -903,8 +918,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_frame.py b/plotly/graph_objects/_frame.py index eded6e94de..bf52d8e499 100644 --- a/plotly/graph_objects/_frame.py +++ b/plotly/graph_objects/_frame.py @@ -19,8 +19,10 @@ def baseframe(self): properties in multiple frames. The 'baseframe' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -55,8 +57,10 @@ def group(self): belongs, used by animate to select a subset of frames. The 'group' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -90,8 +94,10 @@ def name(self): A label by which to identify the frame The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_funnel.py b/plotly/graph_objects/_funnel.py index 525de1994a..a973ec5945 100644 --- a/plotly/graph_objects/_funnel.py +++ b/plotly/graph_objects/_funnel.py @@ -86,8 +86,10 @@ def alignmentgroup(self): compute their positional range dependently or independently. The 'alignmentgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -331,9 +333,12 @@ def hovertemplate(self): completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -374,9 +379,12 @@ def hovertext(self): `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -519,8 +527,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -667,8 +677,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -709,8 +721,10 @@ def offsetgroup(self): coordinate will line up. The 'offsetgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -859,9 +873,12 @@ def text(self): seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1027,9 +1044,12 @@ def texttemplate(self): and `value`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1067,8 +1087,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1229,8 +1251,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1399,8 +1423,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_funnelarea.py b/plotly/graph_objects/_funnelarea.py index de602e93d9..229204a75a 100644 --- a/plotly/graph_objects/_funnelarea.py +++ b/plotly/graph_objects/_funnelarea.py @@ -266,9 +266,12 @@ def hovertemplate(self): completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -309,9 +312,12 @@ def hovertext(self): "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -493,8 +499,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -641,8 +649,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -681,8 +691,10 @@ def scalegroup(self): group id here shared by every trace in the same group. The 'scalegroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -875,9 +887,12 @@ def texttemplate(self): `color`, `value`, `text` and `percent`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -934,8 +949,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_heatmap.py b/plotly/graph_objects/_heatmap.py index 62ba7ec585..47abb124e4 100644 --- a/plotly/graph_objects/_heatmap.py +++ b/plotly/graph_objects/_heatmap.py @@ -409,9 +409,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -548,8 +551,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -677,8 +682,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -862,8 +869,10 @@ def texttemplate(self): `z` and `text`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -900,8 +909,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1086,8 +1097,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1323,8 +1336,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1490,8 +1505,10 @@ def zhoverformat(self): default the values are formatted using generic number format. The 'zhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_histogram.py b/plotly/graph_objects/_histogram.py index 1b334d59f0..4a661b3696 100644 --- a/plotly/graph_objects/_histogram.py +++ b/plotly/graph_objects/_histogram.py @@ -86,8 +86,10 @@ def alignmentgroup(self): compute their positional range dependently or independently. The 'alignmentgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -153,8 +155,10 @@ def bingroup(self): histogram and histogram2d* trace can share the same `bingroup` The 'bingroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -457,9 +461,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -496,9 +503,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -641,8 +651,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -789,8 +801,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -854,8 +868,10 @@ def offsetgroup(self): coordinate will line up. The 'offsetgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1017,9 +1033,12 @@ def text(self): coordinates. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1140,8 +1159,10 @@ def texttemplate(self): and `value`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1160,8 +1181,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1346,8 +1369,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1477,8 +1502,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_histogram2d.py b/plotly/graph_objects/_histogram2d.py index 5a419fcad3..7b47dda009 100644 --- a/plotly/graph_objects/_histogram2d.py +++ b/plotly/graph_objects/_histogram2d.py @@ -148,8 +148,10 @@ def bingroup(self): them their x-bins and y-bins match separately. The 'bingroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -447,9 +449,12 @@ def hovertemplate(self): completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -549,8 +554,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -697,8 +704,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -889,8 +898,10 @@ def texttemplate(self): Finally, the template string has access to variable `z` The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -909,8 +920,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1027,8 +1040,10 @@ def xbingroup(self): value can be used to set (1D) histogram `bingroup` The 'xbingroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1118,8 +1133,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1200,8 +1217,10 @@ def ybingroup(self): value can be used to set (1D) histogram `bingroup` The 'ybingroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1291,8 +1310,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1371,8 +1392,10 @@ def zhoverformat(self): default the values are formatted using generic number format. The 'zhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_histogram2dcontour.py b/plotly/graph_objects/_histogram2dcontour.py index 9dd8c8a928..d49d39f18c 100644 --- a/plotly/graph_objects/_histogram2dcontour.py +++ b/plotly/graph_objects/_histogram2dcontour.py @@ -170,8 +170,10 @@ def bingroup(self): them their x-bins and y-bins match separately. The 'bingroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -488,9 +490,12 @@ def hovertemplate(self): completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -590,8 +595,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -757,8 +764,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -974,8 +983,10 @@ def texttemplate(self): `z` and `text`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -994,8 +1005,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1112,8 +1125,10 @@ def xbingroup(self): value can be used to set (1D) histogram `bingroup` The 'xbingroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1184,8 +1199,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1266,8 +1283,10 @@ def ybingroup(self): value can be used to set (1D) histogram `bingroup` The 'ybingroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1338,8 +1357,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1418,8 +1439,10 @@ def zhoverformat(self): default the values are formatted using generic number format. The 'zhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_icicle.py b/plotly/graph_objects/_icicle.py index 7fb04238ff..86fadf4fe6 100644 --- a/plotly/graph_objects/_icicle.py +++ b/plotly/graph_objects/_icicle.py @@ -261,9 +261,12 @@ def hovertemplate(self): ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -304,9 +307,12 @@ def hovertext(self): "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -648,8 +654,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -947,9 +955,12 @@ def texttemplate(self): `percentParent`, `label` and `value`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1006,8 +1017,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_image.py b/plotly/graph_objects/_image.py index 3eb7ec3868..9e92241915 100644 --- a/plotly/graph_objects/_image.py +++ b/plotly/graph_objects/_image.py @@ -245,9 +245,12 @@ def hovertemplate(self): completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -492,8 +495,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -531,8 +536,10 @@ def source(self): consists of "data:image/[][;base64]," The 'source' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -606,8 +613,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_indicator.py b/plotly/graph_objects/_indicator.py index 100ee387d9..bd200de42a 100644 --- a/plotly/graph_objects/_indicator.py +++ b/plotly/graph_objects/_indicator.py @@ -357,8 +357,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -434,8 +436,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_isosurface.py b/plotly/graph_objects/_isosurface.py index 8287c10864..ba880c9bfa 100644 --- a/plotly/graph_objects/_isosurface.py +++ b/plotly/graph_objects/_isosurface.py @@ -460,9 +460,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -499,9 +502,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -639,8 +645,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -806,8 +814,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1008,9 +1018,12 @@ def text(self): these elements will be seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1047,8 +1060,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1119,8 +1134,10 @@ def valuehoverformat(self): default the values are formatted using generic number format. The 'valuehoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1207,8 +1224,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1272,8 +1291,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1337,8 +1358,10 @@ def zhoverformat(self): are formatted using `zaxis.hoverformat`. The 'zhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_layout.py b/plotly/graph_objects/_layout.py index 414a16022f..249697e0df 100644 --- a/plotly/graph_objects/_layout.py +++ b/plotly/graph_objects/_layout.py @@ -1636,8 +1636,10 @@ def separators(self): default. The 'separators' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_mesh3d.py b/plotly/graph_objects/_mesh3d.py index 5481e1317f..6ef029aedf 100644 --- a/plotly/graph_objects/_mesh3d.py +++ b/plotly/graph_objects/_mesh3d.py @@ -574,9 +574,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -613,9 +616,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -900,8 +906,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1067,8 +1075,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1212,9 +1222,12 @@ def text(self): these elements will be seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1251,8 +1264,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1418,8 +1433,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1509,8 +1526,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1600,8 +1619,10 @@ def zhoverformat(self): are formatted using `zaxis.hoverformat`. The 'zhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_ohlc.py b/plotly/graph_objects/_ohlc.py index 0e0f6efca1..2815f520bb 100644 --- a/plotly/graph_objects/_ohlc.py +++ b/plotly/graph_objects/_ohlc.py @@ -260,9 +260,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -381,8 +384,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -565,8 +570,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -702,9 +709,12 @@ def text(self): this trace's sample points. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -761,8 +771,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -910,8 +922,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1043,8 +1057,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_parcats.py b/plotly/graph_objects/_parcats.py index 8b3c537be1..42f0d38f5f 100644 --- a/plotly/graph_objects/_parcats.py +++ b/plotly/graph_objects/_parcats.py @@ -265,8 +265,10 @@ def hovertemplate(self): ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -408,8 +410,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -491,8 +495,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_parcoords.py b/plotly/graph_objects/_parcoords.py index deb4517f28..dfaf0eddf5 100644 --- a/plotly/graph_objects/_parcoords.py +++ b/plotly/graph_objects/_parcoords.py @@ -406,8 +406,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -487,8 +489,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_pie.py b/plotly/graph_objects/_pie.py index fa877adc74..b57b28a9f1 100644 --- a/plotly/graph_objects/_pie.py +++ b/plotly/graph_objects/_pie.py @@ -295,9 +295,12 @@ def hovertemplate(self): completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -338,9 +341,12 @@ def hovertext(self): "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -550,8 +556,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -698,8 +706,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -822,8 +832,10 @@ def scalegroup(self): here shared by every trace in the same group. The 'scalegroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1035,9 +1047,12 @@ def texttemplate(self): `color`, `value`, `percent` and `text`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1094,8 +1109,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_sankey.py b/plotly/graph_objects/_sankey.py index 173cd16dc8..8ce8d29a91 100644 --- a/plotly/graph_objects/_sankey.py +++ b/plotly/graph_objects/_sankey.py @@ -366,8 +366,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -490,8 +492,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -543,8 +547,10 @@ def valueformat(self): https://github.com/d3/d3-format/tree/v1.4.5#d3-format. The 'valueformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -563,8 +569,10 @@ def valuesuffix(self): space if a separation is necessary from the value. The 'valuesuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_scatter.py b/plotly/graph_objects/_scatter.py index 6cd33a22bd..dbc40d51ab 100644 --- a/plotly/graph_objects/_scatter.py +++ b/plotly/graph_objects/_scatter.py @@ -94,8 +94,10 @@ def alignmentgroup(self): compute their positional range dependently or independently. The 'alignmentgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -514,9 +516,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -557,9 +562,12 @@ def hovertext(self): `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -659,8 +667,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -852,8 +862,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -873,8 +885,10 @@ def offsetgroup(self): coordinate will line up. The 'offsetgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1037,8 +1051,10 @@ def stackgroup(self): order. The 'stackgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1080,9 +1096,12 @@ def text(self): seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1195,9 +1214,12 @@ def texttemplate(self): point (the ones that are `arrayOk: true`) are available. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1235,8 +1257,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1421,8 +1445,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1615,8 +1641,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_scatter3d.py b/plotly/graph_objects/_scatter3d.py index 6a52789405..aae3921854 100644 --- a/plotly/graph_objects/_scatter3d.py +++ b/plotly/graph_objects/_scatter3d.py @@ -273,9 +273,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -316,9 +319,12 @@ def hovertext(self): `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -418,8 +424,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -611,8 +619,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -779,9 +789,12 @@ def text(self): elements will be seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -894,9 +907,12 @@ def texttemplate(self): point (the ones that are `arrayOk: true`) are available. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -934,8 +950,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1059,8 +1077,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1148,8 +1168,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1237,8 +1259,10 @@ def zhoverformat(self): are formatted using `zaxis.hoverformat`. The 'zhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_scattercarpet.py b/plotly/graph_objects/_scattercarpet.py index 94fbd9fe16..0274780e67 100644 --- a/plotly/graph_objects/_scattercarpet.py +++ b/plotly/graph_objects/_scattercarpet.py @@ -142,8 +142,10 @@ def carpet(self): lie The 'carpet' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -380,9 +382,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -423,9 +428,12 @@ def hovertext(self): must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -525,8 +533,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -718,8 +728,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -840,9 +852,12 @@ def text(self): be seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -957,9 +972,12 @@ def texttemplate(self): and `text`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -997,8 +1015,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_scattergeo.py b/plotly/graph_objects/_scattergeo.py index d91cdadaf6..904a34f9f5 100644 --- a/plotly/graph_objects/_scattergeo.py +++ b/plotly/graph_objects/_scattergeo.py @@ -131,8 +131,10 @@ def featureidkey(self): "properties.name". The 'featureidkey' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -326,9 +328,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -370,9 +375,12 @@ def hovertext(self): contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -508,8 +516,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -801,8 +811,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -924,9 +936,12 @@ def text(self): hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1041,9 +1056,12 @@ def texttemplate(self): `lon`, `location` and `text`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1081,8 +1099,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_scattergl.py b/plotly/graph_objects/_scattergl.py index 02d70ce1f8..700db485fd 100644 --- a/plotly/graph_objects/_scattergl.py +++ b/plotly/graph_objects/_scattergl.py @@ -364,9 +364,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -407,9 +410,12 @@ def hovertext(self): `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -509,8 +515,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -697,8 +705,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -819,9 +829,12 @@ def text(self): seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -934,9 +947,12 @@ def texttemplate(self): point (the ones that are `arrayOk: true`) are available. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -974,8 +990,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1160,8 +1178,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1354,8 +1374,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_scattermap.py b/plotly/graph_objects/_scattermap.py index 278c705228..b06068f3ff 100644 --- a/plotly/graph_objects/_scattermap.py +++ b/plotly/graph_objects/_scattermap.py @@ -68,8 +68,10 @@ def below(self): scattermap layers above every other layer, set `below` to "''". The 'below' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -296,9 +298,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -339,9 +344,12 @@ def hovertext(self): `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -477,8 +485,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -704,8 +714,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -849,9 +861,12 @@ def text(self): elements will be seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -947,9 +962,12 @@ def texttemplate(self): `lon` and `text`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -987,8 +1005,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_scattermapbox.py b/plotly/graph_objects/_scattermapbox.py index 943412c998..59e4c9eb00 100644 --- a/plotly/graph_objects/_scattermapbox.py +++ b/plotly/graph_objects/_scattermapbox.py @@ -70,8 +70,10 @@ def below(self): `below` to "''". The 'below' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -298,9 +300,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -341,9 +346,12 @@ def hovertext(self): `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -479,8 +487,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -706,8 +716,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -855,9 +867,12 @@ def text(self): elements will be seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -953,9 +968,12 @@ def texttemplate(self): `lon` and `text`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -993,8 +1011,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_scatterpolar.py b/plotly/graph_objects/_scatterpolar.py index 59ddff9180..ce04197188 100644 --- a/plotly/graph_objects/_scatterpolar.py +++ b/plotly/graph_objects/_scatterpolar.py @@ -351,9 +351,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -394,9 +397,12 @@ def hovertext(self): `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -496,8 +502,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -689,8 +697,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -889,9 +899,12 @@ def text(self): seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1006,9 +1019,12 @@ def texttemplate(self): `theta` and `text`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1123,8 +1139,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_scatterpolargl.py b/plotly/graph_objects/_scatterpolargl.py index bfd152ac36..7e33304382 100644 --- a/plotly/graph_objects/_scatterpolargl.py +++ b/plotly/graph_objects/_scatterpolargl.py @@ -316,9 +316,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -359,9 +362,12 @@ def hovertext(self): `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -461,8 +467,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -654,8 +662,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -854,9 +864,12 @@ def text(self): seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -971,9 +984,12 @@ def texttemplate(self): `theta` and `text`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1088,8 +1104,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_scattersmith.py b/plotly/graph_objects/_scattersmith.py index e38e08343c..7ab7e3fc2a 100644 --- a/plotly/graph_objects/_scattersmith.py +++ b/plotly/graph_objects/_scattersmith.py @@ -306,9 +306,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -349,9 +352,12 @@ def hovertext(self): `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -489,8 +495,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -682,8 +690,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -864,9 +874,12 @@ def text(self): seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -981,9 +994,12 @@ def texttemplate(self): `imag` and `text`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1021,8 +1037,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_scatterternary.py b/plotly/graph_objects/_scatterternary.py index 56fe50ab53..a24b28700d 100644 --- a/plotly/graph_objects/_scatterternary.py +++ b/plotly/graph_objects/_scatterternary.py @@ -426,9 +426,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -469,9 +472,12 @@ def hovertext(self): `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -571,8 +577,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -764,8 +772,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -932,9 +942,12 @@ def text(self): elements will be seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1049,9 +1062,12 @@ def texttemplate(self): `c` and `text`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1089,8 +1105,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_splom.py b/plotly/graph_objects/_splom.py index 57826c66b1..99c3c64798 100644 --- a/plotly/graph_objects/_splom.py +++ b/plotly/graph_objects/_splom.py @@ -243,9 +243,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -282,9 +285,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -384,8 +390,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -532,8 +540,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -690,9 +700,12 @@ def text(self): order to the this trace's (x,y) coordinates. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -729,8 +742,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -860,8 +875,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -918,8 +935,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_streamtube.py b/plotly/graph_objects/_streamtube.py index 733cd5606d..2f29df8158 100644 --- a/plotly/graph_objects/_streamtube.py +++ b/plotly/graph_objects/_streamtube.py @@ -407,9 +407,12 @@ def hovertemplate(self): ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -446,8 +449,10 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -528,8 +533,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -714,8 +721,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -900,8 +909,10 @@ def text(self): support array `text` values. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -941,8 +952,10 @@ def uhoverformat(self): default the values are formatted using generic number format. The 'uhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -961,8 +974,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1051,8 +1066,10 @@ def vhoverformat(self): default the values are formatted using generic number format. The 'vhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1133,8 +1150,10 @@ def whoverformat(self): default the values are formatted using generic number format. The 'whoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1198,8 +1217,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1263,8 +1284,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1328,8 +1351,10 @@ def zhoverformat(self): are formatted using `zaxis.hoverformat`. The 'zhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_sunburst.py b/plotly/graph_objects/_sunburst.py index 7fe752712d..36001602a0 100644 --- a/plotly/graph_objects/_sunburst.py +++ b/plotly/graph_objects/_sunburst.py @@ -260,9 +260,12 @@ def hovertemplate(self): ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -303,9 +306,12 @@ def hovertext(self): "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -675,8 +681,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -953,9 +961,12 @@ def texttemplate(self): `percentParent`, `label` and `value`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -993,8 +1004,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_surface.py b/plotly/graph_objects/_surface.py index deee23b0f7..84fcbb381c 100644 --- a/plotly/graph_objects/_surface.py +++ b/plotly/graph_objects/_surface.py @@ -461,9 +461,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -500,9 +503,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -602,8 +608,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -769,8 +777,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -977,9 +987,12 @@ def text(self): these elements will be seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1016,8 +1029,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1141,8 +1156,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1230,8 +1247,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1319,8 +1338,10 @@ def zhoverformat(self): are formatted using `zaxis.hoverformat`. The 'zhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_table.py b/plotly/graph_objects/_table.py index 64d0743a25..d2b02dcdd2 100644 --- a/plotly/graph_objects/_table.py +++ b/plotly/graph_objects/_table.py @@ -454,8 +454,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -493,8 +495,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_treemap.py b/plotly/graph_objects/_treemap.py index 44ddc163db..aa1edb2fe1 100644 --- a/plotly/graph_objects/_treemap.py +++ b/plotly/graph_objects/_treemap.py @@ -260,9 +260,12 @@ def hovertemplate(self): ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -303,9 +306,12 @@ def hovertext(self): "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -628,8 +634,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -927,9 +935,12 @@ def texttemplate(self): `percentParent`, `label` and `value`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -986,8 +997,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_violin.py b/plotly/graph_objects/_violin.py index 70dcbc3813..0e7a1f4f81 100644 --- a/plotly/graph_objects/_violin.py +++ b/plotly/graph_objects/_violin.py @@ -81,8 +81,10 @@ def alignmentgroup(self): compute their positional range dependently or independently. The 'alignmentgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -311,9 +313,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -350,9 +355,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -474,8 +482,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -665,8 +675,10 @@ def name(self): details). The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -686,8 +698,10 @@ def offsetgroup(self): coordinate will line up. The 'offsetgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -834,8 +848,10 @@ def scalegroup(self): will be linked together The 'scalegroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1036,9 +1052,12 @@ def text(self): `hoverinfo` must contain a "text" flag. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1075,8 +1094,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1259,8 +1280,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1367,8 +1390,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_volume.py b/plotly/graph_objects/_volume.py index 78d5404ae6..d2683de787 100644 --- a/plotly/graph_objects/_volume.py +++ b/plotly/graph_objects/_volume.py @@ -461,9 +461,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -500,9 +503,12 @@ def hovertext(self): Same as `text`. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -640,8 +646,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -807,8 +815,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1034,9 +1044,12 @@ def text(self): these elements will be seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1073,8 +1086,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1145,8 +1160,10 @@ def valuehoverformat(self): default the values are formatted using generic number format. The 'valuehoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1233,8 +1250,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1298,8 +1317,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1363,8 +1384,10 @@ def zhoverformat(self): are formatted using `zaxis.hoverformat`. The 'zhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/_waterfall.py b/plotly/graph_objects/_waterfall.py index 81e4b0e73a..68ce34d594 100644 --- a/plotly/graph_objects/_waterfall.py +++ b/plotly/graph_objects/_waterfall.py @@ -93,8 +93,10 @@ def alignmentgroup(self): compute their positional range dependently or independently. The 'alignmentgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -376,9 +378,12 @@ def hovertemplate(self): completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -419,9 +424,12 @@ def hovertext(self): `hoverinfo` must contain a "text" flag. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -583,8 +591,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -752,8 +762,10 @@ def name(self): and on hover. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -796,8 +808,10 @@ def offsetgroup(self): coordinate will line up. The 'offsetgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -960,9 +974,12 @@ def text(self): seen in the hover labels. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1127,9 +1144,12 @@ def texttemplate(self): `delta`, `final` and `label`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -1186,8 +1206,10 @@ def uid(self): constancy between traces during animations and transitions. The 'uid' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1368,8 +1390,10 @@ def xhoverformat(self): are formatted using `xaxis.hoverformat`. The 'xhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1538,8 +1562,10 @@ def yhoverformat(self): are formatted using `yaxis.hoverformat`. The 'yhoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/bar/_insidetextfont.py b/plotly/graph_objects/bar/_insidetextfont.py index 5cd165b282..ad47fd0d3a 100644 --- a/plotly/graph_objects/bar/_insidetextfont.py +++ b/plotly/graph_objects/bar/_insidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/bar/_legendgrouptitle.py b/plotly/graph_objects/bar/_legendgrouptitle.py index 959ee7cd9a..4a226ab96f 100644 --- a/plotly/graph_objects/bar/_legendgrouptitle.py +++ b/plotly/graph_objects/bar/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/bar/_outsidetextfont.py b/plotly/graph_objects/bar/_outsidetextfont.py index 902b96b876..eaaf0d29c8 100644 --- a/plotly/graph_objects/bar/_outsidetextfont.py +++ b/plotly/graph_objects/bar/_outsidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/bar/_stream.py b/plotly/graph_objects/bar/_stream.py index 04a1c159cd..bd4f8cd94e 100644 --- a/plotly/graph_objects/bar/_stream.py +++ b/plotly/graph_objects/bar/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/bar/_textfont.py b/plotly/graph_objects/bar/_textfont.py index 4ea781dca7..6ba90cdecd 100644 --- a/plotly/graph_objects/bar/_textfont.py +++ b/plotly/graph_objects/bar/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/bar/hoverlabel/_font.py b/plotly/graph_objects/bar/hoverlabel/_font.py index 16e78388a3..3af5ce8b71 100644 --- a/plotly/graph_objects/bar/hoverlabel/_font.py +++ b/plotly/graph_objects/bar/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/bar/legendgrouptitle/_font.py b/plotly/graph_objects/bar/legendgrouptitle/_font.py index adb2e25e50..930286e2b8 100644 --- a/plotly/graph_objects/bar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/bar/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/bar/marker/_colorbar.py b/plotly/graph_objects/bar/marker/_colorbar.py index 93d550eec9..07074b44c4 100644 --- a/plotly/graph_objects/bar/marker/_colorbar.py +++ b/plotly/graph_objects/bar/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -790,8 +792,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -832,8 +836,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/bar/marker/_pattern.py b/plotly/graph_objects/bar/marker/_pattern.py index 3d752926ac..dae692e284 100644 --- a/plotly/graph_objects/bar/marker/_pattern.py +++ b/plotly/graph_objects/bar/marker/_pattern.py @@ -163,9 +163,12 @@ def path(self): square from (0,0) to (`size`,`size`) to color. The 'path' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/bar/marker/colorbar/_tickfont.py b/plotly/graph_objects/bar/marker/colorbar/_tickfont.py index 3f83fb035a..8d6134864d 100644 --- a/plotly/graph_objects/bar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/bar/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/bar/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/bar/marker/colorbar/_tickformatstop.py index 006987e3c6..c400a921b6 100644 --- a/plotly/graph_objects/bar/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/bar/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/bar/marker/colorbar/_title.py b/plotly/graph_objects/bar/marker/colorbar/_title.py index 52cd702174..ebcd3a40c1 100644 --- a/plotly/graph_objects/bar/marker/colorbar/_title.py +++ b/plotly/graph_objects/bar/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/bar/marker/colorbar/title/_font.py b/plotly/graph_objects/bar/marker/colorbar/title/_font.py index 28ebe76490..a645dfe33a 100644 --- a/plotly/graph_objects/bar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/bar/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/barpolar/_legendgrouptitle.py b/plotly/graph_objects/barpolar/_legendgrouptitle.py index a41850cfe2..f1fb363362 100644 --- a/plotly/graph_objects/barpolar/_legendgrouptitle.py +++ b/plotly/graph_objects/barpolar/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/barpolar/_stream.py b/plotly/graph_objects/barpolar/_stream.py index 9aa8a7ecea..0f17e17acd 100644 --- a/plotly/graph_objects/barpolar/_stream.py +++ b/plotly/graph_objects/barpolar/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/barpolar/hoverlabel/_font.py b/plotly/graph_objects/barpolar/hoverlabel/_font.py index d4e61cee3c..00ac136e9c 100644 --- a/plotly/graph_objects/barpolar/hoverlabel/_font.py +++ b/plotly/graph_objects/barpolar/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/barpolar/legendgrouptitle/_font.py b/plotly/graph_objects/barpolar/legendgrouptitle/_font.py index 0e33d7dff4..0b6df3f8ca 100644 --- a/plotly/graph_objects/barpolar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/barpolar/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/_colorbar.py b/plotly/graph_objects/barpolar/marker/_colorbar.py index aed3b019e0..6d6a47f4bd 100644 --- a/plotly/graph_objects/barpolar/marker/_colorbar.py +++ b/plotly/graph_objects/barpolar/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/_pattern.py b/plotly/graph_objects/barpolar/marker/_pattern.py index 2f1dce56ec..27ba9045a4 100644 --- a/plotly/graph_objects/barpolar/marker/_pattern.py +++ b/plotly/graph_objects/barpolar/marker/_pattern.py @@ -163,9 +163,12 @@ def path(self): square from (0,0) to (`size`,`size`) to color. The 'path' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py b/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py index adf5f4e476..f839e969ed 100644 --- a/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/barpolar/marker/colorbar/_tickformatstop.py index 7aca6c620b..335ff52e3a 100644 --- a/plotly/graph_objects/barpolar/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/barpolar/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/colorbar/_title.py b/plotly/graph_objects/barpolar/marker/colorbar/_title.py index 68a2b90f33..fde55874c5 100644 --- a/plotly/graph_objects/barpolar/marker/colorbar/_title.py +++ b/plotly/graph_objects/barpolar/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py b/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py index b17fbea900..92ee98745a 100644 --- a/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/box/_legendgrouptitle.py b/plotly/graph_objects/box/_legendgrouptitle.py index 26b2c8a252..582c863f18 100644 --- a/plotly/graph_objects/box/_legendgrouptitle.py +++ b/plotly/graph_objects/box/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/box/_stream.py b/plotly/graph_objects/box/_stream.py index 3263eea579..e36b70ca67 100644 --- a/plotly/graph_objects/box/_stream.py +++ b/plotly/graph_objects/box/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/box/hoverlabel/_font.py b/plotly/graph_objects/box/hoverlabel/_font.py index e95575f46b..e48b665f96 100644 --- a/plotly/graph_objects/box/hoverlabel/_font.py +++ b/plotly/graph_objects/box/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/box/legendgrouptitle/_font.py b/plotly/graph_objects/box/legendgrouptitle/_font.py index d0a3ce6fbd..3f1048f181 100644 --- a/plotly/graph_objects/box/legendgrouptitle/_font.py +++ b/plotly/graph_objects/box/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/candlestick/_legendgrouptitle.py b/plotly/graph_objects/candlestick/_legendgrouptitle.py index 0c0c1a6c32..6c58f5e752 100644 --- a/plotly/graph_objects/candlestick/_legendgrouptitle.py +++ b/plotly/graph_objects/candlestick/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/candlestick/_stream.py b/plotly/graph_objects/candlestick/_stream.py index 81e6b867c3..712db3870c 100644 --- a/plotly/graph_objects/candlestick/_stream.py +++ b/plotly/graph_objects/candlestick/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/candlestick/hoverlabel/_font.py b/plotly/graph_objects/candlestick/hoverlabel/_font.py index 68fab1ce5b..83f2e43810 100644 --- a/plotly/graph_objects/candlestick/hoverlabel/_font.py +++ b/plotly/graph_objects/candlestick/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/candlestick/legendgrouptitle/_font.py b/plotly/graph_objects/candlestick/legendgrouptitle/_font.py index 1eec7958ca..118b5406b4 100644 --- a/plotly/graph_objects/candlestick/legendgrouptitle/_font.py +++ b/plotly/graph_objects/candlestick/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/carpet/_aaxis.py b/plotly/graph_objects/carpet/_aaxis.py index 9966dea1ec..da2a90ec80 100644 --- a/plotly/graph_objects/carpet/_aaxis.py +++ b/plotly/graph_objects/carpet/_aaxis.py @@ -424,10 +424,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -507,8 +511,10 @@ def labelprefix(self): Sets a axis label prefix. The 'labelprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -526,8 +532,10 @@ def labelsuffix(self): Sets a axis label suffix. The 'labelsuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -649,10 +657,14 @@ def minorgriddash(self): "5px,10px,2px,2px"). The 'minorgriddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -1060,8 +1072,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1141,8 +1155,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1160,8 +1176,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/carpet/_baxis.py b/plotly/graph_objects/carpet/_baxis.py index 101a52a842..423a9a4250 100644 --- a/plotly/graph_objects/carpet/_baxis.py +++ b/plotly/graph_objects/carpet/_baxis.py @@ -424,10 +424,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -507,8 +511,10 @@ def labelprefix(self): Sets a axis label prefix. The 'labelprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -526,8 +532,10 @@ def labelsuffix(self): Sets a axis label suffix. The 'labelsuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -649,10 +657,14 @@ def minorgriddash(self): "5px,10px,2px,2px"). The 'minorgriddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -1060,8 +1072,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1141,8 +1155,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1160,8 +1176,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/carpet/_font.py b/plotly/graph_objects/carpet/_font.py index 4770e1e185..3835bcd6ea 100644 --- a/plotly/graph_objects/carpet/_font.py +++ b/plotly/graph_objects/carpet/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/carpet/_legendgrouptitle.py b/plotly/graph_objects/carpet/_legendgrouptitle.py index 441f7ef077..b291b138d5 100644 --- a/plotly/graph_objects/carpet/_legendgrouptitle.py +++ b/plotly/graph_objects/carpet/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/carpet/_stream.py b/plotly/graph_objects/carpet/_stream.py index 48f4f52dee..99720fa139 100644 --- a/plotly/graph_objects/carpet/_stream.py +++ b/plotly/graph_objects/carpet/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/carpet/aaxis/_tickfont.py b/plotly/graph_objects/carpet/aaxis/_tickfont.py index 7eaeaf5833..30e28ea214 100644 --- a/plotly/graph_objects/carpet/aaxis/_tickfont.py +++ b/plotly/graph_objects/carpet/aaxis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/carpet/aaxis/_tickformatstop.py b/plotly/graph_objects/carpet/aaxis/_tickformatstop.py index adde2ee62f..d0f42c5259 100644 --- a/plotly/graph_objects/carpet/aaxis/_tickformatstop.py +++ b/plotly/graph_objects/carpet/aaxis/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/carpet/aaxis/_title.py b/plotly/graph_objects/carpet/aaxis/_title.py index 05af694ef0..85e26901df 100644 --- a/plotly/graph_objects/carpet/aaxis/_title.py +++ b/plotly/graph_objects/carpet/aaxis/_title.py @@ -57,8 +57,10 @@ def text(self): Sets the title of this axis. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/carpet/aaxis/title/_font.py b/plotly/graph_objects/carpet/aaxis/title/_font.py index c345d0e908..7abed266fe 100644 --- a/plotly/graph_objects/carpet/aaxis/title/_font.py +++ b/plotly/graph_objects/carpet/aaxis/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/carpet/baxis/_tickfont.py b/plotly/graph_objects/carpet/baxis/_tickfont.py index c9e065b281..21f91e36b9 100644 --- a/plotly/graph_objects/carpet/baxis/_tickfont.py +++ b/plotly/graph_objects/carpet/baxis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/carpet/baxis/_tickformatstop.py b/plotly/graph_objects/carpet/baxis/_tickformatstop.py index d43aa2d5ee..cd24181878 100644 --- a/plotly/graph_objects/carpet/baxis/_tickformatstop.py +++ b/plotly/graph_objects/carpet/baxis/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/carpet/baxis/_title.py b/plotly/graph_objects/carpet/baxis/_title.py index 657a7905f4..923153f976 100644 --- a/plotly/graph_objects/carpet/baxis/_title.py +++ b/plotly/graph_objects/carpet/baxis/_title.py @@ -57,8 +57,10 @@ def text(self): Sets the title of this axis. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/carpet/baxis/title/_font.py b/plotly/graph_objects/carpet/baxis/title/_font.py index c647e4c52f..0ddbdd1d41 100644 --- a/plotly/graph_objects/carpet/baxis/title/_font.py +++ b/plotly/graph_objects/carpet/baxis/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/carpet/legendgrouptitle/_font.py b/plotly/graph_objects/carpet/legendgrouptitle/_font.py index ada3ce084a..b4027ad606 100644 --- a/plotly/graph_objects/carpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/carpet/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choropleth/_colorbar.py b/plotly/graph_objects/choropleth/_colorbar.py index ff73c8855b..a08ccddc51 100644 --- a/plotly/graph_objects/choropleth/_colorbar.py +++ b/plotly/graph_objects/choropleth/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -790,8 +792,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -832,8 +836,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choropleth/_legendgrouptitle.py b/plotly/graph_objects/choropleth/_legendgrouptitle.py index 4a93e13e72..63993107c2 100644 --- a/plotly/graph_objects/choropleth/_legendgrouptitle.py +++ b/plotly/graph_objects/choropleth/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choropleth/_stream.py b/plotly/graph_objects/choropleth/_stream.py index e221b79a84..e5d3229c4e 100644 --- a/plotly/graph_objects/choropleth/_stream.py +++ b/plotly/graph_objects/choropleth/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/choropleth/colorbar/_tickfont.py b/plotly/graph_objects/choropleth/colorbar/_tickfont.py index 07f8a3f718..9e5b67d313 100644 --- a/plotly/graph_objects/choropleth/colorbar/_tickfont.py +++ b/plotly/graph_objects/choropleth/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choropleth/colorbar/_tickformatstop.py b/plotly/graph_objects/choropleth/colorbar/_tickformatstop.py index aab079f688..f96ae9904e 100644 --- a/plotly/graph_objects/choropleth/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/choropleth/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choropleth/colorbar/_title.py b/plotly/graph_objects/choropleth/colorbar/_title.py index 53f7fe1b78..e35324ed0b 100644 --- a/plotly/graph_objects/choropleth/colorbar/_title.py +++ b/plotly/graph_objects/choropleth/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choropleth/colorbar/title/_font.py b/plotly/graph_objects/choropleth/colorbar/title/_font.py index afb030e225..460557a158 100644 --- a/plotly/graph_objects/choropleth/colorbar/title/_font.py +++ b/plotly/graph_objects/choropleth/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choropleth/hoverlabel/_font.py b/plotly/graph_objects/choropleth/hoverlabel/_font.py index b9c0ed8140..ad0ea86a79 100644 --- a/plotly/graph_objects/choropleth/hoverlabel/_font.py +++ b/plotly/graph_objects/choropleth/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choropleth/legendgrouptitle/_font.py b/plotly/graph_objects/choropleth/legendgrouptitle/_font.py index ca2a00871c..4c647c26d8 100644 --- a/plotly/graph_objects/choropleth/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choropleth/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choroplethmap/_colorbar.py b/plotly/graph_objects/choroplethmap/_colorbar.py index f0995ba62a..e8ea064f29 100644 --- a/plotly/graph_objects/choroplethmap/_colorbar.py +++ b/plotly/graph_objects/choroplethmap/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choroplethmap/_legendgrouptitle.py b/plotly/graph_objects/choroplethmap/_legendgrouptitle.py index 50cb181da0..bf3f72c063 100644 --- a/plotly/graph_objects/choroplethmap/_legendgrouptitle.py +++ b/plotly/graph_objects/choroplethmap/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choroplethmap/_stream.py b/plotly/graph_objects/choroplethmap/_stream.py index 53ebe042d8..6f3829b118 100644 --- a/plotly/graph_objects/choroplethmap/_stream.py +++ b/plotly/graph_objects/choroplethmap/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py b/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py index b89dc1cb21..88d001e16b 100644 --- a/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py +++ b/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choroplethmap/colorbar/_tickformatstop.py b/plotly/graph_objects/choroplethmap/colorbar/_tickformatstop.py index 8c6fbde793..36988c51ec 100644 --- a/plotly/graph_objects/choroplethmap/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/choroplethmap/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choroplethmap/colorbar/_title.py b/plotly/graph_objects/choroplethmap/colorbar/_title.py index 03e011b151..2e5c34d856 100644 --- a/plotly/graph_objects/choroplethmap/colorbar/_title.py +++ b/plotly/graph_objects/choroplethmap/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choroplethmap/colorbar/title/_font.py b/plotly/graph_objects/choroplethmap/colorbar/title/_font.py index 7797eaa079..563f879b15 100644 --- a/plotly/graph_objects/choroplethmap/colorbar/title/_font.py +++ b/plotly/graph_objects/choroplethmap/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choroplethmap/hoverlabel/_font.py b/plotly/graph_objects/choroplethmap/hoverlabel/_font.py index a3a3041f02..8d02464b16 100644 --- a/plotly/graph_objects/choroplethmap/hoverlabel/_font.py +++ b/plotly/graph_objects/choroplethmap/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py b/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py index f491ba9e66..6218a79e7d 100644 --- a/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/_colorbar.py b/plotly/graph_objects/choroplethmapbox/_colorbar.py index 6b95aed730..c550b8be9d 100644 --- a/plotly/graph_objects/choroplethmapbox/_colorbar.py +++ b/plotly/graph_objects/choroplethmapbox/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/_legendgrouptitle.py b/plotly/graph_objects/choroplethmapbox/_legendgrouptitle.py index 1cbe62455e..ae050ccf21 100644 --- a/plotly/graph_objects/choroplethmapbox/_legendgrouptitle.py +++ b/plotly/graph_objects/choroplethmapbox/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/_stream.py b/plotly/graph_objects/choroplethmapbox/_stream.py index 8fff18d866..bd3e37cff3 100644 --- a/plotly/graph_objects/choroplethmapbox/_stream.py +++ b/plotly/graph_objects/choroplethmapbox/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py b/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py index a1bee31f07..959640812e 100644 --- a/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py +++ b/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/colorbar/_tickformatstop.py b/plotly/graph_objects/choroplethmapbox/colorbar/_tickformatstop.py index 4367f1d3e8..5935ed37fc 100644 --- a/plotly/graph_objects/choroplethmapbox/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/choroplethmapbox/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/colorbar/_title.py b/plotly/graph_objects/choroplethmapbox/colorbar/_title.py index 7ec7878a47..0e80825e15 100644 --- a/plotly/graph_objects/choroplethmapbox/colorbar/_title.py +++ b/plotly/graph_objects/choroplethmapbox/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py b/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py index b144d14312..2de491f418 100644 --- a/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py +++ b/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py b/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py index 26dee5fb8a..3cb1da7812 100644 --- a/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py b/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py index 398934b1fa..76a891c41b 100644 --- a/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/cone/_colorbar.py b/plotly/graph_objects/cone/_colorbar.py index e0b71feb32..1d2eaeb463 100644 --- a/plotly/graph_objects/cone/_colorbar.py +++ b/plotly/graph_objects/cone/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/cone/_legendgrouptitle.py b/plotly/graph_objects/cone/_legendgrouptitle.py index a162805ae1..dd70a31d43 100644 --- a/plotly/graph_objects/cone/_legendgrouptitle.py +++ b/plotly/graph_objects/cone/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/cone/_stream.py b/plotly/graph_objects/cone/_stream.py index bb3f718d7d..9f27c06d6f 100644 --- a/plotly/graph_objects/cone/_stream.py +++ b/plotly/graph_objects/cone/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/cone/colorbar/_tickfont.py b/plotly/graph_objects/cone/colorbar/_tickfont.py index db90faf6dd..6bfc192e5e 100644 --- a/plotly/graph_objects/cone/colorbar/_tickfont.py +++ b/plotly/graph_objects/cone/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/cone/colorbar/_tickformatstop.py b/plotly/graph_objects/cone/colorbar/_tickformatstop.py index e360b8506f..8de5b18256 100644 --- a/plotly/graph_objects/cone/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/cone/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/cone/colorbar/_title.py b/plotly/graph_objects/cone/colorbar/_title.py index 4e600bae13..1b5a9537cf 100644 --- a/plotly/graph_objects/cone/colorbar/_title.py +++ b/plotly/graph_objects/cone/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/cone/colorbar/title/_font.py b/plotly/graph_objects/cone/colorbar/title/_font.py index b175a1a818..eef44778cc 100644 --- a/plotly/graph_objects/cone/colorbar/title/_font.py +++ b/plotly/graph_objects/cone/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/cone/hoverlabel/_font.py b/plotly/graph_objects/cone/hoverlabel/_font.py index 0b1710bf1f..8750476408 100644 --- a/plotly/graph_objects/cone/hoverlabel/_font.py +++ b/plotly/graph_objects/cone/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/cone/legendgrouptitle/_font.py b/plotly/graph_objects/cone/legendgrouptitle/_font.py index 3ba6839a7a..94eb3b0269 100644 --- a/plotly/graph_objects/cone/legendgrouptitle/_font.py +++ b/plotly/graph_objects/cone/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contour/_colorbar.py b/plotly/graph_objects/contour/_colorbar.py index 5bbba48e4b..b4002c2593 100644 --- a/plotly/graph_objects/contour/_colorbar.py +++ b/plotly/graph_objects/contour/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contour/_contours.py b/plotly/graph_objects/contour/_contours.py index d550b535f0..394436660d 100644 --- a/plotly/graph_objects/contour/_contours.py +++ b/plotly/graph_objects/contour/_contours.py @@ -99,8 +99,10 @@ def labelformat(self): https://github.com/d3/d3-format/tree/v1.4.5#d3-format. The 'labelformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contour/_legendgrouptitle.py b/plotly/graph_objects/contour/_legendgrouptitle.py index c245a09274..8fb99af1e9 100644 --- a/plotly/graph_objects/contour/_legendgrouptitle.py +++ b/plotly/graph_objects/contour/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contour/_line.py b/plotly/graph_objects/contour/_line.py index 219a90b1e4..f4a90ff222 100644 --- a/plotly/graph_objects/contour/_line.py +++ b/plotly/graph_objects/contour/_line.py @@ -42,10 +42,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/contour/_stream.py b/plotly/graph_objects/contour/_stream.py index 6b60fb16a7..6821505a62 100644 --- a/plotly/graph_objects/contour/_stream.py +++ b/plotly/graph_objects/contour/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/contour/_textfont.py b/plotly/graph_objects/contour/_textfont.py index a504a8db4c..4d5cf8de1f 100644 --- a/plotly/graph_objects/contour/_textfont.py +++ b/plotly/graph_objects/contour/_textfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contour/colorbar/_tickfont.py b/plotly/graph_objects/contour/colorbar/_tickfont.py index 7407c66832..0b49c606a9 100644 --- a/plotly/graph_objects/contour/colorbar/_tickfont.py +++ b/plotly/graph_objects/contour/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contour/colorbar/_tickformatstop.py b/plotly/graph_objects/contour/colorbar/_tickformatstop.py index 5f3bd89a1f..f393e1d8a1 100644 --- a/plotly/graph_objects/contour/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/contour/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contour/colorbar/_title.py b/plotly/graph_objects/contour/colorbar/_title.py index faac3892d6..8fc9c6f0e8 100644 --- a/plotly/graph_objects/contour/colorbar/_title.py +++ b/plotly/graph_objects/contour/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contour/colorbar/title/_font.py b/plotly/graph_objects/contour/colorbar/title/_font.py index 9b2d5703b6..ceeaed20af 100644 --- a/plotly/graph_objects/contour/colorbar/title/_font.py +++ b/plotly/graph_objects/contour/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contour/contours/_labelfont.py b/plotly/graph_objects/contour/contours/_labelfont.py index 7dce2cd5cf..f51f5090ec 100644 --- a/plotly/graph_objects/contour/contours/_labelfont.py +++ b/plotly/graph_objects/contour/contours/_labelfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contour/hoverlabel/_font.py b/plotly/graph_objects/contour/hoverlabel/_font.py index f11cb55d49..e610c3ba4d 100644 --- a/plotly/graph_objects/contour/hoverlabel/_font.py +++ b/plotly/graph_objects/contour/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/contour/legendgrouptitle/_font.py b/plotly/graph_objects/contour/legendgrouptitle/_font.py index 7a34cdb91e..d28cc7e38b 100644 --- a/plotly/graph_objects/contour/legendgrouptitle/_font.py +++ b/plotly/graph_objects/contour/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contourcarpet/_colorbar.py b/plotly/graph_objects/contourcarpet/_colorbar.py index 69c3d82783..d73b55b01d 100644 --- a/plotly/graph_objects/contourcarpet/_colorbar.py +++ b/plotly/graph_objects/contourcarpet/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contourcarpet/_contours.py b/plotly/graph_objects/contourcarpet/_contours.py index ac113ae557..a00882bab5 100644 --- a/plotly/graph_objects/contourcarpet/_contours.py +++ b/plotly/graph_objects/contourcarpet/_contours.py @@ -98,8 +98,10 @@ def labelformat(self): https://github.com/d3/d3-format/tree/v1.4.5#d3-format. The 'labelformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contourcarpet/_legendgrouptitle.py b/plotly/graph_objects/contourcarpet/_legendgrouptitle.py index 2756557439..72f70bb140 100644 --- a/plotly/graph_objects/contourcarpet/_legendgrouptitle.py +++ b/plotly/graph_objects/contourcarpet/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contourcarpet/_line.py b/plotly/graph_objects/contourcarpet/_line.py index 16c2cba494..ad00739818 100644 --- a/plotly/graph_objects/contourcarpet/_line.py +++ b/plotly/graph_objects/contourcarpet/_line.py @@ -42,10 +42,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/contourcarpet/_stream.py b/plotly/graph_objects/contourcarpet/_stream.py index 56a4a8c644..a86e9d06c5 100644 --- a/plotly/graph_objects/contourcarpet/_stream.py +++ b/plotly/graph_objects/contourcarpet/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py b/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py index 1edd71076b..dd3476df51 100644 --- a/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py +++ b/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contourcarpet/colorbar/_tickformatstop.py b/plotly/graph_objects/contourcarpet/colorbar/_tickformatstop.py index cb4579b844..58de731205 100644 --- a/plotly/graph_objects/contourcarpet/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/contourcarpet/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contourcarpet/colorbar/_title.py b/plotly/graph_objects/contourcarpet/colorbar/_title.py index 898cdefedd..ea8ca2096a 100644 --- a/plotly/graph_objects/contourcarpet/colorbar/_title.py +++ b/plotly/graph_objects/contourcarpet/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contourcarpet/colorbar/title/_font.py b/plotly/graph_objects/contourcarpet/colorbar/title/_font.py index 0974b0893d..4378424fc2 100644 --- a/plotly/graph_objects/contourcarpet/colorbar/title/_font.py +++ b/plotly/graph_objects/contourcarpet/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contourcarpet/contours/_labelfont.py b/plotly/graph_objects/contourcarpet/contours/_labelfont.py index e209248947..f6f24e4e7d 100644 --- a/plotly/graph_objects/contourcarpet/contours/_labelfont.py +++ b/plotly/graph_objects/contourcarpet/contours/_labelfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py b/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py index a60da113db..c76684d2bb 100644 --- a/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/densitymap/_colorbar.py b/plotly/graph_objects/densitymap/_colorbar.py index 51cf51fc9f..9d49ca1da1 100644 --- a/plotly/graph_objects/densitymap/_colorbar.py +++ b/plotly/graph_objects/densitymap/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -790,8 +792,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -832,8 +836,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/densitymap/_legendgrouptitle.py b/plotly/graph_objects/densitymap/_legendgrouptitle.py index 7a90ce76b9..e9357bea64 100644 --- a/plotly/graph_objects/densitymap/_legendgrouptitle.py +++ b/plotly/graph_objects/densitymap/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/densitymap/_stream.py b/plotly/graph_objects/densitymap/_stream.py index e284184c85..88a7806a3d 100644 --- a/plotly/graph_objects/densitymap/_stream.py +++ b/plotly/graph_objects/densitymap/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/densitymap/colorbar/_tickfont.py b/plotly/graph_objects/densitymap/colorbar/_tickfont.py index d6822a6a55..8968ee2593 100644 --- a/plotly/graph_objects/densitymap/colorbar/_tickfont.py +++ b/plotly/graph_objects/densitymap/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/densitymap/colorbar/_tickformatstop.py b/plotly/graph_objects/densitymap/colorbar/_tickformatstop.py index 4ab9da54b3..3316fe39f4 100644 --- a/plotly/graph_objects/densitymap/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/densitymap/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/densitymap/colorbar/_title.py b/plotly/graph_objects/densitymap/colorbar/_title.py index 5c5c0d72f5..cc202ae005 100644 --- a/plotly/graph_objects/densitymap/colorbar/_title.py +++ b/plotly/graph_objects/densitymap/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/densitymap/colorbar/title/_font.py b/plotly/graph_objects/densitymap/colorbar/title/_font.py index f49ee4b8ba..8192f96d29 100644 --- a/plotly/graph_objects/densitymap/colorbar/title/_font.py +++ b/plotly/graph_objects/densitymap/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/densitymap/hoverlabel/_font.py b/plotly/graph_objects/densitymap/hoverlabel/_font.py index c3d8da05cb..51ff0c3b99 100644 --- a/plotly/graph_objects/densitymap/hoverlabel/_font.py +++ b/plotly/graph_objects/densitymap/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/densitymap/legendgrouptitle/_font.py b/plotly/graph_objects/densitymap/legendgrouptitle/_font.py index da705c8a02..c0a13bd540 100644 --- a/plotly/graph_objects/densitymap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/densitymap/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/densitymapbox/_colorbar.py b/plotly/graph_objects/densitymapbox/_colorbar.py index 4abd239f4a..9defbd5509 100644 --- a/plotly/graph_objects/densitymapbox/_colorbar.py +++ b/plotly/graph_objects/densitymapbox/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/densitymapbox/_legendgrouptitle.py b/plotly/graph_objects/densitymapbox/_legendgrouptitle.py index 15debde7fd..e24aa27255 100644 --- a/plotly/graph_objects/densitymapbox/_legendgrouptitle.py +++ b/plotly/graph_objects/densitymapbox/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/densitymapbox/_stream.py b/plotly/graph_objects/densitymapbox/_stream.py index 75929b3984..3d83a967f3 100644 --- a/plotly/graph_objects/densitymapbox/_stream.py +++ b/plotly/graph_objects/densitymapbox/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py b/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py index 6fa3f18717..e1563e7d17 100644 --- a/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py +++ b/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/densitymapbox/colorbar/_tickformatstop.py b/plotly/graph_objects/densitymapbox/colorbar/_tickformatstop.py index c4c1c212b4..50b9e9e250 100644 --- a/plotly/graph_objects/densitymapbox/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/densitymapbox/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/densitymapbox/colorbar/_title.py b/plotly/graph_objects/densitymapbox/colorbar/_title.py index f58aaebf28..65791a737a 100644 --- a/plotly/graph_objects/densitymapbox/colorbar/_title.py +++ b/plotly/graph_objects/densitymapbox/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/densitymapbox/colorbar/title/_font.py b/plotly/graph_objects/densitymapbox/colorbar/title/_font.py index 939e45889a..d0e2a4c99f 100644 --- a/plotly/graph_objects/densitymapbox/colorbar/title/_font.py +++ b/plotly/graph_objects/densitymapbox/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/densitymapbox/hoverlabel/_font.py b/plotly/graph_objects/densitymapbox/hoverlabel/_font.py index 8d775bbc6a..54332c7bc7 100644 --- a/plotly/graph_objects/densitymapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/densitymapbox/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py b/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py index f2e936308f..58c9e61173 100644 --- a/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/funnel/_insidetextfont.py b/plotly/graph_objects/funnel/_insidetextfont.py index 23df81f961..ab34bc361c 100644 --- a/plotly/graph_objects/funnel/_insidetextfont.py +++ b/plotly/graph_objects/funnel/_insidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/_legendgrouptitle.py b/plotly/graph_objects/funnel/_legendgrouptitle.py index a8aad83d4c..e1986e41bb 100644 --- a/plotly/graph_objects/funnel/_legendgrouptitle.py +++ b/plotly/graph_objects/funnel/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/funnel/_outsidetextfont.py b/plotly/graph_objects/funnel/_outsidetextfont.py index f07448e6cd..6ec2b59886 100644 --- a/plotly/graph_objects/funnel/_outsidetextfont.py +++ b/plotly/graph_objects/funnel/_outsidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/_stream.py b/plotly/graph_objects/funnel/_stream.py index a063e0cf2d..8129070c03 100644 --- a/plotly/graph_objects/funnel/_stream.py +++ b/plotly/graph_objects/funnel/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/funnel/_textfont.py b/plotly/graph_objects/funnel/_textfont.py index 93b72bdb7e..319375d705 100644 --- a/plotly/graph_objects/funnel/_textfont.py +++ b/plotly/graph_objects/funnel/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/connector/_line.py b/plotly/graph_objects/funnel/connector/_line.py index 63d9952771..5c4a6b1740 100644 --- a/plotly/graph_objects/funnel/connector/_line.py +++ b/plotly/graph_objects/funnel/connector/_line.py @@ -41,10 +41,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/funnel/hoverlabel/_font.py b/plotly/graph_objects/funnel/hoverlabel/_font.py index 0e3aa2e3e8..d32bb40a44 100644 --- a/plotly/graph_objects/funnel/hoverlabel/_font.py +++ b/plotly/graph_objects/funnel/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/legendgrouptitle/_font.py b/plotly/graph_objects/funnel/legendgrouptitle/_font.py index 7d2f1c84b9..1827f6172e 100644 --- a/plotly/graph_objects/funnel/legendgrouptitle/_font.py +++ b/plotly/graph_objects/funnel/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/funnel/marker/_colorbar.py b/plotly/graph_objects/funnel/marker/_colorbar.py index 27962fa6ae..2e81606868 100644 --- a/plotly/graph_objects/funnel/marker/_colorbar.py +++ b/plotly/graph_objects/funnel/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py b/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py index bb7ef5f2e8..7f53d0b5b0 100644 --- a/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/funnel/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/funnel/marker/colorbar/_tickformatstop.py index 58f497e008..7d243b0258 100644 --- a/plotly/graph_objects/funnel/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/funnel/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/funnel/marker/colorbar/_title.py b/plotly/graph_objects/funnel/marker/colorbar/_title.py index 3244e7536a..87689a0e5d 100644 --- a/plotly/graph_objects/funnel/marker/colorbar/_title.py +++ b/plotly/graph_objects/funnel/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/funnel/marker/colorbar/title/_font.py b/plotly/graph_objects/funnel/marker/colorbar/title/_font.py index c384db3bce..23757de602 100644 --- a/plotly/graph_objects/funnel/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/funnel/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/funnelarea/_insidetextfont.py b/plotly/graph_objects/funnelarea/_insidetextfont.py index 04fbd9d825..b277e6858c 100644 --- a/plotly/graph_objects/funnelarea/_insidetextfont.py +++ b/plotly/graph_objects/funnelarea/_insidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/_legendgrouptitle.py b/plotly/graph_objects/funnelarea/_legendgrouptitle.py index 389f088cc8..9fd79d7ea5 100644 --- a/plotly/graph_objects/funnelarea/_legendgrouptitle.py +++ b/plotly/graph_objects/funnelarea/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/funnelarea/_stream.py b/plotly/graph_objects/funnelarea/_stream.py index 5fa40b6c09..0253d6abc4 100644 --- a/plotly/graph_objects/funnelarea/_stream.py +++ b/plotly/graph_objects/funnelarea/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/funnelarea/_textfont.py b/plotly/graph_objects/funnelarea/_textfont.py index 74b2b66b60..918b5f68ed 100644 --- a/plotly/graph_objects/funnelarea/_textfont.py +++ b/plotly/graph_objects/funnelarea/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/_title.py b/plotly/graph_objects/funnelarea/_title.py index f428227e2b..b5ae7e7844 100644 --- a/plotly/graph_objects/funnelarea/_title.py +++ b/plotly/graph_objects/funnelarea/_title.py @@ -59,8 +59,10 @@ def text(self): displayed. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/funnelarea/hoverlabel/_font.py b/plotly/graph_objects/funnelarea/hoverlabel/_font.py index cfe0e81847..96f24d3eb5 100644 --- a/plotly/graph_objects/funnelarea/hoverlabel/_font.py +++ b/plotly/graph_objects/funnelarea/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py b/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py index d259ee5742..ba0772e0e1 100644 --- a/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py +++ b/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/funnelarea/marker/_pattern.py b/plotly/graph_objects/funnelarea/marker/_pattern.py index 113d948c82..eb5bedacb3 100644 --- a/plotly/graph_objects/funnelarea/marker/_pattern.py +++ b/plotly/graph_objects/funnelarea/marker/_pattern.py @@ -163,9 +163,12 @@ def path(self): square from (0,0) to (`size`,`size`) to color. The 'path' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/title/_font.py b/plotly/graph_objects/funnelarea/title/_font.py index 9944b6f46b..bd7c9ca5b6 100644 --- a/plotly/graph_objects/funnelarea/title/_font.py +++ b/plotly/graph_objects/funnelarea/title/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/heatmap/_colorbar.py b/plotly/graph_objects/heatmap/_colorbar.py index 77547dcb03..500146bb05 100644 --- a/plotly/graph_objects/heatmap/_colorbar.py +++ b/plotly/graph_objects/heatmap/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/heatmap/_legendgrouptitle.py b/plotly/graph_objects/heatmap/_legendgrouptitle.py index d0e05281bd..d405f868e2 100644 --- a/plotly/graph_objects/heatmap/_legendgrouptitle.py +++ b/plotly/graph_objects/heatmap/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/heatmap/_stream.py b/plotly/graph_objects/heatmap/_stream.py index 812552e02c..bfd013b53a 100644 --- a/plotly/graph_objects/heatmap/_stream.py +++ b/plotly/graph_objects/heatmap/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/heatmap/_textfont.py b/plotly/graph_objects/heatmap/_textfont.py index 981e19e5bf..c12f472e14 100644 --- a/plotly/graph_objects/heatmap/_textfont.py +++ b/plotly/graph_objects/heatmap/_textfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/heatmap/colorbar/_tickfont.py b/plotly/graph_objects/heatmap/colorbar/_tickfont.py index f032c4dbdb..e5e2da88a2 100644 --- a/plotly/graph_objects/heatmap/colorbar/_tickfont.py +++ b/plotly/graph_objects/heatmap/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/heatmap/colorbar/_tickformatstop.py b/plotly/graph_objects/heatmap/colorbar/_tickformatstop.py index 6ae6a97313..9691d92764 100644 --- a/plotly/graph_objects/heatmap/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/heatmap/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/heatmap/colorbar/_title.py b/plotly/graph_objects/heatmap/colorbar/_title.py index 55fc6bbda9..df9221a985 100644 --- a/plotly/graph_objects/heatmap/colorbar/_title.py +++ b/plotly/graph_objects/heatmap/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/heatmap/colorbar/title/_font.py b/plotly/graph_objects/heatmap/colorbar/title/_font.py index 9d3ee65fc8..2b78e1d4f3 100644 --- a/plotly/graph_objects/heatmap/colorbar/title/_font.py +++ b/plotly/graph_objects/heatmap/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/heatmap/hoverlabel/_font.py b/plotly/graph_objects/heatmap/hoverlabel/_font.py index d7367e1f6a..af64666f7e 100644 --- a/plotly/graph_objects/heatmap/hoverlabel/_font.py +++ b/plotly/graph_objects/heatmap/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/heatmap/legendgrouptitle/_font.py b/plotly/graph_objects/heatmap/legendgrouptitle/_font.py index 7177944d50..ce69bcaa6b 100644 --- a/plotly/graph_objects/heatmap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/heatmap/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram/_insidetextfont.py b/plotly/graph_objects/histogram/_insidetextfont.py index 18d42d5385..891a9ccb3e 100644 --- a/plotly/graph_objects/histogram/_insidetextfont.py +++ b/plotly/graph_objects/histogram/_insidetextfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram/_legendgrouptitle.py b/plotly/graph_objects/histogram/_legendgrouptitle.py index 5eb952ffe6..3025ac335a 100644 --- a/plotly/graph_objects/histogram/_legendgrouptitle.py +++ b/plotly/graph_objects/histogram/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram/_outsidetextfont.py b/plotly/graph_objects/histogram/_outsidetextfont.py index 2e617b84b7..67d4b2b1ae 100644 --- a/plotly/graph_objects/histogram/_outsidetextfont.py +++ b/plotly/graph_objects/histogram/_outsidetextfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram/_stream.py b/plotly/graph_objects/histogram/_stream.py index fa73e1287d..03cd54ba5f 100644 --- a/plotly/graph_objects/histogram/_stream.py +++ b/plotly/graph_objects/histogram/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/histogram/_textfont.py b/plotly/graph_objects/histogram/_textfont.py index 820ae25c20..8fe8a14db3 100644 --- a/plotly/graph_objects/histogram/_textfont.py +++ b/plotly/graph_objects/histogram/_textfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram/hoverlabel/_font.py b/plotly/graph_objects/histogram/hoverlabel/_font.py index d8ae18106e..0f9d77c36e 100644 --- a/plotly/graph_objects/histogram/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/histogram/legendgrouptitle/_font.py b/plotly/graph_objects/histogram/legendgrouptitle/_font.py index be8b00ec48..0f8f4f305f 100644 --- a/plotly/graph_objects/histogram/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram/marker/_colorbar.py b/plotly/graph_objects/histogram/marker/_colorbar.py index aed44b61bb..3d7e40e9c7 100644 --- a/plotly/graph_objects/histogram/marker/_colorbar.py +++ b/plotly/graph_objects/histogram/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram/marker/_pattern.py b/plotly/graph_objects/histogram/marker/_pattern.py index 6835dff3ab..18199661d2 100644 --- a/plotly/graph_objects/histogram/marker/_pattern.py +++ b/plotly/graph_objects/histogram/marker/_pattern.py @@ -163,9 +163,12 @@ def path(self): square from (0,0) to (`size`,`size`) to color. The 'path' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py b/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py index 08006b5414..8e5ab4e886 100644 --- a/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/histogram/marker/colorbar/_tickformatstop.py index 0f7aed6588..93dcaa7afb 100644 --- a/plotly/graph_objects/histogram/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/histogram/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram/marker/colorbar/_title.py b/plotly/graph_objects/histogram/marker/colorbar/_title.py index b127dda294..d578435685 100644 --- a/plotly/graph_objects/histogram/marker/colorbar/_title.py +++ b/plotly/graph_objects/histogram/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram/marker/colorbar/title/_font.py b/plotly/graph_objects/histogram/marker/colorbar/title/_font.py index 78584b6575..719641918d 100644 --- a/plotly/graph_objects/histogram/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2d/_colorbar.py b/plotly/graph_objects/histogram2d/_colorbar.py index 4e23b1866b..9fecf2d0bd 100644 --- a/plotly/graph_objects/histogram2d/_colorbar.py +++ b/plotly/graph_objects/histogram2d/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2d/_legendgrouptitle.py b/plotly/graph_objects/histogram2d/_legendgrouptitle.py index ed054ba609..cd3ef35d15 100644 --- a/plotly/graph_objects/histogram2d/_legendgrouptitle.py +++ b/plotly/graph_objects/histogram2d/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2d/_stream.py b/plotly/graph_objects/histogram2d/_stream.py index dc626d10e6..7a40dfa631 100644 --- a/plotly/graph_objects/histogram2d/_stream.py +++ b/plotly/graph_objects/histogram2d/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/histogram2d/_textfont.py b/plotly/graph_objects/histogram2d/_textfont.py index e331e30b3e..778d6a6b13 100644 --- a/plotly/graph_objects/histogram2d/_textfont.py +++ b/plotly/graph_objects/histogram2d/_textfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2d/colorbar/_tickfont.py b/plotly/graph_objects/histogram2d/colorbar/_tickfont.py index 5ae64ef9f8..1afe772ab4 100644 --- a/plotly/graph_objects/histogram2d/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram2d/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2d/colorbar/_tickformatstop.py b/plotly/graph_objects/histogram2d/colorbar/_tickformatstop.py index 3a5ea0580a..e4406eaa54 100644 --- a/plotly/graph_objects/histogram2d/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/histogram2d/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2d/colorbar/_title.py b/plotly/graph_objects/histogram2d/colorbar/_title.py index d649f859d3..9a21e638a7 100644 --- a/plotly/graph_objects/histogram2d/colorbar/_title.py +++ b/plotly/graph_objects/histogram2d/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2d/colorbar/title/_font.py b/plotly/graph_objects/histogram2d/colorbar/title/_font.py index 87f893e392..0eced85dc5 100644 --- a/plotly/graph_objects/histogram2d/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram2d/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2d/hoverlabel/_font.py b/plotly/graph_objects/histogram2d/hoverlabel/_font.py index 080f6436db..1a86ebe597 100644 --- a/plotly/graph_objects/histogram2d/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram2d/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py b/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py index 5f0a78b491..8828016f8c 100644 --- a/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_colorbar.py b/plotly/graph_objects/histogram2dcontour/_colorbar.py index af8c526a5f..b3776f05a3 100644 --- a/plotly/graph_objects/histogram2dcontour/_colorbar.py +++ b/plotly/graph_objects/histogram2dcontour/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_contours.py b/plotly/graph_objects/histogram2dcontour/_contours.py index aef0de6749..6986c5b9ac 100644 --- a/plotly/graph_objects/histogram2dcontour/_contours.py +++ b/plotly/graph_objects/histogram2dcontour/_contours.py @@ -99,8 +99,10 @@ def labelformat(self): https://github.com/d3/d3-format/tree/v1.4.5#d3-format. The 'labelformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_legendgrouptitle.py b/plotly/graph_objects/histogram2dcontour/_legendgrouptitle.py index 6c00b9ea8d..0ff35929ba 100644 --- a/plotly/graph_objects/histogram2dcontour/_legendgrouptitle.py +++ b/plotly/graph_objects/histogram2dcontour/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_line.py b/plotly/graph_objects/histogram2dcontour/_line.py index 25bf5e5027..7b10a61feb 100644 --- a/plotly/graph_objects/histogram2dcontour/_line.py +++ b/plotly/graph_objects/histogram2dcontour/_line.py @@ -42,10 +42,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_stream.py b/plotly/graph_objects/histogram2dcontour/_stream.py index 9532eac830..8945036657 100644 --- a/plotly/graph_objects/histogram2dcontour/_stream.py +++ b/plotly/graph_objects/histogram2dcontour/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_textfont.py b/plotly/graph_objects/histogram2dcontour/_textfont.py index 19e95fe7f0..0e47f06bcf 100644 --- a/plotly/graph_objects/histogram2dcontour/_textfont.py +++ b/plotly/graph_objects/histogram2dcontour/_textfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py b/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py index a00a90d1ae..173460335d 100644 --- a/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/colorbar/_tickformatstop.py b/plotly/graph_objects/histogram2dcontour/colorbar/_tickformatstop.py index 483bb99d0d..c65ca5e98c 100644 --- a/plotly/graph_objects/histogram2dcontour/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/histogram2dcontour/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/colorbar/_title.py b/plotly/graph_objects/histogram2dcontour/colorbar/_title.py index c9fc6af062..821de682ac 100644 --- a/plotly/graph_objects/histogram2dcontour/colorbar/_title.py +++ b/plotly/graph_objects/histogram2dcontour/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py b/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py index 3fd491b587..e402b1bc5e 100644 --- a/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py b/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py index 54c1050dce..a958d679c8 100644 --- a/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py +++ b/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py b/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py index a9e43b64d8..a25ef884d3 100644 --- a/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py b/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py index d45ae8478c..a05ddfc22e 100644 --- a/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/icicle/_insidetextfont.py b/plotly/graph_objects/icicle/_insidetextfont.py index 4d9d84c8a6..d4f53cad22 100644 --- a/plotly/graph_objects/icicle/_insidetextfont.py +++ b/plotly/graph_objects/icicle/_insidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/_legendgrouptitle.py b/plotly/graph_objects/icicle/_legendgrouptitle.py index 3c66f13543..d887115304 100644 --- a/plotly/graph_objects/icicle/_legendgrouptitle.py +++ b/plotly/graph_objects/icicle/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/icicle/_outsidetextfont.py b/plotly/graph_objects/icicle/_outsidetextfont.py index 7e4b47964c..bffeb69c6f 100644 --- a/plotly/graph_objects/icicle/_outsidetextfont.py +++ b/plotly/graph_objects/icicle/_outsidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/_stream.py b/plotly/graph_objects/icicle/_stream.py index dc6c1a7a18..2e6cab1e13 100644 --- a/plotly/graph_objects/icicle/_stream.py +++ b/plotly/graph_objects/icicle/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/icicle/_textfont.py b/plotly/graph_objects/icicle/_textfont.py index 6f617f6b35..f96a40aa89 100644 --- a/plotly/graph_objects/icicle/_textfont.py +++ b/plotly/graph_objects/icicle/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/hoverlabel/_font.py b/plotly/graph_objects/icicle/hoverlabel/_font.py index bd136a58be..ca34ff2c19 100644 --- a/plotly/graph_objects/icicle/hoverlabel/_font.py +++ b/plotly/graph_objects/icicle/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/legendgrouptitle/_font.py b/plotly/graph_objects/icicle/legendgrouptitle/_font.py index 46ead356c1..26b40c6dec 100644 --- a/plotly/graph_objects/icicle/legendgrouptitle/_font.py +++ b/plotly/graph_objects/icicle/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/icicle/marker/_colorbar.py b/plotly/graph_objects/icicle/marker/_colorbar.py index f696a81b79..2af118e77f 100644 --- a/plotly/graph_objects/icicle/marker/_colorbar.py +++ b/plotly/graph_objects/icicle/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/icicle/marker/_pattern.py b/plotly/graph_objects/icicle/marker/_pattern.py index 72d11867a1..8346d26e5c 100644 --- a/plotly/graph_objects/icicle/marker/_pattern.py +++ b/plotly/graph_objects/icicle/marker/_pattern.py @@ -163,9 +163,12 @@ def path(self): square from (0,0) to (`size`,`size`) to color. The 'path' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py b/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py index 8c9bfd9a89..9e92994f00 100644 --- a/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/icicle/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/icicle/marker/colorbar/_tickformatstop.py index 967f5dd9da..eb35b8f74d 100644 --- a/plotly/graph_objects/icicle/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/icicle/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/icicle/marker/colorbar/_title.py b/plotly/graph_objects/icicle/marker/colorbar/_title.py index d6d1a5563e..1dd31431f0 100644 --- a/plotly/graph_objects/icicle/marker/colorbar/_title.py +++ b/plotly/graph_objects/icicle/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/icicle/marker/colorbar/title/_font.py b/plotly/graph_objects/icicle/marker/colorbar/title/_font.py index 5773a7ad0a..43fe1d5d65 100644 --- a/plotly/graph_objects/icicle/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/icicle/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/icicle/pathbar/_textfont.py b/plotly/graph_objects/icicle/pathbar/_textfont.py index 59e4081b86..a5b365f1f1 100644 --- a/plotly/graph_objects/icicle/pathbar/_textfont.py +++ b/plotly/graph_objects/icicle/pathbar/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/image/_legendgrouptitle.py b/plotly/graph_objects/image/_legendgrouptitle.py index c251d431f6..9056619f31 100644 --- a/plotly/graph_objects/image/_legendgrouptitle.py +++ b/plotly/graph_objects/image/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/image/_stream.py b/plotly/graph_objects/image/_stream.py index 3b32fab4d5..33b1df150e 100644 --- a/plotly/graph_objects/image/_stream.py +++ b/plotly/graph_objects/image/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/image/hoverlabel/_font.py b/plotly/graph_objects/image/hoverlabel/_font.py index f63ef42e14..f627f6c382 100644 --- a/plotly/graph_objects/image/hoverlabel/_font.py +++ b/plotly/graph_objects/image/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/image/legendgrouptitle/_font.py b/plotly/graph_objects/image/legendgrouptitle/_font.py index ca486c474b..08b63a68ed 100644 --- a/plotly/graph_objects/image/legendgrouptitle/_font.py +++ b/plotly/graph_objects/image/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/indicator/_delta.py b/plotly/graph_objects/indicator/_delta.py index 0c4d25465b..568a553d73 100644 --- a/plotly/graph_objects/indicator/_delta.py +++ b/plotly/graph_objects/indicator/_delta.py @@ -106,8 +106,10 @@ def prefix(self): Sets a prefix appearing before the delta. The 'prefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -163,8 +165,10 @@ def suffix(self): Sets a suffix appearing next to the delta. The 'suffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -185,8 +189,10 @@ def valueformat(self): https://github.com/d3/d3-format/tree/v1.4.5#d3-format. The 'valueformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/indicator/_legendgrouptitle.py b/plotly/graph_objects/indicator/_legendgrouptitle.py index cfb6561f21..7489dda038 100644 --- a/plotly/graph_objects/indicator/_legendgrouptitle.py +++ b/plotly/graph_objects/indicator/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/indicator/_number.py b/plotly/graph_objects/indicator/_number.py index 54b74ee0bd..85dbca5d9f 100644 --- a/plotly/graph_objects/indicator/_number.py +++ b/plotly/graph_objects/indicator/_number.py @@ -37,8 +37,10 @@ def prefix(self): Sets a prefix appearing before the number. The 'prefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -56,8 +58,10 @@ def suffix(self): Sets a suffix appearing next to the number. The 'suffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -78,8 +82,10 @@ def valueformat(self): https://github.com/d3/d3-format/tree/v1.4.5#d3-format. The 'valueformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/indicator/_stream.py b/plotly/graph_objects/indicator/_stream.py index 6a3373c284..534dbdb94c 100644 --- a/plotly/graph_objects/indicator/_stream.py +++ b/plotly/graph_objects/indicator/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/indicator/_title.py b/plotly/graph_objects/indicator/_title.py index 0954aa32d0..16014f2a95 100644 --- a/plotly/graph_objects/indicator/_title.py +++ b/plotly/graph_objects/indicator/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of this indicator. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/indicator/delta/_decreasing.py b/plotly/graph_objects/indicator/delta/_decreasing.py index 80b2b573a6..22a8335b4b 100644 --- a/plotly/graph_objects/indicator/delta/_decreasing.py +++ b/plotly/graph_objects/indicator/delta/_decreasing.py @@ -38,8 +38,10 @@ def symbol(self): Sets the symbol to display for increasing value The 'symbol' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/indicator/delta/_font.py b/plotly/graph_objects/indicator/delta/_font.py index 1f1bb7f3bd..ebf5ea7878 100644 --- a/plotly/graph_objects/indicator/delta/_font.py +++ b/plotly/graph_objects/indicator/delta/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/indicator/delta/_increasing.py b/plotly/graph_objects/indicator/delta/_increasing.py index ce40cdda12..7ef9f0f4f0 100644 --- a/plotly/graph_objects/indicator/delta/_increasing.py +++ b/plotly/graph_objects/indicator/delta/_increasing.py @@ -38,8 +38,10 @@ def symbol(self): Sets the symbol to display for increasing value The 'symbol' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/_axis.py b/plotly/graph_objects/indicator/gauge/_axis.py index 2e22352aad..c32f9769a2 100644 --- a/plotly/graph_objects/indicator/gauge/_axis.py +++ b/plotly/graph_objects/indicator/gauge/_axis.py @@ -406,8 +406,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -538,8 +540,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -580,8 +584,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/_step.py b/plotly/graph_objects/indicator/gauge/_step.py index 898d9f1837..8f18592071 100644 --- a/plotly/graph_objects/indicator/gauge/_step.py +++ b/plotly/graph_objects/indicator/gauge/_step.py @@ -63,8 +63,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -116,8 +118,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/axis/_tickfont.py b/plotly/graph_objects/indicator/gauge/axis/_tickfont.py index a8f413d646..96c0b7ac69 100644 --- a/plotly/graph_objects/indicator/gauge/axis/_tickfont.py +++ b/plotly/graph_objects/indicator/gauge/axis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/axis/_tickformatstop.py b/plotly/graph_objects/indicator/gauge/axis/_tickformatstop.py index fe479ae15d..8b2dc99bdb 100644 --- a/plotly/graph_objects/indicator/gauge/axis/_tickformatstop.py +++ b/plotly/graph_objects/indicator/gauge/axis/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/indicator/legendgrouptitle/_font.py b/plotly/graph_objects/indicator/legendgrouptitle/_font.py index ce991c6660..4fdab2538e 100644 --- a/plotly/graph_objects/indicator/legendgrouptitle/_font.py +++ b/plotly/graph_objects/indicator/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/indicator/number/_font.py b/plotly/graph_objects/indicator/number/_font.py index cee21b82d8..d979a25de5 100644 --- a/plotly/graph_objects/indicator/number/_font.py +++ b/plotly/graph_objects/indicator/number/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/indicator/title/_font.py b/plotly/graph_objects/indicator/title/_font.py index 015d802a3a..0160a7336e 100644 --- a/plotly/graph_objects/indicator/title/_font.py +++ b/plotly/graph_objects/indicator/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/isosurface/_colorbar.py b/plotly/graph_objects/isosurface/_colorbar.py index e30d17efdb..46a405d041 100644 --- a/plotly/graph_objects/isosurface/_colorbar.py +++ b/plotly/graph_objects/isosurface/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -790,8 +792,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -832,8 +836,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/isosurface/_legendgrouptitle.py b/plotly/graph_objects/isosurface/_legendgrouptitle.py index a55b0b442c..c2dc4a7bda 100644 --- a/plotly/graph_objects/isosurface/_legendgrouptitle.py +++ b/plotly/graph_objects/isosurface/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/isosurface/_stream.py b/plotly/graph_objects/isosurface/_stream.py index 84840c8d15..615f5ad7bc 100644 --- a/plotly/graph_objects/isosurface/_stream.py +++ b/plotly/graph_objects/isosurface/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/isosurface/colorbar/_tickfont.py b/plotly/graph_objects/isosurface/colorbar/_tickfont.py index 41b7ceb246..0e2d109013 100644 --- a/plotly/graph_objects/isosurface/colorbar/_tickfont.py +++ b/plotly/graph_objects/isosurface/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/isosurface/colorbar/_tickformatstop.py b/plotly/graph_objects/isosurface/colorbar/_tickformatstop.py index 2e80aadca1..c9289574b8 100644 --- a/plotly/graph_objects/isosurface/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/isosurface/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/isosurface/colorbar/_title.py b/plotly/graph_objects/isosurface/colorbar/_title.py index 24c2e1b0e1..e01c039558 100644 --- a/plotly/graph_objects/isosurface/colorbar/_title.py +++ b/plotly/graph_objects/isosurface/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/isosurface/colorbar/title/_font.py b/plotly/graph_objects/isosurface/colorbar/title/_font.py index 8dbca063fe..e85850fbdf 100644 --- a/plotly/graph_objects/isosurface/colorbar/title/_font.py +++ b/plotly/graph_objects/isosurface/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/isosurface/hoverlabel/_font.py b/plotly/graph_objects/isosurface/hoverlabel/_font.py index 90067280a8..52510ebcc0 100644 --- a/plotly/graph_objects/isosurface/hoverlabel/_font.py +++ b/plotly/graph_objects/isosurface/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/isosurface/legendgrouptitle/_font.py b/plotly/graph_objects/isosurface/legendgrouptitle/_font.py index 837a2239f0..5aa32f915e 100644 --- a/plotly/graph_objects/isosurface/legendgrouptitle/_font.py +++ b/plotly/graph_objects/isosurface/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/_annotation.py b/plotly/graph_objects/layout/_annotation.py index fefb7677b1..657aa65d7a 100644 --- a/plotly/graph_objects/layout/_annotation.py +++ b/plotly/graph_objects/layout/_annotation.py @@ -518,8 +518,10 @@ def hovertext(self): omitted or blank, no hover label will appear. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -543,8 +545,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -694,8 +698,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -717,8 +723,10 @@ def text(self): and `` are also supported. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/_font.py b/plotly/graph_objects/layout/_font.py index c75edab590..5fabeda19d 100644 --- a/plotly/graph_objects/layout/_font.py +++ b/plotly/graph_objects/layout/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/_image.py b/plotly/graph_objects/layout/_image.py index 1271b6d935..720f744e03 100644 --- a/plotly/graph_objects/layout/_image.py +++ b/plotly/graph_objects/layout/_image.py @@ -61,8 +61,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -199,8 +201,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/_mapbox.py b/plotly/graph_objects/layout/_mapbox.py index 11cd32d0d4..b421e232ca 100644 --- a/plotly/graph_objects/layout/_mapbox.py +++ b/plotly/graph_objects/layout/_mapbox.py @@ -33,7 +33,8 @@ def accesstoken(self): streets ) and/or a layout layer references the Mapbox server. The 'accesstoken' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/layout/_modebar.py b/plotly/graph_objects/layout/_modebar.py index 424a5c15dd..6121d9bec0 100644 --- a/plotly/graph_objects/layout/_modebar.py +++ b/plotly/graph_objects/layout/_modebar.py @@ -55,9 +55,12 @@ def add(self): "drawclosedpath", "drawcircle", "drawrect", "eraseshape". The 'add' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -173,9 +176,12 @@ def remove(self): "zoomOutMap", "zoomOutMapbox", "zoomin", "zoomout". The 'remove' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/layout/_newshape.py b/plotly/graph_objects/layout/_newshape.py index fda595218e..116e320b0f 100644 --- a/plotly/graph_objects/layout/_newshape.py +++ b/plotly/graph_objects/layout/_newshape.py @@ -173,8 +173,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -273,8 +275,10 @@ def name(self): Sets new shape name. The name appears as the legend item. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/_selection.py b/plotly/graph_objects/layout/_selection.py index ed157cc66c..70d19ee4f6 100644 --- a/plotly/graph_objects/layout/_selection.py +++ b/plotly/graph_objects/layout/_selection.py @@ -54,8 +54,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -93,8 +95,10 @@ def path(self): in data coordinates. Allowed segments are: M, L and Z. The 'path' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -119,8 +123,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/_shape.py b/plotly/graph_objects/layout/_shape.py index 4c8be9a612..fa8f18814f 100644 --- a/plotly/graph_objects/layout/_shape.py +++ b/plotly/graph_objects/layout/_shape.py @@ -183,8 +183,10 @@ def legendgroup(self): legend items. The 'legendgroup' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -292,8 +294,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -348,8 +352,10 @@ def path(self): purpose: 2015-02-21_13:45:56.789 The 'path' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -392,8 +398,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/_slider.py b/plotly/graph_objects/layout/_slider.py index 43bcedfc99..be19c080eb 100644 --- a/plotly/graph_objects/layout/_slider.py +++ b/plotly/graph_objects/layout/_slider.py @@ -254,8 +254,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -343,8 +345,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/_title.py b/plotly/graph_objects/layout/_title.py index d6f62d408c..0e03a11fde 100644 --- a/plotly/graph_objects/layout/_title.py +++ b/plotly/graph_objects/layout/_title.py @@ -122,8 +122,10 @@ def text(self): Sets the plot's title. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/_updatemenu.py b/plotly/graph_objects/layout/_updatemenu.py index a15aa2bada..79e207920d 100644 --- a/plotly/graph_objects/layout/_updatemenu.py +++ b/plotly/graph_objects/layout/_updatemenu.py @@ -212,8 +212,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -277,8 +279,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/_xaxis.py b/plotly/graph_objects/layout/_xaxis.py index f9e82b4aba..af8a1e58fa 100644 --- a/plotly/graph_objects/layout/_xaxis.py +++ b/plotly/graph_objects/layout/_xaxis.py @@ -619,10 +619,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -668,8 +672,10 @@ def hoverformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'hoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1443,10 +1449,14 @@ def spikedash(self): "5px,10px,2px,2px"). The 'spikedash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -1628,8 +1638,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1933,8 +1945,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -2000,8 +2014,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/_yaxis.py b/plotly/graph_objects/layout/_yaxis.py index a25795dd29..90feb4bbb1 100644 --- a/plotly/graph_objects/layout/_yaxis.py +++ b/plotly/graph_objects/layout/_yaxis.py @@ -641,10 +641,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -690,8 +694,10 @@ def hoverformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'hoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1452,10 +1458,14 @@ def spikedash(self): "5px,10px,2px,2px"). The 'spikedash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -1637,8 +1647,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1942,8 +1954,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -2009,8 +2023,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/annotation/_font.py b/plotly/graph_objects/layout/annotation/_font.py index b86fdf3055..623e5dde29 100644 --- a/plotly/graph_objects/layout/annotation/_font.py +++ b/plotly/graph_objects/layout/annotation/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/annotation/hoverlabel/_font.py b/plotly/graph_objects/layout/annotation/hoverlabel/_font.py index b255783d1b..5a09194954 100644 --- a/plotly/graph_objects/layout/annotation/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/annotation/hoverlabel/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/coloraxis/_colorbar.py b/plotly/graph_objects/layout/coloraxis/_colorbar.py index e042e033ba..6f2df106e9 100644 --- a/plotly/graph_objects/layout/coloraxis/_colorbar.py +++ b/plotly/graph_objects/layout/coloraxis/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py b/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py index c96c26848e..7fc330a613 100644 --- a/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py +++ b/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/coloraxis/colorbar/_tickformatstop.py b/plotly/graph_objects/layout/coloraxis/colorbar/_tickformatstop.py index 885b2c8896..94162c2469 100644 --- a/plotly/graph_objects/layout/coloraxis/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/layout/coloraxis/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/coloraxis/colorbar/_title.py b/plotly/graph_objects/layout/coloraxis/colorbar/_title.py index d2f579f9e5..6701bd3a58 100644 --- a/plotly/graph_objects/layout/coloraxis/colorbar/_title.py +++ b/plotly/graph_objects/layout/coloraxis/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py b/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py index bb317caf10..aa8b9568ed 100644 --- a/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py +++ b/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/geo/_lataxis.py b/plotly/graph_objects/layout/geo/_lataxis.py index bfe58346f7..ad389f8d63 100644 --- a/plotly/graph_objects/layout/geo/_lataxis.py +++ b/plotly/graph_objects/layout/geo/_lataxis.py @@ -68,10 +68,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/layout/geo/_lonaxis.py b/plotly/graph_objects/layout/geo/_lonaxis.py index cd01deadd7..e8f86a4258 100644 --- a/plotly/graph_objects/layout/geo/_lonaxis.py +++ b/plotly/graph_objects/layout/geo/_lonaxis.py @@ -68,10 +68,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/layout/hoverlabel/_font.py b/plotly/graph_objects/layout/hoverlabel/_font.py index 6117363914..56a0b4c007 100644 --- a/plotly/graph_objects/layout/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/hoverlabel/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py b/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py index 7585706c5c..ef93bf9329 100644 --- a/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py +++ b/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/legend/_font.py b/plotly/graph_objects/layout/legend/_font.py index cd5a74df6d..d4e5ca05a0 100644 --- a/plotly/graph_objects/layout/legend/_font.py +++ b/plotly/graph_objects/layout/legend/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/legend/_grouptitlefont.py b/plotly/graph_objects/layout/legend/_grouptitlefont.py index 7c4a5e7904..a559ae21c7 100644 --- a/plotly/graph_objects/layout/legend/_grouptitlefont.py +++ b/plotly/graph_objects/layout/legend/_grouptitlefont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/legend/_title.py b/plotly/graph_objects/layout/legend/_title.py index e8688fb68b..0843243f00 100644 --- a/plotly/graph_objects/layout/legend/_title.py +++ b/plotly/graph_objects/layout/legend/_title.py @@ -63,8 +63,10 @@ def text(self): Sets the title of the legend. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/legend/title/_font.py b/plotly/graph_objects/layout/legend/title/_font.py index 0db739dcce..5320a2e254 100644 --- a/plotly/graph_objects/layout/legend/title/_font.py +++ b/plotly/graph_objects/layout/legend/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/map/_layer.py b/plotly/graph_objects/layout/map/_layer.py index 8e7ae46f1b..0130b21ae2 100644 --- a/plotly/graph_objects/layout/map/_layer.py +++ b/plotly/graph_objects/layout/map/_layer.py @@ -37,8 +37,10 @@ def below(self): inserted above every existing layer. The 'below' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -207,8 +209,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -273,8 +277,10 @@ def sourceattribution(self): Sets the attribution for this source. The 'sourceattribution' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -294,8 +300,10 @@ def sourcelayer(self): that supports multiple layers. The 'sourcelayer' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -361,8 +369,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/map/layer/_symbol.py b/plotly/graph_objects/layout/map/layer/_symbol.py index 7b7d03beeb..3492d4e31e 100644 --- a/plotly/graph_objects/layout/map/layer/_symbol.py +++ b/plotly/graph_objects/layout/map/layer/_symbol.py @@ -17,8 +17,10 @@ def icon(self): list: https://www.mapbox.com/maki-icons/ The 'icon' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -82,8 +84,10 @@ def text(self): Sets the symbol text (map.layer.layout.text-field). The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/map/layer/symbol/_textfont.py b/plotly/graph_objects/layout/map/layer/symbol/_textfont.py index 24c9d3c37e..d8082dfd6d 100644 --- a/plotly/graph_objects/layout/map/layer/symbol/_textfont.py +++ b/plotly/graph_objects/layout/map/layer/symbol/_textfont.py @@ -40,7 +40,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/_layer.py b/plotly/graph_objects/layout/mapbox/_layer.py index 14a8adfcb5..cc9caa5483 100644 --- a/plotly/graph_objects/layout/mapbox/_layer.py +++ b/plotly/graph_objects/layout/mapbox/_layer.py @@ -37,8 +37,10 @@ def below(self): inserted above every existing layer. The 'below' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -208,8 +210,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -275,8 +279,10 @@ def sourceattribution(self): Sets the attribution for this source. The 'sourceattribution' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -296,8 +302,10 @@ def sourcelayer(self): that supports multiple layers. The 'sourcelayer' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -363,8 +371,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/layer/_symbol.py b/plotly/graph_objects/layout/mapbox/layer/_symbol.py index bf75c6a203..a74e3e5e2f 100644 --- a/plotly/graph_objects/layout/mapbox/layer/_symbol.py +++ b/plotly/graph_objects/layout/mapbox/layer/_symbol.py @@ -17,8 +17,10 @@ def icon(self): Full list: https://www.mapbox.com/maki-icons/ The 'icon' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -82,8 +84,10 @@ def text(self): Sets the symbol text (mapbox.layer.layout.text-field). The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py b/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py index 3cacf7ad26..83d43f2351 100644 --- a/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py +++ b/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py @@ -40,7 +40,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/layout/newselection/_line.py b/plotly/graph_objects/layout/newselection/_line.py index de8c836b0a..d4dcd504ab 100644 --- a/plotly/graph_objects/layout/newselection/_line.py +++ b/plotly/graph_objects/layout/newselection/_line.py @@ -42,10 +42,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/layout/newshape/_label.py b/plotly/graph_objects/layout/newshape/_label.py index b39de2acba..c0947e14f4 100644 --- a/plotly/graph_objects/layout/newshape/_label.py +++ b/plotly/graph_objects/layout/newshape/_label.py @@ -67,8 +67,10 @@ def text(self): for legend item if `name` is not provided. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -156,8 +158,10 @@ def texttemplate(self): `ycenter`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/newshape/_legendgrouptitle.py b/plotly/graph_objects/layout/newshape/_legendgrouptitle.py index 6b6c3e5d23..75f1120e50 100644 --- a/plotly/graph_objects/layout/newshape/_legendgrouptitle.py +++ b/plotly/graph_objects/layout/newshape/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/newshape/_line.py b/plotly/graph_objects/layout/newshape/_line.py index bb576ec5a0..6c4f9fe20e 100644 --- a/plotly/graph_objects/layout/newshape/_line.py +++ b/plotly/graph_objects/layout/newshape/_line.py @@ -42,10 +42,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/layout/newshape/label/_font.py b/plotly/graph_objects/layout/newshape/label/_font.py index 464f522ce1..0a63c6bea5 100644 --- a/plotly/graph_objects/layout/newshape/label/_font.py +++ b/plotly/graph_objects/layout/newshape/label/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py b/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py index 474d2c99f6..7039ae37db 100644 --- a/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py +++ b/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/polar/_angularaxis.py b/plotly/graph_objects/layout/polar/_angularaxis.py index 1451c9199d..af246e5609 100644 --- a/plotly/graph_objects/layout/polar/_angularaxis.py +++ b/plotly/graph_objects/layout/polar/_angularaxis.py @@ -302,10 +302,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -351,8 +355,10 @@ def hoverformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'hoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -812,8 +818,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -943,8 +951,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -985,8 +995,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/polar/_radialaxis.py b/plotly/graph_objects/layout/polar/_radialaxis.py index f2c10842ba..b527ea93c3 100644 --- a/plotly/graph_objects/layout/polar/_radialaxis.py +++ b/plotly/graph_objects/layout/polar/_radialaxis.py @@ -415,10 +415,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -464,8 +468,10 @@ def hoverformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'hoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -971,8 +977,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1102,8 +1110,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1144,8 +1154,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py b/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py index b9c1206cf7..c6c0878c94 100644 --- a/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py +++ b/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/polar/angularaxis/_tickformatstop.py b/plotly/graph_objects/layout/polar/angularaxis/_tickformatstop.py index 3af13ad31d..c3fc8f4ba7 100644 --- a/plotly/graph_objects/layout/polar/angularaxis/_tickformatstop.py +++ b/plotly/graph_objects/layout/polar/angularaxis/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py b/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py index 8c1282daa9..cf543c8c13 100644 --- a/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py +++ b/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/polar/radialaxis/_tickformatstop.py b/plotly/graph_objects/layout/polar/radialaxis/_tickformatstop.py index b302df1edc..c58993d701 100644 --- a/plotly/graph_objects/layout/polar/radialaxis/_tickformatstop.py +++ b/plotly/graph_objects/layout/polar/radialaxis/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/polar/radialaxis/_title.py b/plotly/graph_objects/layout/polar/radialaxis/_title.py index 50fc2ca9e0..25d35038c5 100644 --- a/plotly/graph_objects/layout/polar/radialaxis/_title.py +++ b/plotly/graph_objects/layout/polar/radialaxis/_title.py @@ -37,8 +37,10 @@ def text(self): Sets the title of this axis. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/polar/radialaxis/title/_font.py b/plotly/graph_objects/layout/polar/radialaxis/title/_font.py index 13b61d7478..038af99255 100644 --- a/plotly/graph_objects/layout/polar/radialaxis/title/_font.py +++ b/plotly/graph_objects/layout/polar/radialaxis/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/_annotation.py b/plotly/graph_objects/layout/scene/_annotation.py index 34d51defb6..301c560d20 100644 --- a/plotly/graph_objects/layout/scene/_annotation.py +++ b/plotly/graph_objects/layout/scene/_annotation.py @@ -388,8 +388,10 @@ def hovertext(self): omitted or blank, no hover label will appear. The 'hovertext' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -413,8 +415,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -564,8 +568,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -587,8 +593,10 @@ def text(self): and `` are also supported. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/_xaxis.py b/plotly/graph_objects/layout/scene/_xaxis.py index a45e719b6c..d176db1654 100644 --- a/plotly/graph_objects/layout/scene/_xaxis.py +++ b/plotly/graph_objects/layout/scene/_xaxis.py @@ -416,8 +416,10 @@ def hoverformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'hoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1016,8 +1018,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1124,8 +1128,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1166,8 +1172,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/_yaxis.py b/plotly/graph_objects/layout/scene/_yaxis.py index 45370b36e0..586ddd43c9 100644 --- a/plotly/graph_objects/layout/scene/_yaxis.py +++ b/plotly/graph_objects/layout/scene/_yaxis.py @@ -416,8 +416,10 @@ def hoverformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'hoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1016,8 +1018,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1124,8 +1128,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1166,8 +1172,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/_zaxis.py b/plotly/graph_objects/layout/scene/_zaxis.py index 36904b2ead..97503ee207 100644 --- a/plotly/graph_objects/layout/scene/_zaxis.py +++ b/plotly/graph_objects/layout/scene/_zaxis.py @@ -416,8 +416,10 @@ def hoverformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'hoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1016,8 +1018,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1124,8 +1128,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -1166,8 +1172,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/annotation/_font.py b/plotly/graph_objects/layout/scene/annotation/_font.py index 51be6330ea..8167b92445 100644 --- a/plotly/graph_objects/layout/scene/annotation/_font.py +++ b/plotly/graph_objects/layout/scene/annotation/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py b/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py index 1054d19c61..5a33456736 100644 --- a/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/xaxis/_tickfont.py b/plotly/graph_objects/layout/scene/xaxis/_tickfont.py index 7be1bd405d..20e4de02c3 100644 --- a/plotly/graph_objects/layout/scene/xaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/xaxis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/xaxis/_tickformatstop.py b/plotly/graph_objects/layout/scene/xaxis/_tickformatstop.py index 88713b8f62..76be0aa5d6 100644 --- a/plotly/graph_objects/layout/scene/xaxis/_tickformatstop.py +++ b/plotly/graph_objects/layout/scene/xaxis/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/xaxis/_title.py b/plotly/graph_objects/layout/scene/xaxis/_title.py index c67c4644d2..45676f6047 100644 --- a/plotly/graph_objects/layout/scene/xaxis/_title.py +++ b/plotly/graph_objects/layout/scene/xaxis/_title.py @@ -37,8 +37,10 @@ def text(self): Sets the title of this axis. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/xaxis/title/_font.py b/plotly/graph_objects/layout/scene/xaxis/title/_font.py index 7ad25ea71a..514c4e2c97 100644 --- a/plotly/graph_objects/layout/scene/xaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/xaxis/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/yaxis/_tickfont.py b/plotly/graph_objects/layout/scene/yaxis/_tickfont.py index 343506ac74..c7d561a1e7 100644 --- a/plotly/graph_objects/layout/scene/yaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/yaxis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/yaxis/_tickformatstop.py b/plotly/graph_objects/layout/scene/yaxis/_tickformatstop.py index d4235ce468..47fcb9df1b 100644 --- a/plotly/graph_objects/layout/scene/yaxis/_tickformatstop.py +++ b/plotly/graph_objects/layout/scene/yaxis/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/yaxis/_title.py b/plotly/graph_objects/layout/scene/yaxis/_title.py index 0686785e8d..2974c8cd69 100644 --- a/plotly/graph_objects/layout/scene/yaxis/_title.py +++ b/plotly/graph_objects/layout/scene/yaxis/_title.py @@ -37,8 +37,10 @@ def text(self): Sets the title of this axis. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/yaxis/title/_font.py b/plotly/graph_objects/layout/scene/yaxis/title/_font.py index ab71b1ff18..566dbfaa4c 100644 --- a/plotly/graph_objects/layout/scene/yaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/yaxis/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/zaxis/_tickfont.py b/plotly/graph_objects/layout/scene/zaxis/_tickfont.py index e943676db8..b051ab8435 100644 --- a/plotly/graph_objects/layout/scene/zaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/zaxis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/zaxis/_tickformatstop.py b/plotly/graph_objects/layout/scene/zaxis/_tickformatstop.py index b550ae6720..1aaa90d57f 100644 --- a/plotly/graph_objects/layout/scene/zaxis/_tickformatstop.py +++ b/plotly/graph_objects/layout/scene/zaxis/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/zaxis/_title.py b/plotly/graph_objects/layout/scene/zaxis/_title.py index 4e21e2d66f..6f8d49782a 100644 --- a/plotly/graph_objects/layout/scene/zaxis/_title.py +++ b/plotly/graph_objects/layout/scene/zaxis/_title.py @@ -37,8 +37,10 @@ def text(self): Sets the title of this axis. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/scene/zaxis/title/_font.py b/plotly/graph_objects/layout/scene/zaxis/title/_font.py index 8f55e99021..522956b409 100644 --- a/plotly/graph_objects/layout/scene/zaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/zaxis/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/selection/_line.py b/plotly/graph_objects/layout/selection/_line.py index 09108d307c..58bb036720 100644 --- a/plotly/graph_objects/layout/selection/_line.py +++ b/plotly/graph_objects/layout/selection/_line.py @@ -41,10 +41,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/layout/shape/_label.py b/plotly/graph_objects/layout/shape/_label.py index c6712e2214..10e9da1ea1 100644 --- a/plotly/graph_objects/layout/shape/_label.py +++ b/plotly/graph_objects/layout/shape/_label.py @@ -66,8 +66,10 @@ def text(self): item if `name` is not provided. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -155,8 +157,10 @@ def texttemplate(self): `ycenter`. The 'texttemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/shape/_legendgrouptitle.py b/plotly/graph_objects/layout/shape/_legendgrouptitle.py index ba1c0b87a0..7959e477df 100644 --- a/plotly/graph_objects/layout/shape/_legendgrouptitle.py +++ b/plotly/graph_objects/layout/shape/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/shape/_line.py b/plotly/graph_objects/layout/shape/_line.py index 67984aae86..bdc4caf8bc 100644 --- a/plotly/graph_objects/layout/shape/_line.py +++ b/plotly/graph_objects/layout/shape/_line.py @@ -41,10 +41,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/layout/shape/label/_font.py b/plotly/graph_objects/layout/shape/label/_font.py index 62e624efda..853caea07b 100644 --- a/plotly/graph_objects/layout/shape/label/_font.py +++ b/plotly/graph_objects/layout/shape/label/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py b/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py index f1ec6a9307..a20a7646ba 100644 --- a/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py +++ b/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/slider/_currentvalue.py b/plotly/graph_objects/layout/slider/_currentvalue.py index aab3bab6be..5d63b1f50a 100644 --- a/plotly/graph_objects/layout/slider/_currentvalue.py +++ b/plotly/graph_objects/layout/slider/_currentvalue.py @@ -58,8 +58,10 @@ def prefix(self): label. The 'prefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -78,8 +80,10 @@ def suffix(self): label. The 'suffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/slider/_font.py b/plotly/graph_objects/layout/slider/_font.py index 626d4de7af..0632d058f9 100644 --- a/plotly/graph_objects/layout/slider/_font.py +++ b/plotly/graph_objects/layout/slider/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/slider/_step.py b/plotly/graph_objects/layout/slider/_step.py index 2d007ee321..6d8e1e9f58 100644 --- a/plotly/graph_objects/layout/slider/_step.py +++ b/plotly/graph_objects/layout/slider/_step.py @@ -75,8 +75,10 @@ def label(self): Sets the text label to appear on the slider The 'label' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -126,8 +128,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -152,8 +156,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -172,8 +178,10 @@ def value(self): programatically. Defaults to the slider label if not provided. The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/slider/currentvalue/_font.py b/plotly/graph_objects/layout/slider/currentvalue/_font.py index d9c9120a4a..1bc7663adc 100644 --- a/plotly/graph_objects/layout/slider/currentvalue/_font.py +++ b/plotly/graph_objects/layout/slider/currentvalue/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/smith/_imaginaryaxis.py b/plotly/graph_objects/layout/smith/_imaginaryaxis.py index d0515717a3..e92fb82220 100644 --- a/plotly/graph_objects/layout/smith/_imaginaryaxis.py +++ b/plotly/graph_objects/layout/smith/_imaginaryaxis.py @@ -92,10 +92,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -141,8 +145,10 @@ def hoverformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'hoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -404,8 +410,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -442,8 +450,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -484,8 +494,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/smith/_realaxis.py b/plotly/graph_objects/layout/smith/_realaxis.py index 96e3b83ef4..86e5378d4a 100644 --- a/plotly/graph_objects/layout/smith/_realaxis.py +++ b/plotly/graph_objects/layout/smith/_realaxis.py @@ -94,10 +94,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -143,8 +147,10 @@ def hoverformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'hoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -450,8 +456,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -488,8 +496,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -530,8 +540,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py b/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py index 6aab049821..3cef757957 100644 --- a/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py +++ b/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/smith/realaxis/_tickfont.py b/plotly/graph_objects/layout/smith/realaxis/_tickfont.py index 74bc9968a0..b8e308ce9a 100644 --- a/plotly/graph_objects/layout/smith/realaxis/_tickfont.py +++ b/plotly/graph_objects/layout/smith/realaxis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/_aaxis.py b/plotly/graph_objects/layout/ternary/_aaxis.py index c33a332320..6cbd10a40f 100644 --- a/plotly/graph_objects/layout/ternary/_aaxis.py +++ b/plotly/graph_objects/layout/ternary/_aaxis.py @@ -169,10 +169,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -218,8 +222,10 @@ def hoverformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'hoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -633,8 +639,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -765,8 +773,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -807,8 +817,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/_baxis.py b/plotly/graph_objects/layout/ternary/_baxis.py index c53130de61..f6c400929e 100644 --- a/plotly/graph_objects/layout/ternary/_baxis.py +++ b/plotly/graph_objects/layout/ternary/_baxis.py @@ -169,10 +169,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -218,8 +222,10 @@ def hoverformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'hoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -633,8 +639,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -765,8 +773,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -807,8 +817,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/_caxis.py b/plotly/graph_objects/layout/ternary/_caxis.py index e070e2e695..13db7fb089 100644 --- a/plotly/graph_objects/layout/ternary/_caxis.py +++ b/plotly/graph_objects/layout/ternary/_caxis.py @@ -169,10 +169,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- @@ -218,8 +222,10 @@ def hoverformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'hoverformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -633,8 +639,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -765,8 +773,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -807,8 +817,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py b/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py index c2f8af7a41..1e74f4357b 100644 --- a/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/aaxis/_tickformatstop.py b/plotly/graph_objects/layout/ternary/aaxis/_tickformatstop.py index 32e8ed92d0..f96f80d3a6 100644 --- a/plotly/graph_objects/layout/ternary/aaxis/_tickformatstop.py +++ b/plotly/graph_objects/layout/ternary/aaxis/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/aaxis/_title.py b/plotly/graph_objects/layout/ternary/aaxis/_title.py index 921bee1b3c..941dee68c4 100644 --- a/plotly/graph_objects/layout/ternary/aaxis/_title.py +++ b/plotly/graph_objects/layout/ternary/aaxis/_title.py @@ -37,8 +37,10 @@ def text(self): Sets the title of this axis. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/aaxis/title/_font.py b/plotly/graph_objects/layout/ternary/aaxis/title/_font.py index 6adbdb7fe4..563b1c1588 100644 --- a/plotly/graph_objects/layout/ternary/aaxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/aaxis/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/baxis/_tickfont.py b/plotly/graph_objects/layout/ternary/baxis/_tickfont.py index 8725b9179c..9ccdc77575 100644 --- a/plotly/graph_objects/layout/ternary/baxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/baxis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/baxis/_tickformatstop.py b/plotly/graph_objects/layout/ternary/baxis/_tickformatstop.py index 6fd8e863a6..1befcc2636 100644 --- a/plotly/graph_objects/layout/ternary/baxis/_tickformatstop.py +++ b/plotly/graph_objects/layout/ternary/baxis/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/baxis/_title.py b/plotly/graph_objects/layout/ternary/baxis/_title.py index 6f6dc6c1fc..37e89fe3da 100644 --- a/plotly/graph_objects/layout/ternary/baxis/_title.py +++ b/plotly/graph_objects/layout/ternary/baxis/_title.py @@ -37,8 +37,10 @@ def text(self): Sets the title of this axis. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/baxis/title/_font.py b/plotly/graph_objects/layout/ternary/baxis/title/_font.py index 9ae2e3bb7c..c467b7cbc1 100644 --- a/plotly/graph_objects/layout/ternary/baxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/baxis/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/caxis/_tickfont.py b/plotly/graph_objects/layout/ternary/caxis/_tickfont.py index cbfb25bee7..137e45a74c 100644 --- a/plotly/graph_objects/layout/ternary/caxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/caxis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/caxis/_tickformatstop.py b/plotly/graph_objects/layout/ternary/caxis/_tickformatstop.py index f91544eb0b..6887126be2 100644 --- a/plotly/graph_objects/layout/ternary/caxis/_tickformatstop.py +++ b/plotly/graph_objects/layout/ternary/caxis/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/caxis/_title.py b/plotly/graph_objects/layout/ternary/caxis/_title.py index 0fe5e6e3df..23dcd47322 100644 --- a/plotly/graph_objects/layout/ternary/caxis/_title.py +++ b/plotly/graph_objects/layout/ternary/caxis/_title.py @@ -37,8 +37,10 @@ def text(self): Sets the title of this axis. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/ternary/caxis/title/_font.py b/plotly/graph_objects/layout/ternary/caxis/title/_font.py index ffec9645b2..8a104bae65 100644 --- a/plotly/graph_objects/layout/ternary/caxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/caxis/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/title/_font.py b/plotly/graph_objects/layout/title/_font.py index e339bae120..c46490053a 100644 --- a/plotly/graph_objects/layout/title/_font.py +++ b/plotly/graph_objects/layout/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/title/_subtitle.py b/plotly/graph_objects/layout/title/_subtitle.py index 13b9c3f2e5..c59365885b 100644 --- a/plotly/graph_objects/layout/title/_subtitle.py +++ b/plotly/graph_objects/layout/title/_subtitle.py @@ -37,8 +37,10 @@ def text(self): Sets the plot's subtitle. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/title/subtitle/_font.py b/plotly/graph_objects/layout/title/subtitle/_font.py index 7e42f04b3a..d3c1d8e10c 100644 --- a/plotly/graph_objects/layout/title/subtitle/_font.py +++ b/plotly/graph_objects/layout/title/subtitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/updatemenu/_button.py b/plotly/graph_objects/layout/updatemenu/_button.py index 070e623a45..80665391de 100644 --- a/plotly/graph_objects/layout/updatemenu/_button.py +++ b/plotly/graph_objects/layout/updatemenu/_button.py @@ -102,8 +102,10 @@ def label(self): Sets the text label to appear on the button. The 'label' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -152,8 +154,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -178,8 +182,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/updatemenu/_font.py b/plotly/graph_objects/layout/updatemenu/_font.py index 816f6271a2..50fb072c32 100644 --- a/plotly/graph_objects/layout/updatemenu/_font.py +++ b/plotly/graph_objects/layout/updatemenu/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_minor.py b/plotly/graph_objects/layout/xaxis/_minor.py index 90d590c265..ccf1fb6579 100644 --- a/plotly/graph_objects/layout/xaxis/_minor.py +++ b/plotly/graph_objects/layout/xaxis/_minor.py @@ -92,10 +92,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_rangebreak.py b/plotly/graph_objects/layout/xaxis/_rangebreak.py index 0af75bc0c9..5af33f6cb4 100644 --- a/plotly/graph_objects/layout/xaxis/_rangebreak.py +++ b/plotly/graph_objects/layout/xaxis/_rangebreak.py @@ -93,8 +93,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -149,8 +151,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_tickfont.py b/plotly/graph_objects/layout/xaxis/_tickfont.py index b90a339bca..6a4c30abcc 100644 --- a/plotly/graph_objects/layout/xaxis/_tickfont.py +++ b/plotly/graph_objects/layout/xaxis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_tickformatstop.py b/plotly/graph_objects/layout/xaxis/_tickformatstop.py index aede087f8e..35922f35d7 100644 --- a/plotly/graph_objects/layout/xaxis/_tickformatstop.py +++ b/plotly/graph_objects/layout/xaxis/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_title.py b/plotly/graph_objects/layout/xaxis/_title.py index 9a76fbb5f3..a95c1acf2b 100644 --- a/plotly/graph_objects/layout/xaxis/_title.py +++ b/plotly/graph_objects/layout/xaxis/_title.py @@ -63,8 +63,10 @@ def text(self): Sets the title of this axis. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/rangeselector/_button.py b/plotly/graph_objects/layout/xaxis/rangeselector/_button.py index ca08b818aa..9ca667dabc 100644 --- a/plotly/graph_objects/layout/xaxis/rangeselector/_button.py +++ b/plotly/graph_objects/layout/xaxis/rangeselector/_button.py @@ -44,8 +44,10 @@ def label(self): Sets the text label to appear on the button. The 'label' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -69,8 +71,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -146,8 +150,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/rangeselector/_font.py b/plotly/graph_objects/layout/xaxis/rangeselector/_font.py index fbe19d8ef2..10a68ef7a4 100644 --- a/plotly/graph_objects/layout/xaxis/rangeselector/_font.py +++ b/plotly/graph_objects/layout/xaxis/rangeselector/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/title/_font.py b/plotly/graph_objects/layout/xaxis/title/_font.py index 93f131b3c9..de47347705 100644 --- a/plotly/graph_objects/layout/xaxis/title/_font.py +++ b/plotly/graph_objects/layout/xaxis/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/_minor.py b/plotly/graph_objects/layout/yaxis/_minor.py index c9c0490da2..f73510462a 100644 --- a/plotly/graph_objects/layout/yaxis/_minor.py +++ b/plotly/graph_objects/layout/yaxis/_minor.py @@ -92,10 +92,14 @@ def griddash(self): "5px,10px,2px,2px"). The 'griddash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/_rangebreak.py b/plotly/graph_objects/layout/yaxis/_rangebreak.py index 81c7658e89..dd80f7ce0a 100644 --- a/plotly/graph_objects/layout/yaxis/_rangebreak.py +++ b/plotly/graph_objects/layout/yaxis/_rangebreak.py @@ -93,8 +93,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -149,8 +151,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/_tickfont.py b/plotly/graph_objects/layout/yaxis/_tickfont.py index 69b8ba325e..a24912e79c 100644 --- a/plotly/graph_objects/layout/yaxis/_tickfont.py +++ b/plotly/graph_objects/layout/yaxis/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/_tickformatstop.py b/plotly/graph_objects/layout/yaxis/_tickformatstop.py index dcf3bfe770..092dafcef0 100644 --- a/plotly/graph_objects/layout/yaxis/_tickformatstop.py +++ b/plotly/graph_objects/layout/yaxis/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/_title.py b/plotly/graph_objects/layout/yaxis/_title.py index a0de5cd3ce..2e1616b213 100644 --- a/plotly/graph_objects/layout/yaxis/_title.py +++ b/plotly/graph_objects/layout/yaxis/_title.py @@ -63,8 +63,10 @@ def text(self): Sets the title of this axis. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/title/_font.py b/plotly/graph_objects/layout/yaxis/title/_font.py index 6a289860e1..5c00c47536 100644 --- a/plotly/graph_objects/layout/yaxis/title/_font.py +++ b/plotly/graph_objects/layout/yaxis/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/mesh3d/_colorbar.py b/plotly/graph_objects/mesh3d/_colorbar.py index 3312dff7db..59a0376986 100644 --- a/plotly/graph_objects/mesh3d/_colorbar.py +++ b/plotly/graph_objects/mesh3d/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/mesh3d/_legendgrouptitle.py b/plotly/graph_objects/mesh3d/_legendgrouptitle.py index 369aa74a6d..05509de216 100644 --- a/plotly/graph_objects/mesh3d/_legendgrouptitle.py +++ b/plotly/graph_objects/mesh3d/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/mesh3d/_stream.py b/plotly/graph_objects/mesh3d/_stream.py index 564266822a..d006a71266 100644 --- a/plotly/graph_objects/mesh3d/_stream.py +++ b/plotly/graph_objects/mesh3d/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/mesh3d/colorbar/_tickfont.py b/plotly/graph_objects/mesh3d/colorbar/_tickfont.py index fb59345262..6286daaf84 100644 --- a/plotly/graph_objects/mesh3d/colorbar/_tickfont.py +++ b/plotly/graph_objects/mesh3d/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/mesh3d/colorbar/_tickformatstop.py b/plotly/graph_objects/mesh3d/colorbar/_tickformatstop.py index e5b60af774..b87ef8fe2c 100644 --- a/plotly/graph_objects/mesh3d/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/mesh3d/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/mesh3d/colorbar/_title.py b/plotly/graph_objects/mesh3d/colorbar/_title.py index 48d4b3d89c..7d9ce1abc1 100644 --- a/plotly/graph_objects/mesh3d/colorbar/_title.py +++ b/plotly/graph_objects/mesh3d/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/mesh3d/colorbar/title/_font.py b/plotly/graph_objects/mesh3d/colorbar/title/_font.py index 030c4d455b..6437ddc6f9 100644 --- a/plotly/graph_objects/mesh3d/colorbar/title/_font.py +++ b/plotly/graph_objects/mesh3d/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/mesh3d/hoverlabel/_font.py b/plotly/graph_objects/mesh3d/hoverlabel/_font.py index 5e5cd9e143..3da740b442 100644 --- a/plotly/graph_objects/mesh3d/hoverlabel/_font.py +++ b/plotly/graph_objects/mesh3d/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py b/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py index 2a3159c972..ef79f51734 100644 --- a/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/ohlc/_legendgrouptitle.py b/plotly/graph_objects/ohlc/_legendgrouptitle.py index bdee0e3217..08d63da8c3 100644 --- a/plotly/graph_objects/ohlc/_legendgrouptitle.py +++ b/plotly/graph_objects/ohlc/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/ohlc/_line.py b/plotly/graph_objects/ohlc/_line.py index a1cdee1b3e..c4c0dad5bf 100644 --- a/plotly/graph_objects/ohlc/_line.py +++ b/plotly/graph_objects/ohlc/_line.py @@ -21,10 +21,14 @@ def dash(self): `decreasing.line.dash`. The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/ohlc/_stream.py b/plotly/graph_objects/ohlc/_stream.py index ac3019dc53..f4cf876124 100644 --- a/plotly/graph_objects/ohlc/_stream.py +++ b/plotly/graph_objects/ohlc/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/ohlc/decreasing/_line.py b/plotly/graph_objects/ohlc/decreasing/_line.py index 8802933ebb..1257d7b9dd 100644 --- a/plotly/graph_objects/ohlc/decreasing/_line.py +++ b/plotly/graph_objects/ohlc/decreasing/_line.py @@ -41,10 +41,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/ohlc/hoverlabel/_font.py b/plotly/graph_objects/ohlc/hoverlabel/_font.py index f1b79c87d5..0bda019973 100644 --- a/plotly/graph_objects/ohlc/hoverlabel/_font.py +++ b/plotly/graph_objects/ohlc/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/ohlc/increasing/_line.py b/plotly/graph_objects/ohlc/increasing/_line.py index 42b50b6622..f2e9be1cc7 100644 --- a/plotly/graph_objects/ohlc/increasing/_line.py +++ b/plotly/graph_objects/ohlc/increasing/_line.py @@ -41,10 +41,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/ohlc/legendgrouptitle/_font.py b/plotly/graph_objects/ohlc/legendgrouptitle/_font.py index 09fddfe47c..49a6ca59c4 100644 --- a/plotly/graph_objects/ohlc/legendgrouptitle/_font.py +++ b/plotly/graph_objects/ohlc/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcats/_dimension.py b/plotly/graph_objects/parcats/_dimension.py index 7c28bbce94..a4fc4b4e39 100644 --- a/plotly/graph_objects/parcats/_dimension.py +++ b/plotly/graph_objects/parcats/_dimension.py @@ -117,8 +117,10 @@ def label(self): The shown name of the dimension. The 'label' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcats/_labelfont.py b/plotly/graph_objects/parcats/_labelfont.py index ad3c87bdda..a9152ba64e 100644 --- a/plotly/graph_objects/parcats/_labelfont.py +++ b/plotly/graph_objects/parcats/_labelfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcats/_legendgrouptitle.py b/plotly/graph_objects/parcats/_legendgrouptitle.py index 13bb84c5d1..0dd11f8475 100644 --- a/plotly/graph_objects/parcats/_legendgrouptitle.py +++ b/plotly/graph_objects/parcats/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcats/_line.py b/plotly/graph_objects/parcats/_line.py index 675d2ee436..c9a1fe501d 100644 --- a/plotly/graph_objects/parcats/_line.py +++ b/plotly/graph_objects/parcats/_line.py @@ -311,8 +311,10 @@ def hovertemplate(self): ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcats/_stream.py b/plotly/graph_objects/parcats/_stream.py index dbce4691d4..629ea602c7 100644 --- a/plotly/graph_objects/parcats/_stream.py +++ b/plotly/graph_objects/parcats/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/parcats/_tickfont.py b/plotly/graph_objects/parcats/_tickfont.py index e0e70873b9..aa8c254463 100644 --- a/plotly/graph_objects/parcats/_tickfont.py +++ b/plotly/graph_objects/parcats/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcats/legendgrouptitle/_font.py b/plotly/graph_objects/parcats/legendgrouptitle/_font.py index e14f875cf3..8373ad3c5f 100644 --- a/plotly/graph_objects/parcats/legendgrouptitle/_font.py +++ b/plotly/graph_objects/parcats/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcats/line/_colorbar.py b/plotly/graph_objects/parcats/line/_colorbar.py index 6ce49e4784..4e4cd56f63 100644 --- a/plotly/graph_objects/parcats/line/_colorbar.py +++ b/plotly/graph_objects/parcats/line/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcats/line/colorbar/_tickfont.py b/plotly/graph_objects/parcats/line/colorbar/_tickfont.py index b2517ba5ed..69ab8119aa 100644 --- a/plotly/graph_objects/parcats/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/parcats/line/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcats/line/colorbar/_tickformatstop.py b/plotly/graph_objects/parcats/line/colorbar/_tickformatstop.py index 6e671c1763..e589e272d0 100644 --- a/plotly/graph_objects/parcats/line/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/parcats/line/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcats/line/colorbar/_title.py b/plotly/graph_objects/parcats/line/colorbar/_title.py index 6f607755d7..21191d934f 100644 --- a/plotly/graph_objects/parcats/line/colorbar/_title.py +++ b/plotly/graph_objects/parcats/line/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcats/line/colorbar/title/_font.py b/plotly/graph_objects/parcats/line/colorbar/title/_font.py index fd4403a27d..6a4f34fd06 100644 --- a/plotly/graph_objects/parcats/line/colorbar/title/_font.py +++ b/plotly/graph_objects/parcats/line/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcoords/_dimension.py b/plotly/graph_objects/parcoords/_dimension.py index 336cb6ec66..6e86c361cf 100644 --- a/plotly/graph_objects/parcoords/_dimension.py +++ b/plotly/graph_objects/parcoords/_dimension.py @@ -64,8 +64,10 @@ def label(self): The shown name of the dimension. The 'label' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -107,8 +109,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -162,8 +166,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -190,8 +196,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcoords/_labelfont.py b/plotly/graph_objects/parcoords/_labelfont.py index 6fb83878ed..a6cfde93f5 100644 --- a/plotly/graph_objects/parcoords/_labelfont.py +++ b/plotly/graph_objects/parcoords/_labelfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcoords/_legendgrouptitle.py b/plotly/graph_objects/parcoords/_legendgrouptitle.py index 057376e7e4..125f8a51d6 100644 --- a/plotly/graph_objects/parcoords/_legendgrouptitle.py +++ b/plotly/graph_objects/parcoords/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcoords/_rangefont.py b/plotly/graph_objects/parcoords/_rangefont.py index 1cabc7fae1..6190676bcb 100644 --- a/plotly/graph_objects/parcoords/_rangefont.py +++ b/plotly/graph_objects/parcoords/_rangefont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcoords/_stream.py b/plotly/graph_objects/parcoords/_stream.py index 0c111be541..335c3229ad 100644 --- a/plotly/graph_objects/parcoords/_stream.py +++ b/plotly/graph_objects/parcoords/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/parcoords/_tickfont.py b/plotly/graph_objects/parcoords/_tickfont.py index b62b236d3d..cc7822f9f7 100644 --- a/plotly/graph_objects/parcoords/_tickfont.py +++ b/plotly/graph_objects/parcoords/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcoords/legendgrouptitle/_font.py b/plotly/graph_objects/parcoords/legendgrouptitle/_font.py index 8db5e633f1..eddde206a7 100644 --- a/plotly/graph_objects/parcoords/legendgrouptitle/_font.py +++ b/plotly/graph_objects/parcoords/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcoords/line/_colorbar.py b/plotly/graph_objects/parcoords/line/_colorbar.py index aef0695ebc..6a35abe730 100644 --- a/plotly/graph_objects/parcoords/line/_colorbar.py +++ b/plotly/graph_objects/parcoords/line/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py b/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py index e9ce1342c9..5a9ab8f6ee 100644 --- a/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcoords/line/colorbar/_tickformatstop.py b/plotly/graph_objects/parcoords/line/colorbar/_tickformatstop.py index fd7ec0d2e2..90ac7aa77c 100644 --- a/plotly/graph_objects/parcoords/line/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/parcoords/line/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcoords/line/colorbar/_title.py b/plotly/graph_objects/parcoords/line/colorbar/_title.py index 50885d01b8..5827aea7bf 100644 --- a/plotly/graph_objects/parcoords/line/colorbar/_title.py +++ b/plotly/graph_objects/parcoords/line/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/parcoords/line/colorbar/title/_font.py b/plotly/graph_objects/parcoords/line/colorbar/title/_font.py index 02714f85e1..0c6c7f7c70 100644 --- a/plotly/graph_objects/parcoords/line/colorbar/title/_font.py +++ b/plotly/graph_objects/parcoords/line/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/pie/_insidetextfont.py b/plotly/graph_objects/pie/_insidetextfont.py index 49476c5e8f..40f8f8f43f 100644 --- a/plotly/graph_objects/pie/_insidetextfont.py +++ b/plotly/graph_objects/pie/_insidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/pie/_legendgrouptitle.py b/plotly/graph_objects/pie/_legendgrouptitle.py index 82bc443c67..37747e88ae 100644 --- a/plotly/graph_objects/pie/_legendgrouptitle.py +++ b/plotly/graph_objects/pie/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/pie/_outsidetextfont.py b/plotly/graph_objects/pie/_outsidetextfont.py index bfe4736005..8fd45b9941 100644 --- a/plotly/graph_objects/pie/_outsidetextfont.py +++ b/plotly/graph_objects/pie/_outsidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/pie/_stream.py b/plotly/graph_objects/pie/_stream.py index b421822283..959fda6339 100644 --- a/plotly/graph_objects/pie/_stream.py +++ b/plotly/graph_objects/pie/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/pie/_textfont.py b/plotly/graph_objects/pie/_textfont.py index e8619042ca..1bdd01b46a 100644 --- a/plotly/graph_objects/pie/_textfont.py +++ b/plotly/graph_objects/pie/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/pie/_title.py b/plotly/graph_objects/pie/_title.py index 0a6102f095..cb503ab88a 100644 --- a/plotly/graph_objects/pie/_title.py +++ b/plotly/graph_objects/pie/_title.py @@ -60,8 +60,10 @@ def text(self): displayed. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/pie/hoverlabel/_font.py b/plotly/graph_objects/pie/hoverlabel/_font.py index a8d3b79d9c..546a1cd08f 100644 --- a/plotly/graph_objects/pie/hoverlabel/_font.py +++ b/plotly/graph_objects/pie/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/pie/legendgrouptitle/_font.py b/plotly/graph_objects/pie/legendgrouptitle/_font.py index af48229bb2..1ade71ed23 100644 --- a/plotly/graph_objects/pie/legendgrouptitle/_font.py +++ b/plotly/graph_objects/pie/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/pie/marker/_pattern.py b/plotly/graph_objects/pie/marker/_pattern.py index 2ad33c8bb3..8bffef3f70 100644 --- a/plotly/graph_objects/pie/marker/_pattern.py +++ b/plotly/graph_objects/pie/marker/_pattern.py @@ -163,9 +163,12 @@ def path(self): square from (0,0) to (`size`,`size`) to color. The 'path' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/pie/title/_font.py b/plotly/graph_objects/pie/title/_font.py index 83f8479721..8ad832a4f2 100644 --- a/plotly/graph_objects/pie/title/_font.py +++ b/plotly/graph_objects/pie/title/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/_legendgrouptitle.py b/plotly/graph_objects/sankey/_legendgrouptitle.py index f99151d7c7..1c584cb432 100644 --- a/plotly/graph_objects/sankey/_legendgrouptitle.py +++ b/plotly/graph_objects/sankey/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/sankey/_link.py b/plotly/graph_objects/sankey/_link.py index 53325b41da..e7178fe262 100644 --- a/plotly/graph_objects/sankey/_link.py +++ b/plotly/graph_objects/sankey/_link.py @@ -294,9 +294,12 @@ def hovertemplate(self): secondary box completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/_node.py b/plotly/graph_objects/sankey/_node.py index b2d5992550..79064a5174 100644 --- a/plotly/graph_objects/sankey/_node.py +++ b/plotly/graph_objects/sankey/_node.py @@ -234,9 +234,12 @@ def hovertemplate(self): completely, use an empty tag ``. The 'hovertemplate' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/_stream.py b/plotly/graph_objects/sankey/_stream.py index be69e7cb71..3e537a4955 100644 --- a/plotly/graph_objects/sankey/_stream.py +++ b/plotly/graph_objects/sankey/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/sankey/_textfont.py b/plotly/graph_objects/sankey/_textfont.py index 43da1335af..f437b14ed0 100644 --- a/plotly/graph_objects/sankey/_textfont.py +++ b/plotly/graph_objects/sankey/_textfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/sankey/hoverlabel/_font.py b/plotly/graph_objects/sankey/hoverlabel/_font.py index 82950840c3..962686ac6b 100644 --- a/plotly/graph_objects/sankey/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/legendgrouptitle/_font.py b/plotly/graph_objects/sankey/legendgrouptitle/_font.py index 9eb183da34..9e61c7c989 100644 --- a/plotly/graph_objects/sankey/legendgrouptitle/_font.py +++ b/plotly/graph_objects/sankey/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/sankey/link/_colorscale.py b/plotly/graph_objects/sankey/link/_colorscale.py index 6583a384ff..1c1f36a5ea 100644 --- a/plotly/graph_objects/sankey/link/_colorscale.py +++ b/plotly/graph_objects/sankey/link/_colorscale.py @@ -106,8 +106,10 @@ def label(self): within a flow. The 'label' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -131,8 +133,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -157,8 +161,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/sankey/link/hoverlabel/_font.py b/plotly/graph_objects/sankey/link/hoverlabel/_font.py index e36037ae29..2e3a5edb0c 100644 --- a/plotly/graph_objects/sankey/link/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/link/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/node/hoverlabel/_font.py b/plotly/graph_objects/sankey/node/hoverlabel/_font.py index 22e8b1bb23..6021e9ae50 100644 --- a/plotly/graph_objects/sankey/node/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/node/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/_fillpattern.py b/plotly/graph_objects/scatter/_fillpattern.py index 9fb46d69d8..f44798aa9a 100644 --- a/plotly/graph_objects/scatter/_fillpattern.py +++ b/plotly/graph_objects/scatter/_fillpattern.py @@ -163,9 +163,12 @@ def path(self): square from (0,0) to (`size`,`size`) to color. The 'path' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/_legendgrouptitle.py b/plotly/graph_objects/scatter/_legendgrouptitle.py index 34569379c5..54b9249d4f 100644 --- a/plotly/graph_objects/scatter/_legendgrouptitle.py +++ b/plotly/graph_objects/scatter/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter/_line.py b/plotly/graph_objects/scatter/_line.py index 31f3611e48..54deda63d5 100644 --- a/plotly/graph_objects/scatter/_line.py +++ b/plotly/graph_objects/scatter/_line.py @@ -92,10 +92,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/scatter/_stream.py b/plotly/graph_objects/scatter/_stream.py index 8db3f70a3b..f2f40150a9 100644 --- a/plotly/graph_objects/scatter/_stream.py +++ b/plotly/graph_objects/scatter/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/scatter/_textfont.py b/plotly/graph_objects/scatter/_textfont.py index 041903a3ad..4a86efef91 100644 --- a/plotly/graph_objects/scatter/_textfont.py +++ b/plotly/graph_objects/scatter/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/hoverlabel/_font.py b/plotly/graph_objects/scatter/hoverlabel/_font.py index d695abcd45..fa75f024f1 100644 --- a/plotly/graph_objects/scatter/hoverlabel/_font.py +++ b/plotly/graph_objects/scatter/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/legendgrouptitle/_font.py b/plotly/graph_objects/scatter/legendgrouptitle/_font.py index a09ac6e574..8e27abcc17 100644 --- a/plotly/graph_objects/scatter/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatter/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter/marker/_colorbar.py b/plotly/graph_objects/scatter/marker/_colorbar.py index 9e11aa6e49..f04294d707 100644 --- a/plotly/graph_objects/scatter/marker/_colorbar.py +++ b/plotly/graph_objects/scatter/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py index ba436c38c1..45a1257ecc 100644 --- a/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/scatter/marker/colorbar/_tickformatstop.py index 767df3dea5..c5b99a6d3f 100644 --- a/plotly/graph_objects/scatter/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/scatter/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter/marker/colorbar/_title.py b/plotly/graph_objects/scatter/marker/colorbar/_title.py index 87076e09a1..7f01a8292e 100644 --- a/plotly/graph_objects/scatter/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatter/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter/marker/colorbar/title/_font.py b/plotly/graph_objects/scatter/marker/colorbar/title/_font.py index 74a7754de8..a75561a66f 100644 --- a/plotly/graph_objects/scatter/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter3d/_legendgrouptitle.py b/plotly/graph_objects/scatter3d/_legendgrouptitle.py index 60ac847d1f..b481d827df 100644 --- a/plotly/graph_objects/scatter3d/_legendgrouptitle.py +++ b/plotly/graph_objects/scatter3d/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter3d/_stream.py b/plotly/graph_objects/scatter3d/_stream.py index a38fff5338..8705dee582 100644 --- a/plotly/graph_objects/scatter3d/_stream.py +++ b/plotly/graph_objects/scatter3d/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/scatter3d/_textfont.py b/plotly/graph_objects/scatter3d/_textfont.py index 312278b49c..9ef933306a 100644 --- a/plotly/graph_objects/scatter3d/_textfont.py +++ b/plotly/graph_objects/scatter3d/_textfont.py @@ -72,8 +72,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter3d/hoverlabel/_font.py b/plotly/graph_objects/scatter3d/hoverlabel/_font.py index 277a6671ea..ca7b574544 100644 --- a/plotly/graph_objects/scatter3d/hoverlabel/_font.py +++ b/plotly/graph_objects/scatter3d/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py b/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py index 679ffb7e38..8e18638505 100644 --- a/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter3d/line/_colorbar.py b/plotly/graph_objects/scatter3d/line/_colorbar.py index bf2373661f..b431646006 100644 --- a/plotly/graph_objects/scatter3d/line/_colorbar.py +++ b/plotly/graph_objects/scatter3d/line/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py b/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py index 80973e1dfc..4e4caba860 100644 --- a/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter3d/line/colorbar/_tickformatstop.py b/plotly/graph_objects/scatter3d/line/colorbar/_tickformatstop.py index d494b2e35c..82a80a4640 100644 --- a/plotly/graph_objects/scatter3d/line/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/scatter3d/line/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter3d/line/colorbar/_title.py b/plotly/graph_objects/scatter3d/line/colorbar/_title.py index bd965ef29c..30e967c807 100644 --- a/plotly/graph_objects/scatter3d/line/colorbar/_title.py +++ b/plotly/graph_objects/scatter3d/line/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py b/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py index 1bf5e997d9..a4f3fabecd 100644 --- a/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/_colorbar.py b/plotly/graph_objects/scatter3d/marker/_colorbar.py index ea438d33cd..9796a4af54 100644 --- a/plotly/graph_objects/scatter3d/marker/_colorbar.py +++ b/plotly/graph_objects/scatter3d/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py index 7985eb58ad..85bb1e0dd6 100644 --- a/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/scatter3d/marker/colorbar/_tickformatstop.py index 9facdf48d4..54878fd421 100644 --- a/plotly/graph_objects/scatter3d/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/scatter3d/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/colorbar/_title.py b/plotly/graph_objects/scatter3d/marker/colorbar/_title.py index 4e3d97abad..de1362af33 100644 --- a/plotly/graph_objects/scatter3d/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatter3d/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py b/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py index 1fc3cb82a9..577584ac09 100644 --- a/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_legendgrouptitle.py b/plotly/graph_objects/scattercarpet/_legendgrouptitle.py index e425c917ff..43b6b72701 100644 --- a/plotly/graph_objects/scattercarpet/_legendgrouptitle.py +++ b/plotly/graph_objects/scattercarpet/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_line.py b/plotly/graph_objects/scattercarpet/_line.py index 0ebadc009b..58d152b1e9 100644 --- a/plotly/graph_objects/scattercarpet/_line.py +++ b/plotly/graph_objects/scattercarpet/_line.py @@ -91,10 +91,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_stream.py b/plotly/graph_objects/scattercarpet/_stream.py index b768e21e6e..6a841e25a9 100644 --- a/plotly/graph_objects/scattercarpet/_stream.py +++ b/plotly/graph_objects/scattercarpet/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_textfont.py b/plotly/graph_objects/scattercarpet/_textfont.py index 7a4b6a6e68..900c2624d8 100644 --- a/plotly/graph_objects/scattercarpet/_textfont.py +++ b/plotly/graph_objects/scattercarpet/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattercarpet/hoverlabel/_font.py b/plotly/graph_objects/scattercarpet/hoverlabel/_font.py index 930bfacab6..35ddb95e3e 100644 --- a/plotly/graph_objects/scattercarpet/hoverlabel/_font.py +++ b/plotly/graph_objects/scattercarpet/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py b/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py index bbc8435505..f9039cfdb3 100644 --- a/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/_colorbar.py b/plotly/graph_objects/scattercarpet/marker/_colorbar.py index 3946caedf0..ce5a3100a0 100644 --- a/plotly/graph_objects/scattercarpet/marker/_colorbar.py +++ b/plotly/graph_objects/scattercarpet/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py index c7776d6ccf..2fb19495fc 100644 --- a/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/scattercarpet/marker/colorbar/_tickformatstop.py index e4e6370a36..83078c97b1 100644 --- a/plotly/graph_objects/scattercarpet/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/scattercarpet/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/colorbar/_title.py b/plotly/graph_objects/scattercarpet/marker/colorbar/_title.py index f981f01dc3..7f906b86f3 100644 --- a/plotly/graph_objects/scattercarpet/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattercarpet/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py b/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py index c737fdc3b3..95aa151b7d 100644 --- a/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattergeo/_legendgrouptitle.py b/plotly/graph_objects/scattergeo/_legendgrouptitle.py index 9f06e9e234..ad8396e61b 100644 --- a/plotly/graph_objects/scattergeo/_legendgrouptitle.py +++ b/plotly/graph_objects/scattergeo/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattergeo/_line.py b/plotly/graph_objects/scattergeo/_line.py index d061093447..a048a2c292 100644 --- a/plotly/graph_objects/scattergeo/_line.py +++ b/plotly/graph_objects/scattergeo/_line.py @@ -41,10 +41,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/scattergeo/_stream.py b/plotly/graph_objects/scattergeo/_stream.py index 50641b97e5..f80576d2cc 100644 --- a/plotly/graph_objects/scattergeo/_stream.py +++ b/plotly/graph_objects/scattergeo/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/scattergeo/_textfont.py b/plotly/graph_objects/scattergeo/_textfont.py index 51153ba53b..eea90af814 100644 --- a/plotly/graph_objects/scattergeo/_textfont.py +++ b/plotly/graph_objects/scattergeo/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergeo/hoverlabel/_font.py b/plotly/graph_objects/scattergeo/hoverlabel/_font.py index a725551bbf..35fdd59c04 100644 --- a/plotly/graph_objects/scattergeo/hoverlabel/_font.py +++ b/plotly/graph_objects/scattergeo/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py b/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py index 52bdcfa41e..6f345d10db 100644 --- a/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/_colorbar.py b/plotly/graph_objects/scattergeo/marker/_colorbar.py index 4d567097e7..a96d4f9578 100644 --- a/plotly/graph_objects/scattergeo/marker/_colorbar.py +++ b/plotly/graph_objects/scattergeo/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py index 32976547d2..a5eca30920 100644 --- a/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/scattergeo/marker/colorbar/_tickformatstop.py index a9211fa30d..9e9e867153 100644 --- a/plotly/graph_objects/scattergeo/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/scattergeo/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/colorbar/_title.py b/plotly/graph_objects/scattergeo/marker/colorbar/_title.py index cb85605a03..2eead75e7c 100644 --- a/plotly/graph_objects/scattergeo/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattergeo/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py b/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py index d47ca03802..87227e89f1 100644 --- a/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattergl/_legendgrouptitle.py b/plotly/graph_objects/scattergl/_legendgrouptitle.py index 9562485eb9..74922331a3 100644 --- a/plotly/graph_objects/scattergl/_legendgrouptitle.py +++ b/plotly/graph_objects/scattergl/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattergl/_stream.py b/plotly/graph_objects/scattergl/_stream.py index 8a509c27dd..2cfa6da67b 100644 --- a/plotly/graph_objects/scattergl/_stream.py +++ b/plotly/graph_objects/scattergl/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/scattergl/_textfont.py b/plotly/graph_objects/scattergl/_textfont.py index cfa0fdb95b..0149a472f4 100644 --- a/plotly/graph_objects/scattergl/_textfont.py +++ b/plotly/graph_objects/scattergl/_textfont.py @@ -72,8 +72,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergl/hoverlabel/_font.py b/plotly/graph_objects/scattergl/hoverlabel/_font.py index 851dd23e9b..b8abc904e7 100644 --- a/plotly/graph_objects/scattergl/hoverlabel/_font.py +++ b/plotly/graph_objects/scattergl/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattergl/legendgrouptitle/_font.py b/plotly/graph_objects/scattergl/legendgrouptitle/_font.py index 56d56c4936..0790551d8c 100644 --- a/plotly/graph_objects/scattergl/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattergl/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/_colorbar.py b/plotly/graph_objects/scattergl/marker/_colorbar.py index e7938662d6..cd4440cb1c 100644 --- a/plotly/graph_objects/scattergl/marker/_colorbar.py +++ b/plotly/graph_objects/scattergl/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py index 9c9289ceae..b4df3a6c44 100644 --- a/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/scattergl/marker/colorbar/_tickformatstop.py index 1cbcf0411d..f5b5cbaba4 100644 --- a/plotly/graph_objects/scattergl/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/scattergl/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/colorbar/_title.py b/plotly/graph_objects/scattergl/marker/colorbar/_title.py index 413d7cd02a..c4aa33723e 100644 --- a/plotly/graph_objects/scattergl/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattergl/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py b/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py index 21a17a2b66..11840f63fc 100644 --- a/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattermap/_legendgrouptitle.py b/plotly/graph_objects/scattermap/_legendgrouptitle.py index 97acc35b5e..4e23560c2e 100644 --- a/plotly/graph_objects/scattermap/_legendgrouptitle.py +++ b/plotly/graph_objects/scattermap/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattermap/_marker.py b/plotly/graph_objects/scattermap/_marker.py index abf087f2fc..61b118caa1 100644 --- a/plotly/graph_objects/scattermap/_marker.py +++ b/plotly/graph_objects/scattermap/_marker.py @@ -543,9 +543,12 @@ def symbol(self): only available for "circle" symbols. The 'symbol' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattermap/_stream.py b/plotly/graph_objects/scattermap/_stream.py index 6073e80b67..f16c5f9351 100644 --- a/plotly/graph_objects/scattermap/_stream.py +++ b/plotly/graph_objects/scattermap/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/scattermap/_textfont.py b/plotly/graph_objects/scattermap/_textfont.py index a7482b2a48..3d189eeae2 100644 --- a/plotly/graph_objects/scattermap/_textfont.py +++ b/plotly/graph_objects/scattermap/_textfont.py @@ -40,7 +40,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/scattermap/hoverlabel/_font.py b/plotly/graph_objects/scattermap/hoverlabel/_font.py index 47c96bf20c..f3fcd5f7ba 100644 --- a/plotly/graph_objects/scattermap/hoverlabel/_font.py +++ b/plotly/graph_objects/scattermap/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattermap/legendgrouptitle/_font.py b/plotly/graph_objects/scattermap/legendgrouptitle/_font.py index 2344ace5c6..9ef0880f43 100644 --- a/plotly/graph_objects/scattermap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattermap/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattermap/marker/_colorbar.py b/plotly/graph_objects/scattermap/marker/_colorbar.py index e652760573..6fd1e6bf38 100644 --- a/plotly/graph_objects/scattermap/marker/_colorbar.py +++ b/plotly/graph_objects/scattermap/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py index 6cbcc2d4b9..cc5b4f2a70 100644 --- a/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattermap/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/scattermap/marker/colorbar/_tickformatstop.py index ac029e00af..c2fa691420 100644 --- a/plotly/graph_objects/scattermap/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/scattermap/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattermap/marker/colorbar/_title.py b/plotly/graph_objects/scattermap/marker/colorbar/_title.py index 03a8baa37a..20ebc12214 100644 --- a/plotly/graph_objects/scattermap/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattermap/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py b/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py index 04f94580cd..da5cf3ee03 100644 --- a/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_legendgrouptitle.py b/plotly/graph_objects/scattermapbox/_legendgrouptitle.py index 178c91e7d7..294494f394 100644 --- a/plotly/graph_objects/scattermapbox/_legendgrouptitle.py +++ b/plotly/graph_objects/scattermapbox/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_marker.py b/plotly/graph_objects/scattermapbox/_marker.py index bf7c730a2f..71a00be084 100644 --- a/plotly/graph_objects/scattermapbox/_marker.py +++ b/plotly/graph_objects/scattermapbox/_marker.py @@ -543,9 +543,12 @@ def symbol(self): only available for "circle" symbols. The 'symbol' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_stream.py b/plotly/graph_objects/scattermapbox/_stream.py index 5e9aab93f2..c8d80bc3e8 100644 --- a/plotly/graph_objects/scattermapbox/_stream.py +++ b/plotly/graph_objects/scattermapbox/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_textfont.py b/plotly/graph_objects/scattermapbox/_textfont.py index 253369d023..57996a6f94 100644 --- a/plotly/graph_objects/scattermapbox/_textfont.py +++ b/plotly/graph_objects/scattermapbox/_textfont.py @@ -40,7 +40,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/scattermapbox/hoverlabel/_font.py b/plotly/graph_objects/scattermapbox/hoverlabel/_font.py index 9d072c8c89..22dad81c24 100644 --- a/plotly/graph_objects/scattermapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/scattermapbox/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py b/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py index 1a2f04c0b5..85520052f9 100644 --- a/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattermapbox/marker/_colorbar.py b/plotly/graph_objects/scattermapbox/marker/_colorbar.py index 3dbc680437..4dc32bcf05 100644 --- a/plotly/graph_objects/scattermapbox/marker/_colorbar.py +++ b/plotly/graph_objects/scattermapbox/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py index 5c2e3f0966..86bb860294 100644 --- a/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattermapbox/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/scattermapbox/marker/colorbar/_tickformatstop.py index ef081d313d..444ccea36d 100644 --- a/plotly/graph_objects/scattermapbox/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/scattermapbox/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattermapbox/marker/colorbar/_title.py b/plotly/graph_objects/scattermapbox/marker/colorbar/_title.py index 14a0f0157d..3406a91f1a 100644 --- a/plotly/graph_objects/scattermapbox/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattermapbox/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py b/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py index 3e5935827d..4fc848d7a0 100644 --- a/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_legendgrouptitle.py b/plotly/graph_objects/scatterpolar/_legendgrouptitle.py index fd32f71903..34bc8e0755 100644 --- a/plotly/graph_objects/scatterpolar/_legendgrouptitle.py +++ b/plotly/graph_objects/scatterpolar/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_line.py b/plotly/graph_objects/scatterpolar/_line.py index 819bd2a3e4..142dab54f5 100644 --- a/plotly/graph_objects/scatterpolar/_line.py +++ b/plotly/graph_objects/scatterpolar/_line.py @@ -91,10 +91,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_stream.py b/plotly/graph_objects/scatterpolar/_stream.py index 2ae0c64548..9bcf1da429 100644 --- a/plotly/graph_objects/scatterpolar/_stream.py +++ b/plotly/graph_objects/scatterpolar/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_textfont.py b/plotly/graph_objects/scatterpolar/_textfont.py index dcb6343201..a539d7d216 100644 --- a/plotly/graph_objects/scatterpolar/_textfont.py +++ b/plotly/graph_objects/scatterpolar/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolar/hoverlabel/_font.py b/plotly/graph_objects/scatterpolar/hoverlabel/_font.py index c29e7c4070..0147dccce2 100644 --- a/plotly/graph_objects/scatterpolar/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterpolar/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py b/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py index f089d7d6cb..91c65bd16c 100644 --- a/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/_colorbar.py b/plotly/graph_objects/scatterpolar/marker/_colorbar.py index bd58b2fa6f..fefcbbb0c7 100644 --- a/plotly/graph_objects/scatterpolar/marker/_colorbar.py +++ b/plotly/graph_objects/scatterpolar/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py index aa5e0c8495..248162160b 100644 --- a/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/scatterpolar/marker/colorbar/_tickformatstop.py index d8221e63c1..d5bb51a6f4 100644 --- a/plotly/graph_objects/scatterpolar/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/scatterpolar/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/colorbar/_title.py b/plotly/graph_objects/scatterpolar/marker/colorbar/_title.py index 426299f152..fb11c39076 100644 --- a/plotly/graph_objects/scatterpolar/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatterpolar/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py index 291f897d21..61f9efdeb5 100644 --- a/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_legendgrouptitle.py b/plotly/graph_objects/scatterpolargl/_legendgrouptitle.py index 2c1e2677ab..41332f303d 100644 --- a/plotly/graph_objects/scatterpolargl/_legendgrouptitle.py +++ b/plotly/graph_objects/scatterpolargl/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_stream.py b/plotly/graph_objects/scatterpolargl/_stream.py index 9b2168cb56..f36f143129 100644 --- a/plotly/graph_objects/scatterpolargl/_stream.py +++ b/plotly/graph_objects/scatterpolargl/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_textfont.py b/plotly/graph_objects/scatterpolargl/_textfont.py index edd6727e06..a435ba798a 100644 --- a/plotly/graph_objects/scatterpolargl/_textfont.py +++ b/plotly/graph_objects/scatterpolargl/_textfont.py @@ -72,8 +72,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py b/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py index ad0a65c856..1737a9fb60 100644 --- a/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py b/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py index 236ac186c1..afcb498f32 100644 --- a/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/_colorbar.py b/plotly/graph_objects/scatterpolargl/marker/_colorbar.py index 413503accb..62f4404ad8 100644 --- a/plotly/graph_objects/scatterpolargl/marker/_colorbar.py +++ b/plotly/graph_objects/scatterpolargl/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py index 9b329f3e07..620254b908 100644 --- a/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickformatstop.py index 2f04fef8c8..ad02c65672 100644 --- a/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/colorbar/_title.py b/plotly/graph_objects/scatterpolargl/marker/colorbar/_title.py index 550fe5d446..0128ef650d 100644 --- a/plotly/graph_objects/scatterpolargl/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatterpolargl/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py index 0a55af0b2d..d76646c5e1 100644 --- a/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattersmith/_legendgrouptitle.py b/plotly/graph_objects/scattersmith/_legendgrouptitle.py index 89002fa66a..022f3f820f 100644 --- a/plotly/graph_objects/scattersmith/_legendgrouptitle.py +++ b/plotly/graph_objects/scattersmith/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattersmith/_line.py b/plotly/graph_objects/scattersmith/_line.py index f3c8f2f533..d89b9930e2 100644 --- a/plotly/graph_objects/scattersmith/_line.py +++ b/plotly/graph_objects/scattersmith/_line.py @@ -91,10 +91,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/scattersmith/_stream.py b/plotly/graph_objects/scattersmith/_stream.py index f7c54635e9..463ccfeff7 100644 --- a/plotly/graph_objects/scattersmith/_stream.py +++ b/plotly/graph_objects/scattersmith/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/scattersmith/_textfont.py b/plotly/graph_objects/scattersmith/_textfont.py index 47dad8d042..10f13d8f38 100644 --- a/plotly/graph_objects/scattersmith/_textfont.py +++ b/plotly/graph_objects/scattersmith/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattersmith/hoverlabel/_font.py b/plotly/graph_objects/scattersmith/hoverlabel/_font.py index fe6ecae932..6e8bbc252b 100644 --- a/plotly/graph_objects/scattersmith/hoverlabel/_font.py +++ b/plotly/graph_objects/scattersmith/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py b/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py index e8c58ebedd..36d91c9c9a 100644 --- a/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/_colorbar.py b/plotly/graph_objects/scattersmith/marker/_colorbar.py index cc56e11cdc..eecb16f781 100644 --- a/plotly/graph_objects/scattersmith/marker/_colorbar.py +++ b/plotly/graph_objects/scattersmith/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py index 36562830de..1a5ad4a50e 100644 --- a/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/scattersmith/marker/colorbar/_tickformatstop.py index 139614c36c..dad6317139 100644 --- a/plotly/graph_objects/scattersmith/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/scattersmith/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/colorbar/_title.py b/plotly/graph_objects/scattersmith/marker/colorbar/_title.py index 5ad0134f58..49b25208c2 100644 --- a/plotly/graph_objects/scattersmith/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattersmith/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py b/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py index 5caa8641ba..7f39f80e78 100644 --- a/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterternary/_legendgrouptitle.py b/plotly/graph_objects/scatterternary/_legendgrouptitle.py index df28e30a74..c67e958bbe 100644 --- a/plotly/graph_objects/scatterternary/_legendgrouptitle.py +++ b/plotly/graph_objects/scatterternary/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterternary/_line.py b/plotly/graph_objects/scatterternary/_line.py index 2e7a1f3921..103557288e 100644 --- a/plotly/graph_objects/scatterternary/_line.py +++ b/plotly/graph_objects/scatterternary/_line.py @@ -91,10 +91,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/scatterternary/_stream.py b/plotly/graph_objects/scatterternary/_stream.py index 831f569be3..fe94d21faa 100644 --- a/plotly/graph_objects/scatterternary/_stream.py +++ b/plotly/graph_objects/scatterternary/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/scatterternary/_textfont.py b/plotly/graph_objects/scatterternary/_textfont.py index 55932e525f..8942501a4f 100644 --- a/plotly/graph_objects/scatterternary/_textfont.py +++ b/plotly/graph_objects/scatterternary/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterternary/hoverlabel/_font.py b/plotly/graph_objects/scatterternary/hoverlabel/_font.py index b61435ce18..8b437b4e5c 100644 --- a/plotly/graph_objects/scatterternary/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterternary/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py b/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py index 23b0a66f27..bd2932fb51 100644 --- a/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/_colorbar.py b/plotly/graph_objects/scatterternary/marker/_colorbar.py index 87c5205147..e8c4017753 100644 --- a/plotly/graph_objects/scatterternary/marker/_colorbar.py +++ b/plotly/graph_objects/scatterternary/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py index 971b170bfd..01764a4ead 100644 --- a/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/scatterternary/marker/colorbar/_tickformatstop.py index a49dca1432..79f226b3a3 100644 --- a/plotly/graph_objects/scatterternary/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/scatterternary/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/colorbar/_title.py b/plotly/graph_objects/scatterternary/marker/colorbar/_title.py index 1f4564b364..4f76a9be5f 100644 --- a/plotly/graph_objects/scatterternary/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatterternary/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py index 24cdeb828c..6cbfc3c93f 100644 --- a/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/splom/_dimension.py b/plotly/graph_objects/splom/_dimension.py index 93daf1af0e..c74a0bf502 100644 --- a/plotly/graph_objects/splom/_dimension.py +++ b/plotly/graph_objects/splom/_dimension.py @@ -43,8 +43,10 @@ def label(self): Sets the label corresponding to this splom dimension. The 'label' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -68,8 +70,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -94,8 +98,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/splom/_legendgrouptitle.py b/plotly/graph_objects/splom/_legendgrouptitle.py index cca0e891c4..b3b8206270 100644 --- a/plotly/graph_objects/splom/_legendgrouptitle.py +++ b/plotly/graph_objects/splom/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/splom/_stream.py b/plotly/graph_objects/splom/_stream.py index 3eb93a14bc..db02f7a56e 100644 --- a/plotly/graph_objects/splom/_stream.py +++ b/plotly/graph_objects/splom/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/splom/hoverlabel/_font.py b/plotly/graph_objects/splom/hoverlabel/_font.py index 3df90d872d..a88e42378c 100644 --- a/plotly/graph_objects/splom/hoverlabel/_font.py +++ b/plotly/graph_objects/splom/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/splom/legendgrouptitle/_font.py b/plotly/graph_objects/splom/legendgrouptitle/_font.py index c3bdb91be7..dc0135d008 100644 --- a/plotly/graph_objects/splom/legendgrouptitle/_font.py +++ b/plotly/graph_objects/splom/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/splom/marker/_colorbar.py b/plotly/graph_objects/splom/marker/_colorbar.py index bf2d24a18b..245774dc56 100644 --- a/plotly/graph_objects/splom/marker/_colorbar.py +++ b/plotly/graph_objects/splom/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/splom/marker/colorbar/_tickfont.py b/plotly/graph_objects/splom/marker/colorbar/_tickfont.py index a4845d0a9d..3eabec3905 100644 --- a/plotly/graph_objects/splom/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/splom/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/splom/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/splom/marker/colorbar/_tickformatstop.py index f856838f3d..eeb72dcb93 100644 --- a/plotly/graph_objects/splom/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/splom/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/splom/marker/colorbar/_title.py b/plotly/graph_objects/splom/marker/colorbar/_title.py index 51c4e2fea9..e1859ceafc 100644 --- a/plotly/graph_objects/splom/marker/colorbar/_title.py +++ b/plotly/graph_objects/splom/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/splom/marker/colorbar/title/_font.py b/plotly/graph_objects/splom/marker/colorbar/title/_font.py index 146939be2c..ef67d8b1d5 100644 --- a/plotly/graph_objects/splom/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/splom/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/streamtube/_colorbar.py b/plotly/graph_objects/streamtube/_colorbar.py index 20c5f37a7e..9a7b71fb61 100644 --- a/plotly/graph_objects/streamtube/_colorbar.py +++ b/plotly/graph_objects/streamtube/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -790,8 +792,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -832,8 +836,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/streamtube/_legendgrouptitle.py b/plotly/graph_objects/streamtube/_legendgrouptitle.py index 99fd8d8c5e..5af36910f4 100644 --- a/plotly/graph_objects/streamtube/_legendgrouptitle.py +++ b/plotly/graph_objects/streamtube/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/streamtube/_stream.py b/plotly/graph_objects/streamtube/_stream.py index e652d18ef1..39da0cbebc 100644 --- a/plotly/graph_objects/streamtube/_stream.py +++ b/plotly/graph_objects/streamtube/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/streamtube/colorbar/_tickfont.py b/plotly/graph_objects/streamtube/colorbar/_tickfont.py index f1f7e0a764..9d9ea55f77 100644 --- a/plotly/graph_objects/streamtube/colorbar/_tickfont.py +++ b/plotly/graph_objects/streamtube/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/streamtube/colorbar/_tickformatstop.py b/plotly/graph_objects/streamtube/colorbar/_tickformatstop.py index 3e4c13e3ef..ce1864e766 100644 --- a/plotly/graph_objects/streamtube/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/streamtube/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/streamtube/colorbar/_title.py b/plotly/graph_objects/streamtube/colorbar/_title.py index 79bb9cf380..b1749f25f4 100644 --- a/plotly/graph_objects/streamtube/colorbar/_title.py +++ b/plotly/graph_objects/streamtube/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/streamtube/colorbar/title/_font.py b/plotly/graph_objects/streamtube/colorbar/title/_font.py index 515768004a..5716ab477d 100644 --- a/plotly/graph_objects/streamtube/colorbar/title/_font.py +++ b/plotly/graph_objects/streamtube/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/streamtube/hoverlabel/_font.py b/plotly/graph_objects/streamtube/hoverlabel/_font.py index ed8cded350..e14a98f34a 100644 --- a/plotly/graph_objects/streamtube/hoverlabel/_font.py +++ b/plotly/graph_objects/streamtube/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/streamtube/legendgrouptitle/_font.py b/plotly/graph_objects/streamtube/legendgrouptitle/_font.py index 8bfa837167..f8f9eb9132 100644 --- a/plotly/graph_objects/streamtube/legendgrouptitle/_font.py +++ b/plotly/graph_objects/streamtube/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/sunburst/_insidetextfont.py b/plotly/graph_objects/sunburst/_insidetextfont.py index 8e70d4d217..0740d5630d 100644 --- a/plotly/graph_objects/sunburst/_insidetextfont.py +++ b/plotly/graph_objects/sunburst/_insidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/_legendgrouptitle.py b/plotly/graph_objects/sunburst/_legendgrouptitle.py index fd0264016d..f134bb23ba 100644 --- a/plotly/graph_objects/sunburst/_legendgrouptitle.py +++ b/plotly/graph_objects/sunburst/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/sunburst/_outsidetextfont.py b/plotly/graph_objects/sunburst/_outsidetextfont.py index 0c46457862..fe34cffab9 100644 --- a/plotly/graph_objects/sunburst/_outsidetextfont.py +++ b/plotly/graph_objects/sunburst/_outsidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/_stream.py b/plotly/graph_objects/sunburst/_stream.py index d66c8c4c91..8c5f08fba7 100644 --- a/plotly/graph_objects/sunburst/_stream.py +++ b/plotly/graph_objects/sunburst/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/sunburst/_textfont.py b/plotly/graph_objects/sunburst/_textfont.py index ca67bea392..11a5a765ca 100644 --- a/plotly/graph_objects/sunburst/_textfont.py +++ b/plotly/graph_objects/sunburst/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/hoverlabel/_font.py b/plotly/graph_objects/sunburst/hoverlabel/_font.py index d99b17b41f..8cc50138f1 100644 --- a/plotly/graph_objects/sunburst/hoverlabel/_font.py +++ b/plotly/graph_objects/sunburst/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/legendgrouptitle/_font.py b/plotly/graph_objects/sunburst/legendgrouptitle/_font.py index 5084b180c1..d60839b195 100644 --- a/plotly/graph_objects/sunburst/legendgrouptitle/_font.py +++ b/plotly/graph_objects/sunburst/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/_colorbar.py b/plotly/graph_objects/sunburst/marker/_colorbar.py index f00e07d047..53d311d425 100644 --- a/plotly/graph_objects/sunburst/marker/_colorbar.py +++ b/plotly/graph_objects/sunburst/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/_pattern.py b/plotly/graph_objects/sunburst/marker/_pattern.py index 9bf4e1cb2a..3a9857d9e8 100644 --- a/plotly/graph_objects/sunburst/marker/_pattern.py +++ b/plotly/graph_objects/sunburst/marker/_pattern.py @@ -163,9 +163,12 @@ def path(self): square from (0,0) to (`size`,`size`) to color. The 'path' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py b/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py index f038ad97e0..8816a2bef4 100644 --- a/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/sunburst/marker/colorbar/_tickformatstop.py index 8bbccb2c9a..5d45c18f70 100644 --- a/plotly/graph_objects/sunburst/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/sunburst/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/colorbar/_title.py b/plotly/graph_objects/sunburst/marker/colorbar/_title.py index 60e84b6dd4..5dd3f1ce96 100644 --- a/plotly/graph_objects/sunburst/marker/colorbar/_title.py +++ b/plotly/graph_objects/sunburst/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py b/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py index 8256b50382..12156cacff 100644 --- a/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/surface/_colorbar.py b/plotly/graph_objects/surface/_colorbar.py index 8177fb8616..8ed67b9af8 100644 --- a/plotly/graph_objects/surface/_colorbar.py +++ b/plotly/graph_objects/surface/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/surface/_legendgrouptitle.py b/plotly/graph_objects/surface/_legendgrouptitle.py index c59461dc87..59ecb74ba3 100644 --- a/plotly/graph_objects/surface/_legendgrouptitle.py +++ b/plotly/graph_objects/surface/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/surface/_stream.py b/plotly/graph_objects/surface/_stream.py index df02ee14ac..f028fa6491 100644 --- a/plotly/graph_objects/surface/_stream.py +++ b/plotly/graph_objects/surface/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/surface/colorbar/_tickfont.py b/plotly/graph_objects/surface/colorbar/_tickfont.py index d0c0d9e5aa..d71b9d8d1b 100644 --- a/plotly/graph_objects/surface/colorbar/_tickfont.py +++ b/plotly/graph_objects/surface/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/surface/colorbar/_tickformatstop.py b/plotly/graph_objects/surface/colorbar/_tickformatstop.py index 5ef572e022..8dfffd9918 100644 --- a/plotly/graph_objects/surface/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/surface/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/surface/colorbar/_title.py b/plotly/graph_objects/surface/colorbar/_title.py index 26e83e665c..82cfb3a691 100644 --- a/plotly/graph_objects/surface/colorbar/_title.py +++ b/plotly/graph_objects/surface/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/surface/colorbar/title/_font.py b/plotly/graph_objects/surface/colorbar/title/_font.py index 31d25fa4ba..1ed0578c80 100644 --- a/plotly/graph_objects/surface/colorbar/title/_font.py +++ b/plotly/graph_objects/surface/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/surface/hoverlabel/_font.py b/plotly/graph_objects/surface/hoverlabel/_font.py index b193a34115..0745356b55 100644 --- a/plotly/graph_objects/surface/hoverlabel/_font.py +++ b/plotly/graph_objects/surface/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/surface/legendgrouptitle/_font.py b/plotly/graph_objects/surface/legendgrouptitle/_font.py index 6eeccc28ed..ad5b7e31ae 100644 --- a/plotly/graph_objects/surface/legendgrouptitle/_font.py +++ b/plotly/graph_objects/surface/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/table/_cells.py b/plotly/graph_objects/table/_cells.py index 4e7bd8ccd3..98c5319855 100644 --- a/plotly/graph_objects/table/_cells.py +++ b/plotly/graph_objects/table/_cells.py @@ -190,9 +190,12 @@ def prefix(self): Prefix for cell values. The 'prefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -228,9 +231,12 @@ def suffix(self): Suffix for cell values. The 'suffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/table/_header.py b/plotly/graph_objects/table/_header.py index db3f192884..5b77983768 100644 --- a/plotly/graph_objects/table/_header.py +++ b/plotly/graph_objects/table/_header.py @@ -190,9 +190,12 @@ def prefix(self): Prefix for cell values. The 'prefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -228,9 +231,12 @@ def suffix(self): Suffix for cell values. The 'suffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/table/_legendgrouptitle.py b/plotly/graph_objects/table/_legendgrouptitle.py index 655866e6ec..67f631fcab 100644 --- a/plotly/graph_objects/table/_legendgrouptitle.py +++ b/plotly/graph_objects/table/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/table/_stream.py b/plotly/graph_objects/table/_stream.py index f1c00339c8..86531c8704 100644 --- a/plotly/graph_objects/table/_stream.py +++ b/plotly/graph_objects/table/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/table/cells/_font.py b/plotly/graph_objects/table/cells/_font.py index 2c684efd6f..770aaffb15 100644 --- a/plotly/graph_objects/table/cells/_font.py +++ b/plotly/graph_objects/table/cells/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/table/header/_font.py b/plotly/graph_objects/table/header/_font.py index 820a375888..56ed7fe0fb 100644 --- a/plotly/graph_objects/table/header/_font.py +++ b/plotly/graph_objects/table/header/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/table/hoverlabel/_font.py b/plotly/graph_objects/table/hoverlabel/_font.py index 7611c31a56..8757c5cef3 100644 --- a/plotly/graph_objects/table/hoverlabel/_font.py +++ b/plotly/graph_objects/table/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/table/legendgrouptitle/_font.py b/plotly/graph_objects/table/legendgrouptitle/_font.py index a4c4663668..7cc30607e4 100644 --- a/plotly/graph_objects/table/legendgrouptitle/_font.py +++ b/plotly/graph_objects/table/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/treemap/_insidetextfont.py b/plotly/graph_objects/treemap/_insidetextfont.py index c7fb173c5f..e2a5e2444c 100644 --- a/plotly/graph_objects/treemap/_insidetextfont.py +++ b/plotly/graph_objects/treemap/_insidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/_legendgrouptitle.py b/plotly/graph_objects/treemap/_legendgrouptitle.py index ca8173d1b4..819bfb3ca8 100644 --- a/plotly/graph_objects/treemap/_legendgrouptitle.py +++ b/plotly/graph_objects/treemap/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/treemap/_outsidetextfont.py b/plotly/graph_objects/treemap/_outsidetextfont.py index dacc936b76..fdf4f86f71 100644 --- a/plotly/graph_objects/treemap/_outsidetextfont.py +++ b/plotly/graph_objects/treemap/_outsidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/_stream.py b/plotly/graph_objects/treemap/_stream.py index b60922558f..58afb8244b 100644 --- a/plotly/graph_objects/treemap/_stream.py +++ b/plotly/graph_objects/treemap/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/treemap/_textfont.py b/plotly/graph_objects/treemap/_textfont.py index 2273c8967a..caeea45a58 100644 --- a/plotly/graph_objects/treemap/_textfont.py +++ b/plotly/graph_objects/treemap/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/hoverlabel/_font.py b/plotly/graph_objects/treemap/hoverlabel/_font.py index 213ef2f9d4..55ceb220c6 100644 --- a/plotly/graph_objects/treemap/hoverlabel/_font.py +++ b/plotly/graph_objects/treemap/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/legendgrouptitle/_font.py b/plotly/graph_objects/treemap/legendgrouptitle/_font.py index 6a915644f9..5731e37670 100644 --- a/plotly/graph_objects/treemap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/treemap/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/treemap/marker/_colorbar.py b/plotly/graph_objects/treemap/marker/_colorbar.py index 59bf4ea8f7..3ec07f6cd9 100644 --- a/plotly/graph_objects/treemap/marker/_colorbar.py +++ b/plotly/graph_objects/treemap/marker/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/treemap/marker/_pattern.py b/plotly/graph_objects/treemap/marker/_pattern.py index c7b4ee623d..6b95f164ef 100644 --- a/plotly/graph_objects/treemap/marker/_pattern.py +++ b/plotly/graph_objects/treemap/marker/_pattern.py @@ -163,9 +163,12 @@ def path(self): square from (0,0) to (`size`,`size`) to color. The 'path' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py b/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py index b8fb2f825b..ed2aef143f 100644 --- a/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/treemap/marker/colorbar/_tickformatstop.py b/plotly/graph_objects/treemap/marker/colorbar/_tickformatstop.py index ce808d6c2d..9f3753ecbd 100644 --- a/plotly/graph_objects/treemap/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/treemap/marker/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/treemap/marker/colorbar/_title.py b/plotly/graph_objects/treemap/marker/colorbar/_title.py index 80ccf24cd3..142a639394 100644 --- a/plotly/graph_objects/treemap/marker/colorbar/_title.py +++ b/plotly/graph_objects/treemap/marker/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/treemap/marker/colorbar/title/_font.py b/plotly/graph_objects/treemap/marker/colorbar/title/_font.py index 98a81eee89..17037951f1 100644 --- a/plotly/graph_objects/treemap/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/treemap/marker/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/treemap/pathbar/_textfont.py b/plotly/graph_objects/treemap/pathbar/_textfont.py index a5adde1452..7aeeaa1cd6 100644 --- a/plotly/graph_objects/treemap/pathbar/_textfont.py +++ b/plotly/graph_objects/treemap/pathbar/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/violin/_legendgrouptitle.py b/plotly/graph_objects/violin/_legendgrouptitle.py index c4c21aa6ed..17e6b266f8 100644 --- a/plotly/graph_objects/violin/_legendgrouptitle.py +++ b/plotly/graph_objects/violin/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/violin/_stream.py b/plotly/graph_objects/violin/_stream.py index be39243f12..b145d9f0ce 100644 --- a/plotly/graph_objects/violin/_stream.py +++ b/plotly/graph_objects/violin/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/violin/hoverlabel/_font.py b/plotly/graph_objects/violin/hoverlabel/_font.py index e6a7f6d374..a4892a14bc 100644 --- a/plotly/graph_objects/violin/hoverlabel/_font.py +++ b/plotly/graph_objects/violin/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/violin/legendgrouptitle/_font.py b/plotly/graph_objects/violin/legendgrouptitle/_font.py index 2e8dfd7f2a..a015fc005a 100644 --- a/plotly/graph_objects/violin/legendgrouptitle/_font.py +++ b/plotly/graph_objects/violin/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/volume/_colorbar.py b/plotly/graph_objects/volume/_colorbar.py index 78a0a6a7d9..87d9af210f 100644 --- a/plotly/graph_objects/volume/_colorbar.py +++ b/plotly/graph_objects/volume/_colorbar.py @@ -610,8 +610,10 @@ def tickformat(self): "%H~%M~%S.%2f" would display "09~15~23.46" The 'tickformat' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -791,8 +793,10 @@ def tickprefix(self): Sets a tick label prefix. The 'tickprefix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -833,8 +837,10 @@ def ticksuffix(self): Sets a tick label suffix. The 'ticksuffix' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/volume/_legendgrouptitle.py b/plotly/graph_objects/volume/_legendgrouptitle.py index 099890dda5..c3c3e83653 100644 --- a/plotly/graph_objects/volume/_legendgrouptitle.py +++ b/plotly/graph_objects/volume/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/volume/_stream.py b/plotly/graph_objects/volume/_stream.py index 5f5fe13aa1..c2f78071d1 100644 --- a/plotly/graph_objects/volume/_stream.py +++ b/plotly/graph_objects/volume/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/volume/colorbar/_tickfont.py b/plotly/graph_objects/volume/colorbar/_tickfont.py index 88a25db22e..e4269ed8bf 100644 --- a/plotly/graph_objects/volume/colorbar/_tickfont.py +++ b/plotly/graph_objects/volume/colorbar/_tickfont.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/volume/colorbar/_tickformatstop.py b/plotly/graph_objects/volume/colorbar/_tickformatstop.py index 5769032259..b61296bf34 100644 --- a/plotly/graph_objects/volume/colorbar/_tickformatstop.py +++ b/plotly/graph_objects/volume/colorbar/_tickformatstop.py @@ -66,8 +66,10 @@ def name(self): template. The 'name' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -92,8 +94,10 @@ def templateitemname(self): show it with `visible: true`. The 'templateitemname' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- @@ -112,8 +116,10 @@ def value(self): "tickformat" The 'value' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/volume/colorbar/_title.py b/plotly/graph_objects/volume/colorbar/_title.py index 3ef63d036b..779c1bed8a 100644 --- a/plotly/graph_objects/volume/colorbar/_title.py +++ b/plotly/graph_objects/volume/colorbar/_title.py @@ -60,8 +60,10 @@ def text(self): Sets the title of the color bar. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/volume/colorbar/title/_font.py b/plotly/graph_objects/volume/colorbar/title/_font.py index e057936679..00a59cc652 100644 --- a/plotly/graph_objects/volume/colorbar/title/_font.py +++ b/plotly/graph_objects/volume/colorbar/title/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/volume/hoverlabel/_font.py b/plotly/graph_objects/volume/hoverlabel/_font.py index 36d70e3d18..53fbc10834 100644 --- a/plotly/graph_objects/volume/hoverlabel/_font.py +++ b/plotly/graph_objects/volume/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/volume/legendgrouptitle/_font.py b/plotly/graph_objects/volume/legendgrouptitle/_font.py index 3fa2cf2984..65ce710350 100644 --- a/plotly/graph_objects/volume/legendgrouptitle/_font.py +++ b/plotly/graph_objects/volume/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/waterfall/_insidetextfont.py b/plotly/graph_objects/waterfall/_insidetextfont.py index 6cbf1e7381..ae6d5e7e1c 100644 --- a/plotly/graph_objects/waterfall/_insidetextfont.py +++ b/plotly/graph_objects/waterfall/_insidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/_legendgrouptitle.py b/plotly/graph_objects/waterfall/_legendgrouptitle.py index 0236e40eda..dd202aae96 100644 --- a/plotly/graph_objects/waterfall/_legendgrouptitle.py +++ b/plotly/graph_objects/waterfall/_legendgrouptitle.py @@ -37,8 +37,10 @@ def text(self): Sets the title of the legend group. The 'text' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- diff --git a/plotly/graph_objects/waterfall/_outsidetextfont.py b/plotly/graph_objects/waterfall/_outsidetextfont.py index f44777412b..4601327183 100644 --- a/plotly/graph_objects/waterfall/_outsidetextfont.py +++ b/plotly/graph_objects/waterfall/_outsidetextfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/_stream.py b/plotly/graph_objects/waterfall/_stream.py index 9de5f2b333..ca646ea94c 100644 --- a/plotly/graph_objects/waterfall/_stream.py +++ b/plotly/graph_objects/waterfall/_stream.py @@ -39,7 +39,8 @@ def token(self): details. The 'token' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- diff --git a/plotly/graph_objects/waterfall/_textfont.py b/plotly/graph_objects/waterfall/_textfont.py index 1a42900e02..96963db3f9 100644 --- a/plotly/graph_objects/waterfall/_textfont.py +++ b/plotly/graph_objects/waterfall/_textfont.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/connector/_line.py b/plotly/graph_objects/waterfall/connector/_line.py index 2f3b75123a..9bac36b045 100644 --- a/plotly/graph_objects/waterfall/connector/_line.py +++ b/plotly/graph_objects/waterfall/connector/_line.py @@ -41,10 +41,14 @@ def dash(self): "5px,10px,2px,2px"). The 'dash' property is an enumeration that may be specified as: - - One of the following dash styles: - ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] - - A string containing a dash length list in pixels or percentages - (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) + + - One of the following dash styles: + + ['solid', 'dot', 'dash', 'longdash', 'dashdot', 'longdashdot'] + + - A string containing a dash length list in pixels or percentages + + (e.g. '5px 10px 2px 2px', '5, 10, 2, 2', '10% 20% 40%', etc.) Returns ------- diff --git a/plotly/graph_objects/waterfall/hoverlabel/_font.py b/plotly/graph_objects/waterfall/hoverlabel/_font.py index 04bde14a8c..4b27978d5f 100644 --- a/plotly/graph_objects/waterfall/hoverlabel/_font.py +++ b/plotly/graph_objects/waterfall/hoverlabel/_font.py @@ -78,8 +78,10 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string - - A tuple, list, or one-dimensional numpy array of the above + + - A non-empty string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- @@ -161,9 +163,12 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string - - A tuple, list, or one-dimensional numpy array of the above + + - A string + + - A number that will be converted to a string + + - A tuple, list, or one-dimensional numpy array of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/legendgrouptitle/_font.py b/plotly/graph_objects/waterfall/legendgrouptitle/_font.py index 56d6a93776..b647672571 100644 --- a/plotly/graph_objects/waterfall/legendgrouptitle/_font.py +++ b/plotly/graph_objects/waterfall/legendgrouptitle/_font.py @@ -50,7 +50,8 @@ def family(self): to apply fonts if they aren't available. The 'family' property is a string and must be specified as: - - A non-empty string + + - A non-empty string Returns ------- @@ -94,8 +95,10 @@ def shadow(self): for additional options. The 'shadow' property is a string and must be specified as: - - A string - - A number that will be converted to a string + + - A string + + - A number that will be converted to a string Returns ------- From efde2012d6d824d16e03306f13ad393b1902f6f1 Mon Sep 17 00:00:00 2001 From: daexs Date: Mon, 18 Aug 2025 13:35:30 -0400 Subject: [PATCH 10/18] Fixed formatting for 'Compound' and 'color' properties. --- _plotly_utils/basevalidators.py | 26 +-- plotly/graph_objects/_bar.py | 66 +++--- plotly/graph_objects/_barpolar.py | 36 +-- plotly/graph_objects/_box.py | 53 ++--- plotly/graph_objects/_candlestick.py | 36 +-- plotly/graph_objects/_carpet.py | 41 ++-- plotly/graph_objects/_choropleth.py | 42 ++-- plotly/graph_objects/_choroplethmap.py | 42 ++-- plotly/graph_objects/_choroplethmapbox.py | 42 ++-- plotly/graph_objects/_cone.py | 36 +-- plotly/graph_objects/_contour.py | 56 ++--- plotly/graph_objects/_contourcarpet.py | 44 ++-- plotly/graph_objects/_densitymap.py | 24 +- plotly/graph_objects/_densitymapbox.py | 24 +- plotly/graph_objects/_figure.py | 6 +- plotly/graph_objects/_figurewidget.py | 6 +- plotly/graph_objects/_funnel.py | 48 ++-- plotly/graph_objects/_funnelarea.py | 48 ++-- plotly/graph_objects/_heatmap.py | 30 +-- plotly/graph_objects/_histogram.py | 84 +++---- plotly/graph_objects/_histogram2d.py | 48 ++-- plotly/graph_objects/_histogram2dcontour.py | 60 ++--- plotly/graph_objects/_icicle.py | 72 +++--- plotly/graph_objects/_image.py | 18 +- plotly/graph_objects/_indicator.py | 42 ++-- plotly/graph_objects/_isosurface.py | 66 +++--- plotly/graph_objects/_layout.py | 208 +++++++++--------- plotly/graph_objects/_mesh3d.py | 56 ++--- plotly/graph_objects/_ohlc.py | 36 +-- plotly/graph_objects/_parcats.py | 42 ++-- plotly/graph_objects/_parcoords.py | 54 ++--- plotly/graph_objects/_pie.py | 54 ++--- plotly/graph_objects/_sankey.py | 42 ++-- plotly/graph_objects/_scatter.py | 83 +++---- plotly/graph_objects/_scatter3d.py | 71 +++--- plotly/graph_objects/_scattercarpet.py | 59 ++--- plotly/graph_objects/_scattergeo.py | 59 ++--- plotly/graph_objects/_scattergl.py | 71 +++--- plotly/graph_objects/_scattermap.py | 65 +++--- plotly/graph_objects/_scattermapbox.py | 65 +++--- plotly/graph_objects/_scatterpolar.py | 59 ++--- plotly/graph_objects/_scatterpolargl.py | 59 ++--- plotly/graph_objects/_scattersmith.py | 59 ++--- plotly/graph_objects/_scatterternary.py | 59 ++--- plotly/graph_objects/_splom.py | 48 ++-- plotly/graph_objects/_streamtube.py | 42 ++-- plotly/graph_objects/_sunburst.py | 60 ++--- plotly/graph_objects/_surface.py | 42 ++-- plotly/graph_objects/_table.py | 36 +-- plotly/graph_objects/_treemap.py | 66 +++--- plotly/graph_objects/_violin.py | 65 +++--- plotly/graph_objects/_volume.py | 66 +++--- plotly/graph_objects/_waterfall.py | 60 ++--- plotly/graph_objects/bar/_error_x.py | 11 +- plotly/graph_objects/bar/_error_y.py | 11 +- plotly/graph_objects/bar/_hoverlabel.py | 32 +-- plotly/graph_objects/bar/_insidetextfont.py | 13 +- plotly/graph_objects/bar/_legendgrouptitle.py | 6 +- plotly/graph_objects/bar/_marker.py | 34 +-- plotly/graph_objects/bar/_outsidetextfont.py | 13 +- plotly/graph_objects/bar/_selected.py | 12 +- plotly/graph_objects/bar/_textfont.py | 13 +- plotly/graph_objects/bar/_unselected.py | 12 +- plotly/graph_objects/bar/hoverlabel/_font.py | 13 +- .../bar/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/bar/marker/_colorbar.py | 62 +++--- plotly/graph_objects/bar/marker/_line.py | 16 +- plotly/graph_objects/bar/marker/_pattern.py | 26 ++- .../bar/marker/colorbar/_tickfont.py | 11 +- .../bar/marker/colorbar/_title.py | 6 +- .../bar/marker/colorbar/title/_font.py | 11 +- plotly/graph_objects/bar/selected/_marker.py | 11 +- .../graph_objects/bar/selected/_textfont.py | 11 +- .../graph_objects/bar/unselected/_marker.py | 11 +- .../graph_objects/bar/unselected/_textfont.py | 11 +- plotly/graph_objects/barpolar/_hoverlabel.py | 32 +-- .../barpolar/_legendgrouptitle.py | 6 +- plotly/graph_objects/barpolar/_marker.py | 34 +-- plotly/graph_objects/barpolar/_selected.py | 12 +- plotly/graph_objects/barpolar/_unselected.py | 12 +- .../barpolar/hoverlabel/_font.py | 13 +- .../barpolar/legendgrouptitle/_font.py | 11 +- .../barpolar/marker/_colorbar.py | 62 +++--- plotly/graph_objects/barpolar/marker/_line.py | 16 +- .../graph_objects/barpolar/marker/_pattern.py | 26 ++- .../barpolar/marker/colorbar/_tickfont.py | 11 +- .../barpolar/marker/colorbar/_title.py | 6 +- .../barpolar/marker/colorbar/title/_font.py | 11 +- .../barpolar/selected/_marker.py | 11 +- .../barpolar/selected/_textfont.py | 11 +- .../barpolar/unselected/_marker.py | 11 +- .../barpolar/unselected/_textfont.py | 11 +- plotly/graph_objects/box/_hoverlabel.py | 32 +-- plotly/graph_objects/box/_legendgrouptitle.py | 6 +- plotly/graph_objects/box/_line.py | 11 +- plotly/graph_objects/box/_marker.py | 28 +-- plotly/graph_objects/box/_selected.py | 6 +- plotly/graph_objects/box/_unselected.py | 6 +- plotly/graph_objects/box/hoverlabel/_font.py | 13 +- .../box/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/box/marker/_line.py | 22 +- plotly/graph_objects/box/selected/_marker.py | 11 +- .../graph_objects/box/unselected/_marker.py | 11 +- .../graph_objects/candlestick/_decreasing.py | 17 +- .../graph_objects/candlestick/_hoverlabel.py | 32 +-- .../graph_objects/candlestick/_increasing.py | 17 +- .../candlestick/_legendgrouptitle.py | 6 +- .../candlestick/decreasing/_line.py | 11 +- .../candlestick/hoverlabel/_font.py | 13 +- .../candlestick/increasing/_line.py | 11 +- .../candlestick/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/carpet/_aaxis.py | 84 +++---- plotly/graph_objects/carpet/_baxis.py | 84 +++---- plotly/graph_objects/carpet/_font.py | 11 +- .../graph_objects/carpet/_legendgrouptitle.py | 6 +- .../graph_objects/carpet/aaxis/_tickfont.py | 11 +- plotly/graph_objects/carpet/aaxis/_title.py | 6 +- .../graph_objects/carpet/aaxis/title/_font.py | 11 +- .../graph_objects/carpet/baxis/_tickfont.py | 11 +- plotly/graph_objects/carpet/baxis/_title.py | 6 +- .../graph_objects/carpet/baxis/title/_font.py | 11 +- .../carpet/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/choropleth/_colorbar.py | 62 +++--- .../graph_objects/choropleth/_hoverlabel.py | 32 +-- .../choropleth/_legendgrouptitle.py | 6 +- plotly/graph_objects/choropleth/_marker.py | 6 +- plotly/graph_objects/choropleth/_selected.py | 6 +- .../graph_objects/choropleth/_unselected.py | 6 +- .../choropleth/colorbar/_tickfont.py | 11 +- .../choropleth/colorbar/_title.py | 6 +- .../choropleth/colorbar/title/_font.py | 11 +- .../choropleth/hoverlabel/_font.py | 13 +- .../choropleth/legendgrouptitle/_font.py | 11 +- .../graph_objects/choropleth/marker/_line.py | 13 +- .../graph_objects/choroplethmap/_colorbar.py | 62 +++--- .../choroplethmap/_hoverlabel.py | 32 +-- .../choroplethmap/_legendgrouptitle.py | 6 +- plotly/graph_objects/choroplethmap/_marker.py | 6 +- .../graph_objects/choroplethmap/_selected.py | 6 +- .../choroplethmap/_unselected.py | 6 +- .../choroplethmap/colorbar/_tickfont.py | 11 +- .../choroplethmap/colorbar/_title.py | 6 +- .../choroplethmap/colorbar/title/_font.py | 11 +- .../choroplethmap/hoverlabel/_font.py | 13 +- .../choroplethmap/legendgrouptitle/_font.py | 11 +- .../choroplethmap/marker/_line.py | 13 +- .../choroplethmapbox/_colorbar.py | 62 +++--- .../choroplethmapbox/_hoverlabel.py | 32 +-- .../choroplethmapbox/_legendgrouptitle.py | 6 +- .../graph_objects/choroplethmapbox/_marker.py | 6 +- .../choroplethmapbox/_selected.py | 6 +- .../choroplethmapbox/_unselected.py | 6 +- .../choroplethmapbox/colorbar/_tickfont.py | 11 +- .../choroplethmapbox/colorbar/_title.py | 6 +- .../choroplethmapbox/colorbar/title/_font.py | 11 +- .../choroplethmapbox/hoverlabel/_font.py | 13 +- .../legendgrouptitle/_font.py | 11 +- .../choroplethmapbox/marker/_line.py | 13 +- plotly/graph_objects/cone/_colorbar.py | 62 +++--- plotly/graph_objects/cone/_hoverlabel.py | 32 +-- .../graph_objects/cone/_legendgrouptitle.py | 6 +- .../graph_objects/cone/colorbar/_tickfont.py | 11 +- plotly/graph_objects/cone/colorbar/_title.py | 6 +- .../cone/colorbar/title/_font.py | 11 +- plotly/graph_objects/cone/hoverlabel/_font.py | 13 +- .../cone/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/contour/_colorbar.py | 62 +++--- plotly/graph_objects/contour/_contours.py | 6 +- plotly/graph_objects/contour/_hoverlabel.py | 32 +-- .../contour/_legendgrouptitle.py | 6 +- plotly/graph_objects/contour/_line.py | 11 +- plotly/graph_objects/contour/_textfont.py | 11 +- .../contour/colorbar/_tickfont.py | 11 +- .../graph_objects/contour/colorbar/_title.py | 6 +- .../contour/colorbar/title/_font.py | 11 +- .../contour/contours/_labelfont.py | 11 +- .../graph_objects/contour/hoverlabel/_font.py | 13 +- .../contour/legendgrouptitle/_font.py | 11 +- .../graph_objects/contourcarpet/_colorbar.py | 62 +++--- .../graph_objects/contourcarpet/_contours.py | 6 +- .../contourcarpet/_legendgrouptitle.py | 6 +- plotly/graph_objects/contourcarpet/_line.py | 11 +- .../contourcarpet/colorbar/_tickfont.py | 11 +- .../contourcarpet/colorbar/_title.py | 6 +- .../contourcarpet/colorbar/title/_font.py | 11 +- .../contourcarpet/contours/_labelfont.py | 11 +- .../contourcarpet/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/densitymap/_colorbar.py | 62 +++--- .../graph_objects/densitymap/_hoverlabel.py | 32 +-- .../densitymap/_legendgrouptitle.py | 6 +- .../densitymap/colorbar/_tickfont.py | 11 +- .../densitymap/colorbar/_title.py | 6 +- .../densitymap/colorbar/title/_font.py | 11 +- .../densitymap/hoverlabel/_font.py | 13 +- .../densitymap/legendgrouptitle/_font.py | 11 +- .../graph_objects/densitymapbox/_colorbar.py | 62 +++--- .../densitymapbox/_hoverlabel.py | 32 +-- .../densitymapbox/_legendgrouptitle.py | 6 +- .../densitymapbox/colorbar/_tickfont.py | 11 +- .../densitymapbox/colorbar/_title.py | 6 +- .../densitymapbox/colorbar/title/_font.py | 11 +- .../densitymapbox/hoverlabel/_font.py | 13 +- .../densitymapbox/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/funnel/_connector.py | 17 +- plotly/graph_objects/funnel/_hoverlabel.py | 32 +-- .../graph_objects/funnel/_insidetextfont.py | 13 +- .../graph_objects/funnel/_legendgrouptitle.py | 6 +- plotly/graph_objects/funnel/_marker.py | 28 +-- .../graph_objects/funnel/_outsidetextfont.py | 13 +- plotly/graph_objects/funnel/_textfont.py | 13 +- .../graph_objects/funnel/connector/_line.py | 11 +- .../graph_objects/funnel/hoverlabel/_font.py | 13 +- .../funnel/legendgrouptitle/_font.py | 11 +- .../graph_objects/funnel/marker/_colorbar.py | 62 +++--- plotly/graph_objects/funnel/marker/_line.py | 16 +- .../funnel/marker/colorbar/_tickfont.py | 11 +- .../funnel/marker/colorbar/_title.py | 6 +- .../funnel/marker/colorbar/title/_font.py | 11 +- .../graph_objects/funnelarea/_hoverlabel.py | 32 +-- .../funnelarea/_insidetextfont.py | 13 +- .../funnelarea/_legendgrouptitle.py | 6 +- plotly/graph_objects/funnelarea/_marker.py | 12 +- plotly/graph_objects/funnelarea/_textfont.py | 13 +- plotly/graph_objects/funnelarea/_title.py | 6 +- .../funnelarea/hoverlabel/_font.py | 13 +- .../funnelarea/legendgrouptitle/_font.py | 11 +- .../graph_objects/funnelarea/marker/_line.py | 13 +- .../funnelarea/marker/_pattern.py | 26 ++- .../graph_objects/funnelarea/title/_font.py | 13 +- plotly/graph_objects/heatmap/_colorbar.py | 62 +++--- plotly/graph_objects/heatmap/_hoverlabel.py | 32 +-- .../heatmap/_legendgrouptitle.py | 6 +- plotly/graph_objects/heatmap/_textfont.py | 11 +- .../heatmap/colorbar/_tickfont.py | 11 +- .../graph_objects/heatmap/colorbar/_title.py | 6 +- .../heatmap/colorbar/title/_font.py | 11 +- .../graph_objects/heatmap/hoverlabel/_font.py | 13 +- .../heatmap/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/histogram/_error_x.py | 11 +- plotly/graph_objects/histogram/_error_y.py | 11 +- plotly/graph_objects/histogram/_hoverlabel.py | 32 +-- .../histogram/_insidetextfont.py | 11 +- .../histogram/_legendgrouptitle.py | 6 +- plotly/graph_objects/histogram/_marker.py | 34 +-- .../histogram/_outsidetextfont.py | 11 +- plotly/graph_objects/histogram/_selected.py | 12 +- plotly/graph_objects/histogram/_textfont.py | 11 +- plotly/graph_objects/histogram/_unselected.py | 12 +- .../histogram/hoverlabel/_font.py | 13 +- .../histogram/legendgrouptitle/_font.py | 11 +- .../histogram/marker/_colorbar.py | 62 +++--- .../graph_objects/histogram/marker/_line.py | 16 +- .../histogram/marker/_pattern.py | 26 ++- .../histogram/marker/colorbar/_tickfont.py | 11 +- .../histogram/marker/colorbar/_title.py | 6 +- .../histogram/marker/colorbar/title/_font.py | 11 +- .../histogram/selected/_marker.py | 11 +- .../histogram/selected/_textfont.py | 11 +- .../histogram/unselected/_marker.py | 11 +- .../histogram/unselected/_textfont.py | 11 +- plotly/graph_objects/histogram2d/_colorbar.py | 62 +++--- .../graph_objects/histogram2d/_hoverlabel.py | 32 +-- .../histogram2d/_legendgrouptitle.py | 6 +- plotly/graph_objects/histogram2d/_textfont.py | 11 +- .../histogram2d/colorbar/_tickfont.py | 11 +- .../histogram2d/colorbar/_title.py | 6 +- .../histogram2d/colorbar/title/_font.py | 11 +- .../histogram2d/hoverlabel/_font.py | 13 +- .../histogram2d/legendgrouptitle/_font.py | 11 +- .../histogram2dcontour/_colorbar.py | 62 +++--- .../histogram2dcontour/_contours.py | 6 +- .../histogram2dcontour/_hoverlabel.py | 32 +-- .../histogram2dcontour/_legendgrouptitle.py | 6 +- .../graph_objects/histogram2dcontour/_line.py | 11 +- .../histogram2dcontour/_textfont.py | 11 +- .../histogram2dcontour/colorbar/_tickfont.py | 11 +- .../histogram2dcontour/colorbar/_title.py | 6 +- .../colorbar/title/_font.py | 11 +- .../histogram2dcontour/contours/_labelfont.py | 11 +- .../histogram2dcontour/hoverlabel/_font.py | 13 +- .../legendgrouptitle/_font.py | 11 +- plotly/graph_objects/icicle/_hoverlabel.py | 32 +-- .../graph_objects/icicle/_insidetextfont.py | 13 +- .../graph_objects/icicle/_legendgrouptitle.py | 6 +- plotly/graph_objects/icicle/_marker.py | 18 +- .../graph_objects/icicle/_outsidetextfont.py | 13 +- plotly/graph_objects/icicle/_pathbar.py | 6 +- plotly/graph_objects/icicle/_root.py | 11 +- plotly/graph_objects/icicle/_textfont.py | 13 +- .../graph_objects/icicle/hoverlabel/_font.py | 13 +- .../icicle/legendgrouptitle/_font.py | 11 +- .../graph_objects/icicle/marker/_colorbar.py | 62 +++--- plotly/graph_objects/icicle/marker/_line.py | 13 +- .../graph_objects/icicle/marker/_pattern.py | 26 ++- .../icicle/marker/colorbar/_tickfont.py | 11 +- .../icicle/marker/colorbar/_title.py | 6 +- .../icicle/marker/colorbar/title/_font.py | 11 +- .../graph_objects/icicle/pathbar/_textfont.py | 13 +- plotly/graph_objects/image/_hoverlabel.py | 32 +-- .../graph_objects/image/_legendgrouptitle.py | 6 +- .../graph_objects/image/hoverlabel/_font.py | 13 +- .../image/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/indicator/_delta.py | 18 +- plotly/graph_objects/indicator/_gauge.py | 46 ++-- .../indicator/_legendgrouptitle.py | 6 +- plotly/graph_objects/indicator/_number.py | 6 +- plotly/graph_objects/indicator/_title.py | 6 +- .../indicator/delta/_decreasing.py | 11 +- plotly/graph_objects/indicator/delta/_font.py | 11 +- .../indicator/delta/_increasing.py | 11 +- plotly/graph_objects/indicator/gauge/_axis.py | 23 +- plotly/graph_objects/indicator/gauge/_bar.py | 17 +- plotly/graph_objects/indicator/gauge/_step.py | 17 +- .../indicator/gauge/_threshold.py | 6 +- .../indicator/gauge/axis/_tickfont.py | 11 +- .../indicator/gauge/bar/_line.py | 11 +- .../indicator/gauge/step/_line.py | 11 +- .../indicator/gauge/threshold/_line.py | 11 +- .../indicator/legendgrouptitle/_font.py | 11 +- .../graph_objects/indicator/number/_font.py | 11 +- plotly/graph_objects/indicator/title/_font.py | 11 +- plotly/graph_objects/isosurface/_caps.py | 18 +- plotly/graph_objects/isosurface/_colorbar.py | 62 +++--- plotly/graph_objects/isosurface/_contour.py | 11 +- .../graph_objects/isosurface/_hoverlabel.py | 32 +-- .../isosurface/_legendgrouptitle.py | 6 +- plotly/graph_objects/isosurface/_slices.py | 18 +- .../isosurface/colorbar/_tickfont.py | 11 +- .../isosurface/colorbar/_title.py | 6 +- .../isosurface/colorbar/title/_font.py | 11 +- .../isosurface/hoverlabel/_font.py | 13 +- .../isosurface/legendgrouptitle/_font.py | 11 +- .../graph_objects/layout/_activeselection.py | 11 +- plotly/graph_objects/layout/_activeshape.py | 11 +- plotly/graph_objects/layout/_annotation.py | 45 ++-- plotly/graph_objects/layout/_coloraxis.py | 6 +- plotly/graph_objects/layout/_font.py | 11 +- plotly/graph_objects/layout/_geo.py | 129 ++++++----- plotly/graph_objects/layout/_grid.py | 6 +- plotly/graph_objects/layout/_hoverlabel.py | 34 +-- plotly/graph_objects/layout/_legend.py | 40 ++-- plotly/graph_objects/layout/_map.py | 24 +- plotly/graph_objects/layout/_mapbox.py | 24 +- plotly/graph_objects/layout/_modebar.py | 33 +-- plotly/graph_objects/layout/_newselection.py | 6 +- plotly/graph_objects/layout/_newshape.py | 29 +-- plotly/graph_objects/layout/_polar.py | 29 +-- plotly/graph_objects/layout/_scene.py | 53 ++--- plotly/graph_objects/layout/_selection.py | 6 +- plotly/graph_objects/layout/_shape.py | 29 +-- plotly/graph_objects/layout/_slider.py | 74 ++++--- plotly/graph_objects/layout/_smith.py | 29 +-- plotly/graph_objects/layout/_template.py | 12 +- plotly/graph_objects/layout/_ternary.py | 35 +-- plotly/graph_objects/layout/_title.py | 18 +- plotly/graph_objects/layout/_updatemenu.py | 40 ++-- plotly/graph_objects/layout/_xaxis.py | 125 ++++++----- plotly/graph_objects/layout/_yaxis.py | 113 +++++----- .../graph_objects/layout/annotation/_font.py | 11 +- .../layout/annotation/_hoverlabel.py | 28 +-- .../layout/annotation/hoverlabel/_font.py | 11 +- .../layout/coloraxis/_colorbar.py | 62 +++--- .../layout/coloraxis/colorbar/_tickfont.py | 11 +- .../layout/coloraxis/colorbar/_title.py | 6 +- .../layout/coloraxis/colorbar/title/_font.py | 11 +- plotly/graph_objects/layout/geo/_lataxis.py | 11 +- plotly/graph_objects/layout/geo/_lonaxis.py | 11 +- .../graph_objects/layout/geo/_projection.py | 6 +- .../graph_objects/layout/hoverlabel/_font.py | 11 +- .../layout/hoverlabel/_grouptitlefont.py | 11 +- plotly/graph_objects/layout/legend/_font.py | 11 +- .../layout/legend/_grouptitlefont.py | 11 +- plotly/graph_objects/layout/legend/_title.py | 6 +- .../layout/legend/title/_font.py | 11 +- plotly/graph_objects/layout/map/_layer.py | 35 +-- .../graph_objects/layout/map/layer/_fill.py | 11 +- .../graph_objects/layout/map/layer/_symbol.py | 6 +- .../layout/map/layer/symbol/_textfont.py | 11 +- plotly/graph_objects/layout/mapbox/_layer.py | 35 +-- .../layout/mapbox/layer/_fill.py | 11 +- .../layout/mapbox/layer/_symbol.py | 6 +- .../layout/mapbox/layer/symbol/_textfont.py | 11 +- .../layout/newselection/_line.py | 11 +- .../graph_objects/layout/newshape/_label.py | 6 +- .../layout/newshape/_legendgrouptitle.py | 6 +- plotly/graph_objects/layout/newshape/_line.py | 11 +- .../layout/newshape/label/_font.py | 11 +- .../layout/newshape/legendgrouptitle/_font.py | 11 +- .../layout/polar/_angularaxis.py | 56 ++--- .../graph_objects/layout/polar/_radialaxis.py | 68 +++--- .../layout/polar/angularaxis/_tickfont.py | 11 +- .../layout/polar/radialaxis/_tickfont.py | 11 +- .../layout/polar/radialaxis/_title.py | 6 +- .../layout/polar/radialaxis/title/_font.py | 11 +- .../graph_objects/layout/scene/_annotation.py | 45 ++-- plotly/graph_objects/layout/scene/_camera.py | 24 +- plotly/graph_objects/layout/scene/_xaxis.py | 101 +++++---- plotly/graph_objects/layout/scene/_yaxis.py | 101 +++++---- plotly/graph_objects/layout/scene/_zaxis.py | 101 +++++---- .../layout/scene/annotation/_font.py | 11 +- .../layout/scene/annotation/_hoverlabel.py | 28 +-- .../scene/annotation/hoverlabel/_font.py | 11 +- .../layout/scene/xaxis/_tickfont.py | 11 +- .../layout/scene/xaxis/_title.py | 6 +- .../layout/scene/xaxis/title/_font.py | 11 +- .../layout/scene/yaxis/_tickfont.py | 11 +- .../layout/scene/yaxis/_title.py | 6 +- .../layout/scene/yaxis/title/_font.py | 11 +- .../layout/scene/zaxis/_tickfont.py | 11 +- .../layout/scene/zaxis/_title.py | 6 +- .../layout/scene/zaxis/title/_font.py | 11 +- .../graph_objects/layout/selection/_line.py | 11 +- plotly/graph_objects/layout/shape/_label.py | 6 +- .../layout/shape/_legendgrouptitle.py | 6 +- plotly/graph_objects/layout/shape/_line.py | 11 +- .../graph_objects/layout/shape/label/_font.py | 11 +- .../layout/shape/legendgrouptitle/_font.py | 11 +- .../layout/slider/_currentvalue.py | 6 +- plotly/graph_objects/layout/slider/_font.py | 11 +- .../layout/slider/currentvalue/_font.py | 11 +- .../layout/smith/_imaginaryaxis.py | 50 +++-- .../graph_objects/layout/smith/_realaxis.py | 50 +++-- .../layout/smith/imaginaryaxis/_tickfont.py | 11 +- .../layout/smith/realaxis/_tickfont.py | 11 +- plotly/graph_objects/layout/ternary/_aaxis.py | 62 +++--- plotly/graph_objects/layout/ternary/_baxis.py | 62 +++--- plotly/graph_objects/layout/ternary/_caxis.py | 62 +++--- .../layout/ternary/aaxis/_tickfont.py | 11 +- .../layout/ternary/aaxis/_title.py | 6 +- .../layout/ternary/aaxis/title/_font.py | 11 +- .../layout/ternary/baxis/_tickfont.py | 11 +- .../layout/ternary/baxis/_title.py | 6 +- .../layout/ternary/baxis/title/_font.py | 11 +- .../layout/ternary/caxis/_tickfont.py | 11 +- .../layout/ternary/caxis/_title.py | 6 +- .../layout/ternary/caxis/title/_font.py | 11 +- plotly/graph_objects/layout/title/_font.py | 11 +- .../graph_objects/layout/title/_subtitle.py | 6 +- .../layout/title/subtitle/_font.py | 11 +- .../graph_objects/layout/updatemenu/_font.py | 11 +- plotly/graph_objects/layout/xaxis/_minor.py | 22 +- .../layout/xaxis/_rangeselector.py | 45 ++-- .../layout/xaxis/_rangeslider.py | 28 +-- .../graph_objects/layout/xaxis/_tickfont.py | 11 +- plotly/graph_objects/layout/xaxis/_title.py | 6 +- .../layout/xaxis/rangeselector/_font.py | 11 +- .../graph_objects/layout/xaxis/title/_font.py | 11 +- plotly/graph_objects/layout/yaxis/_minor.py | 22 +- .../graph_objects/layout/yaxis/_tickfont.py | 11 +- plotly/graph_objects/layout/yaxis/_title.py | 6 +- .../graph_objects/layout/yaxis/title/_font.py | 11 +- plotly/graph_objects/mesh3d/_colorbar.py | 62 +++--- plotly/graph_objects/mesh3d/_contour.py | 11 +- plotly/graph_objects/mesh3d/_hoverlabel.py | 32 +-- .../graph_objects/mesh3d/_legendgrouptitle.py | 6 +- .../mesh3d/colorbar/_tickfont.py | 11 +- .../graph_objects/mesh3d/colorbar/_title.py | 6 +- .../mesh3d/colorbar/title/_font.py | 11 +- .../graph_objects/mesh3d/hoverlabel/_font.py | 13 +- .../mesh3d/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/ohlc/_decreasing.py | 6 +- plotly/graph_objects/ohlc/_hoverlabel.py | 32 +-- plotly/graph_objects/ohlc/_increasing.py | 6 +- .../graph_objects/ohlc/_legendgrouptitle.py | 6 +- plotly/graph_objects/ohlc/decreasing/_line.py | 11 +- plotly/graph_objects/ohlc/hoverlabel/_font.py | 13 +- plotly/graph_objects/ohlc/increasing/_line.py | 11 +- .../ohlc/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/parcats/_labelfont.py | 11 +- .../parcats/_legendgrouptitle.py | 6 +- plotly/graph_objects/parcats/_line.py | 22 +- plotly/graph_objects/parcats/_tickfont.py | 11 +- .../parcats/legendgrouptitle/_font.py | 11 +- .../graph_objects/parcats/line/_colorbar.py | 62 +++--- .../parcats/line/colorbar/_tickfont.py | 11 +- .../parcats/line/colorbar/_title.py | 6 +- .../parcats/line/colorbar/title/_font.py | 11 +- plotly/graph_objects/parcoords/_labelfont.py | 11 +- .../parcoords/_legendgrouptitle.py | 6 +- plotly/graph_objects/parcoords/_line.py | 22 +- plotly/graph_objects/parcoords/_rangefont.py | 11 +- plotly/graph_objects/parcoords/_tickfont.py | 11 +- plotly/graph_objects/parcoords/_unselected.py | 6 +- .../parcoords/legendgrouptitle/_font.py | 11 +- .../graph_objects/parcoords/line/_colorbar.py | 62 +++--- .../parcoords/line/colorbar/_tickfont.py | 11 +- .../parcoords/line/colorbar/_title.py | 6 +- .../parcoords/line/colorbar/title/_font.py | 11 +- .../parcoords/unselected/_line.py | 11 +- plotly/graph_objects/pie/_hoverlabel.py | 32 +-- plotly/graph_objects/pie/_insidetextfont.py | 13 +- plotly/graph_objects/pie/_legendgrouptitle.py | 6 +- plotly/graph_objects/pie/_marker.py | 12 +- plotly/graph_objects/pie/_outsidetextfont.py | 13 +- plotly/graph_objects/pie/_textfont.py | 13 +- plotly/graph_objects/pie/_title.py | 6 +- plotly/graph_objects/pie/hoverlabel/_font.py | 13 +- .../pie/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/pie/marker/_line.py | 13 +- plotly/graph_objects/pie/marker/_pattern.py | 26 ++- plotly/graph_objects/pie/title/_font.py | 13 +- plotly/graph_objects/sankey/_hoverlabel.py | 32 +-- .../graph_objects/sankey/_legendgrouptitle.py | 6 +- plotly/graph_objects/sankey/_link.py | 44 ++-- plotly/graph_objects/sankey/_node.py | 25 ++- plotly/graph_objects/sankey/_textfont.py | 11 +- .../graph_objects/sankey/hoverlabel/_font.py | 13 +- .../sankey/legendgrouptitle/_font.py | 11 +- .../graph_objects/sankey/link/_hoverlabel.py | 32 +-- plotly/graph_objects/sankey/link/_line.py | 13 +- .../sankey/link/hoverlabel/_font.py | 13 +- .../graph_objects/sankey/node/_hoverlabel.py | 32 +-- plotly/graph_objects/sankey/node/_line.py | 13 +- .../sankey/node/hoverlabel/_font.py | 13 +- plotly/graph_objects/scatter/_error_x.py | 11 +- plotly/graph_objects/scatter/_error_y.py | 11 +- plotly/graph_objects/scatter/_fillpattern.py | 26 ++- plotly/graph_objects/scatter/_hoverlabel.py | 32 +-- .../scatter/_legendgrouptitle.py | 6 +- plotly/graph_objects/scatter/_line.py | 11 +- plotly/graph_objects/scatter/_marker.py | 34 +-- plotly/graph_objects/scatter/_selected.py | 12 +- plotly/graph_objects/scatter/_textfont.py | 13 +- plotly/graph_objects/scatter/_unselected.py | 12 +- .../graph_objects/scatter/hoverlabel/_font.py | 13 +- .../scatter/legendgrouptitle/_font.py | 11 +- .../graph_objects/scatter/marker/_colorbar.py | 62 +++--- .../graph_objects/scatter/marker/_gradient.py | 13 +- plotly/graph_objects/scatter/marker/_line.py | 16 +- .../scatter/marker/colorbar/_tickfont.py | 11 +- .../scatter/marker/colorbar/_title.py | 6 +- .../scatter/marker/colorbar/title/_font.py | 11 +- .../graph_objects/scatter/selected/_marker.py | 11 +- .../scatter/selected/_textfont.py | 11 +- .../scatter/unselected/_marker.py | 11 +- .../scatter/unselected/_textfont.py | 11 +- plotly/graph_objects/scatter3d/_error_x.py | 11 +- plotly/graph_objects/scatter3d/_error_y.py | 11 +- plotly/graph_objects/scatter3d/_error_z.py | 11 +- plotly/graph_objects/scatter3d/_hoverlabel.py | 32 +-- .../scatter3d/_legendgrouptitle.py | 6 +- plotly/graph_objects/scatter3d/_line.py | 22 +- plotly/graph_objects/scatter3d/_marker.py | 28 +-- plotly/graph_objects/scatter3d/_projection.py | 18 +- plotly/graph_objects/scatter3d/_textfont.py | 13 +- .../scatter3d/hoverlabel/_font.py | 13 +- .../scatter3d/legendgrouptitle/_font.py | 11 +- .../graph_objects/scatter3d/line/_colorbar.py | 62 +++--- .../scatter3d/line/colorbar/_tickfont.py | 11 +- .../scatter3d/line/colorbar/_title.py | 6 +- .../scatter3d/line/colorbar/title/_font.py | 11 +- .../scatter3d/marker/_colorbar.py | 62 +++--- .../graph_objects/scatter3d/marker/_line.py | 16 +- .../scatter3d/marker/colorbar/_tickfont.py | 11 +- .../scatter3d/marker/colorbar/_title.py | 6 +- .../scatter3d/marker/colorbar/title/_font.py | 11 +- .../scattercarpet/_hoverlabel.py | 32 +-- .../scattercarpet/_legendgrouptitle.py | 6 +- plotly/graph_objects/scattercarpet/_line.py | 11 +- plotly/graph_objects/scattercarpet/_marker.py | 34 +-- .../graph_objects/scattercarpet/_selected.py | 12 +- .../graph_objects/scattercarpet/_textfont.py | 13 +- .../scattercarpet/_unselected.py | 12 +- .../scattercarpet/hoverlabel/_font.py | 13 +- .../scattercarpet/legendgrouptitle/_font.py | 11 +- .../scattercarpet/marker/_colorbar.py | 62 +++--- .../scattercarpet/marker/_gradient.py | 13 +- .../scattercarpet/marker/_line.py | 16 +- .../marker/colorbar/_tickfont.py | 11 +- .../scattercarpet/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 11 +- .../scattercarpet/selected/_marker.py | 11 +- .../scattercarpet/selected/_textfont.py | 11 +- .../scattercarpet/unselected/_marker.py | 11 +- .../scattercarpet/unselected/_textfont.py | 11 +- .../graph_objects/scattergeo/_hoverlabel.py | 32 +-- .../scattergeo/_legendgrouptitle.py | 6 +- plotly/graph_objects/scattergeo/_line.py | 11 +- plotly/graph_objects/scattergeo/_marker.py | 34 +-- plotly/graph_objects/scattergeo/_selected.py | 12 +- plotly/graph_objects/scattergeo/_textfont.py | 13 +- .../graph_objects/scattergeo/_unselected.py | 12 +- .../scattergeo/hoverlabel/_font.py | 13 +- .../scattergeo/legendgrouptitle/_font.py | 11 +- .../scattergeo/marker/_colorbar.py | 62 +++--- .../scattergeo/marker/_gradient.py | 13 +- .../graph_objects/scattergeo/marker/_line.py | 16 +- .../scattergeo/marker/colorbar/_tickfont.py | 11 +- .../scattergeo/marker/colorbar/_title.py | 6 +- .../scattergeo/marker/colorbar/title/_font.py | 11 +- .../scattergeo/selected/_marker.py | 11 +- .../scattergeo/selected/_textfont.py | 11 +- .../scattergeo/unselected/_marker.py | 11 +- .../scattergeo/unselected/_textfont.py | 11 +- plotly/graph_objects/scattergl/_error_x.py | 11 +- plotly/graph_objects/scattergl/_error_y.py | 11 +- plotly/graph_objects/scattergl/_hoverlabel.py | 32 +-- .../scattergl/_legendgrouptitle.py | 6 +- plotly/graph_objects/scattergl/_line.py | 11 +- plotly/graph_objects/scattergl/_marker.py | 28 +-- plotly/graph_objects/scattergl/_selected.py | 12 +- plotly/graph_objects/scattergl/_textfont.py | 13 +- plotly/graph_objects/scattergl/_unselected.py | 12 +- .../scattergl/hoverlabel/_font.py | 13 +- .../scattergl/legendgrouptitle/_font.py | 11 +- .../scattergl/marker/_colorbar.py | 62 +++--- .../graph_objects/scattergl/marker/_line.py | 16 +- .../scattergl/marker/colorbar/_tickfont.py | 11 +- .../scattergl/marker/colorbar/_title.py | 6 +- .../scattergl/marker/colorbar/title/_font.py | 11 +- .../scattergl/selected/_marker.py | 11 +- .../scattergl/selected/_textfont.py | 11 +- .../scattergl/unselected/_marker.py | 11 +- .../scattergl/unselected/_textfont.py | 11 +- plotly/graph_objects/scattermap/_cluster.py | 13 +- .../graph_objects/scattermap/_hoverlabel.py | 32 +-- .../scattermap/_legendgrouptitle.py | 6 +- plotly/graph_objects/scattermap/_line.py | 11 +- plotly/graph_objects/scattermap/_marker.py | 22 +- plotly/graph_objects/scattermap/_selected.py | 6 +- plotly/graph_objects/scattermap/_textfont.py | 11 +- .../graph_objects/scattermap/_unselected.py | 6 +- .../scattermap/hoverlabel/_font.py | 13 +- .../scattermap/legendgrouptitle/_font.py | 11 +- .../scattermap/marker/_colorbar.py | 62 +++--- .../scattermap/marker/colorbar/_tickfont.py | 11 +- .../scattermap/marker/colorbar/_title.py | 6 +- .../scattermap/marker/colorbar/title/_font.py | 11 +- .../scattermap/selected/_marker.py | 11 +- .../scattermap/unselected/_marker.py | 11 +- .../graph_objects/scattermapbox/_cluster.py | 13 +- .../scattermapbox/_hoverlabel.py | 32 +-- .../scattermapbox/_legendgrouptitle.py | 6 +- plotly/graph_objects/scattermapbox/_line.py | 11 +- plotly/graph_objects/scattermapbox/_marker.py | 22 +- .../graph_objects/scattermapbox/_selected.py | 6 +- .../graph_objects/scattermapbox/_textfont.py | 11 +- .../scattermapbox/_unselected.py | 6 +- .../scattermapbox/hoverlabel/_font.py | 13 +- .../scattermapbox/legendgrouptitle/_font.py | 11 +- .../scattermapbox/marker/_colorbar.py | 62 +++--- .../marker/colorbar/_tickfont.py | 11 +- .../scattermapbox/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 11 +- .../scattermapbox/selected/_marker.py | 11 +- .../scattermapbox/unselected/_marker.py | 11 +- .../graph_objects/scatterpolar/_hoverlabel.py | 32 +-- .../scatterpolar/_legendgrouptitle.py | 6 +- plotly/graph_objects/scatterpolar/_line.py | 11 +- plotly/graph_objects/scatterpolar/_marker.py | 34 +-- .../graph_objects/scatterpolar/_selected.py | 12 +- .../graph_objects/scatterpolar/_textfont.py | 13 +- .../graph_objects/scatterpolar/_unselected.py | 12 +- .../scatterpolar/hoverlabel/_font.py | 13 +- .../scatterpolar/legendgrouptitle/_font.py | 11 +- .../scatterpolar/marker/_colorbar.py | 62 +++--- .../scatterpolar/marker/_gradient.py | 13 +- .../scatterpolar/marker/_line.py | 16 +- .../scatterpolar/marker/colorbar/_tickfont.py | 11 +- .../scatterpolar/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 11 +- .../scatterpolar/selected/_marker.py | 11 +- .../scatterpolar/selected/_textfont.py | 11 +- .../scatterpolar/unselected/_marker.py | 11 +- .../scatterpolar/unselected/_textfont.py | 11 +- .../scatterpolargl/_hoverlabel.py | 32 +-- .../scatterpolargl/_legendgrouptitle.py | 6 +- plotly/graph_objects/scatterpolargl/_line.py | 11 +- .../graph_objects/scatterpolargl/_marker.py | 28 +-- .../graph_objects/scatterpolargl/_selected.py | 12 +- .../graph_objects/scatterpolargl/_textfont.py | 13 +- .../scatterpolargl/_unselected.py | 12 +- .../scatterpolargl/hoverlabel/_font.py | 13 +- .../scatterpolargl/legendgrouptitle/_font.py | 11 +- .../scatterpolargl/marker/_colorbar.py | 62 +++--- .../scatterpolargl/marker/_line.py | 16 +- .../marker/colorbar/_tickfont.py | 11 +- .../scatterpolargl/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 11 +- .../scatterpolargl/selected/_marker.py | 11 +- .../scatterpolargl/selected/_textfont.py | 11 +- .../scatterpolargl/unselected/_marker.py | 11 +- .../scatterpolargl/unselected/_textfont.py | 11 +- .../graph_objects/scattersmith/_hoverlabel.py | 32 +-- .../scattersmith/_legendgrouptitle.py | 6 +- plotly/graph_objects/scattersmith/_line.py | 11 +- plotly/graph_objects/scattersmith/_marker.py | 34 +-- .../graph_objects/scattersmith/_selected.py | 12 +- .../graph_objects/scattersmith/_textfont.py | 13 +- .../graph_objects/scattersmith/_unselected.py | 12 +- .../scattersmith/hoverlabel/_font.py | 13 +- .../scattersmith/legendgrouptitle/_font.py | 11 +- .../scattersmith/marker/_colorbar.py | 62 +++--- .../scattersmith/marker/_gradient.py | 13 +- .../scattersmith/marker/_line.py | 16 +- .../scattersmith/marker/colorbar/_tickfont.py | 11 +- .../scattersmith/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 11 +- .../scattersmith/selected/_marker.py | 11 +- .../scattersmith/selected/_textfont.py | 11 +- .../scattersmith/unselected/_marker.py | 11 +- .../scattersmith/unselected/_textfont.py | 11 +- .../scatterternary/_hoverlabel.py | 32 +-- .../scatterternary/_legendgrouptitle.py | 6 +- plotly/graph_objects/scatterternary/_line.py | 11 +- .../graph_objects/scatterternary/_marker.py | 34 +-- .../graph_objects/scatterternary/_selected.py | 12 +- .../graph_objects/scatterternary/_textfont.py | 13 +- .../scatterternary/_unselected.py | 12 +- .../scatterternary/hoverlabel/_font.py | 13 +- .../scatterternary/legendgrouptitle/_font.py | 11 +- .../scatterternary/marker/_colorbar.py | 62 +++--- .../scatterternary/marker/_gradient.py | 13 +- .../scatterternary/marker/_line.py | 16 +- .../marker/colorbar/_tickfont.py | 11 +- .../scatterternary/marker/colorbar/_title.py | 6 +- .../marker/colorbar/title/_font.py | 11 +- .../scatterternary/selected/_marker.py | 11 +- .../scatterternary/selected/_textfont.py | 11 +- .../scatterternary/unselected/_marker.py | 11 +- .../scatterternary/unselected/_textfont.py | 11 +- plotly/graph_objects/splom/_dimension.py | 6 +- plotly/graph_objects/splom/_hoverlabel.py | 32 +-- .../graph_objects/splom/_legendgrouptitle.py | 6 +- plotly/graph_objects/splom/_marker.py | 28 +-- plotly/graph_objects/splom/_selected.py | 6 +- plotly/graph_objects/splom/_unselected.py | 6 +- .../graph_objects/splom/hoverlabel/_font.py | 13 +- .../splom/legendgrouptitle/_font.py | 11 +- .../graph_objects/splom/marker/_colorbar.py | 62 +++--- plotly/graph_objects/splom/marker/_line.py | 16 +- .../splom/marker/colorbar/_tickfont.py | 11 +- .../splom/marker/colorbar/_title.py | 6 +- .../splom/marker/colorbar/title/_font.py | 11 +- .../graph_objects/splom/selected/_marker.py | 11 +- .../graph_objects/splom/unselected/_marker.py | 11 +- plotly/graph_objects/streamtube/_colorbar.py | 62 +++--- .../graph_objects/streamtube/_hoverlabel.py | 32 +-- .../streamtube/_legendgrouptitle.py | 6 +- .../streamtube/colorbar/_tickfont.py | 11 +- .../streamtube/colorbar/_title.py | 6 +- .../streamtube/colorbar/title/_font.py | 11 +- .../streamtube/hoverlabel/_font.py | 13 +- .../streamtube/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/sunburst/_hoverlabel.py | 32 +-- .../graph_objects/sunburst/_insidetextfont.py | 13 +- .../sunburst/_legendgrouptitle.py | 6 +- plotly/graph_objects/sunburst/_marker.py | 18 +- .../sunburst/_outsidetextfont.py | 13 +- plotly/graph_objects/sunburst/_root.py | 11 +- plotly/graph_objects/sunburst/_textfont.py | 13 +- .../sunburst/hoverlabel/_font.py | 13 +- .../sunburst/legendgrouptitle/_font.py | 11 +- .../sunburst/marker/_colorbar.py | 62 +++--- plotly/graph_objects/sunburst/marker/_line.py | 13 +- .../graph_objects/sunburst/marker/_pattern.py | 26 ++- .../sunburst/marker/colorbar/_tickfont.py | 11 +- .../sunburst/marker/colorbar/_title.py | 6 +- .../sunburst/marker/colorbar/title/_font.py | 11 +- plotly/graph_objects/surface/_colorbar.py | 62 +++--- plotly/graph_objects/surface/_contours.py | 18 +- plotly/graph_objects/surface/_hoverlabel.py | 32 +-- .../surface/_legendgrouptitle.py | 6 +- .../surface/colorbar/_tickfont.py | 11 +- .../graph_objects/surface/colorbar/_title.py | 6 +- .../surface/colorbar/title/_font.py | 11 +- plotly/graph_objects/surface/contours/_x.py | 28 +-- plotly/graph_objects/surface/contours/_y.py | 28 +-- plotly/graph_objects/surface/contours/_z.py | 28 +-- .../graph_objects/surface/hoverlabel/_font.py | 13 +- .../surface/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/table/_cells.py | 18 +- plotly/graph_objects/table/_header.py | 18 +- plotly/graph_objects/table/_hoverlabel.py | 32 +-- .../graph_objects/table/_legendgrouptitle.py | 6 +- plotly/graph_objects/table/cells/_fill.py | 13 +- plotly/graph_objects/table/cells/_font.py | 13 +- plotly/graph_objects/table/cells/_line.py | 13 +- plotly/graph_objects/table/header/_fill.py | 13 +- plotly/graph_objects/table/header/_font.py | 13 +- plotly/graph_objects/table/header/_line.py | 13 +- .../graph_objects/table/hoverlabel/_font.py | 13 +- .../table/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/treemap/_hoverlabel.py | 32 +-- .../graph_objects/treemap/_insidetextfont.py | 13 +- .../treemap/_legendgrouptitle.py | 6 +- plotly/graph_objects/treemap/_marker.py | 24 +- .../graph_objects/treemap/_outsidetextfont.py | 13 +- plotly/graph_objects/treemap/_pathbar.py | 6 +- plotly/graph_objects/treemap/_root.py | 11 +- plotly/graph_objects/treemap/_textfont.py | 13 +- .../graph_objects/treemap/hoverlabel/_font.py | 13 +- .../treemap/legendgrouptitle/_font.py | 11 +- .../graph_objects/treemap/marker/_colorbar.py | 62 +++--- plotly/graph_objects/treemap/marker/_line.py | 13 +- .../graph_objects/treemap/marker/_pattern.py | 26 ++- .../treemap/marker/colorbar/_tickfont.py | 11 +- .../treemap/marker/colorbar/_title.py | 6 +- .../treemap/marker/colorbar/title/_font.py | 11 +- .../treemap/pathbar/_textfont.py | 13 +- plotly/graph_objects/violin/_box.py | 17 +- plotly/graph_objects/violin/_hoverlabel.py | 32 +-- .../graph_objects/violin/_legendgrouptitle.py | 6 +- plotly/graph_objects/violin/_line.py | 11 +- plotly/graph_objects/violin/_marker.py | 28 +-- plotly/graph_objects/violin/_meanline.py | 11 +- plotly/graph_objects/violin/_selected.py | 6 +- plotly/graph_objects/violin/_unselected.py | 6 +- plotly/graph_objects/violin/box/_line.py | 11 +- .../graph_objects/violin/hoverlabel/_font.py | 13 +- .../violin/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/violin/marker/_line.py | 22 +- .../graph_objects/violin/selected/_marker.py | 11 +- .../violin/unselected/_marker.py | 11 +- plotly/graph_objects/volume/_caps.py | 18 +- plotly/graph_objects/volume/_colorbar.py | 62 +++--- plotly/graph_objects/volume/_contour.py | 11 +- plotly/graph_objects/volume/_hoverlabel.py | 32 +-- .../graph_objects/volume/_legendgrouptitle.py | 6 +- plotly/graph_objects/volume/_slices.py | 18 +- .../volume/colorbar/_tickfont.py | 11 +- .../graph_objects/volume/colorbar/_title.py | 6 +- .../volume/colorbar/title/_font.py | 11 +- .../graph_objects/volume/hoverlabel/_font.py | 13 +- .../volume/legendgrouptitle/_font.py | 11 +- plotly/graph_objects/waterfall/_connector.py | 6 +- plotly/graph_objects/waterfall/_decreasing.py | 6 +- plotly/graph_objects/waterfall/_hoverlabel.py | 32 +-- plotly/graph_objects/waterfall/_increasing.py | 6 +- .../waterfall/_insidetextfont.py | 13 +- .../waterfall/_legendgrouptitle.py | 6 +- .../waterfall/_outsidetextfont.py | 13 +- plotly/graph_objects/waterfall/_textfont.py | 13 +- plotly/graph_objects/waterfall/_totals.py | 6 +- .../waterfall/connector/_line.py | 11 +- .../waterfall/decreasing/_marker.py | 17 +- .../waterfall/decreasing/marker/_line.py | 11 +- .../waterfall/hoverlabel/_font.py | 13 +- .../waterfall/increasing/_marker.py | 17 +- .../waterfall/increasing/marker/_line.py | 11 +- .../waterfall/legendgrouptitle/_font.py | 11 +- .../graph_objects/waterfall/totals/_marker.py | 17 +- .../waterfall/totals/marker/_line.py | 11 +- 843 files changed, 8659 insertions(+), 7808 deletions(-) diff --git a/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py index 8daf415eb4..05b2933af8 100644 --- a/_plotly_utils/basevalidators.py +++ b/_plotly_utils/basevalidators.py @@ -1317,11 +1317,12 @@ def numbers_allowed(self): def description(self): valid_color_description = """\ The '{plotly_name}' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list""".format( + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list""".format( plotly_name=self.plotly_name ) @@ -1329,15 +1330,15 @@ def description(self): valid_color_description = ( valid_color_description + """ - - A number that will be interpreted as a color - according to {colorscale_path}""".format(colorscale_path=self.colorscale_path) - ) + - A number that will be interpreted as a color according to {colorscale_path}""".format( + colorscale_path=self.colorscale_path) + ) if self.array_ok: valid_color_description = ( valid_color_description + """ - - A list or array of any of the above""" + - A list or array of any of the above""" ) return valid_color_description @@ -2419,10 +2420,9 @@ def description(self): desc = ( """\ The '{plotly_name}' property is an instance of {class_str} - that may be specified as: - - An instance of :class:`{module_str}.{class_str}` - - A dict of string/value properties that will be passed - to the {class_str} constructor""" + that may be specified as:\n + - An instance of :class:`{module_str}.{class_str}` + - A dict of string/value properties that will be passed to the {class_str} constructor""" ).format( plotly_name=self.plotly_name, class_str=self.data_class_str, diff --git a/plotly/graph_objects/_bar.py b/plotly/graph_objects/_bar.py index 750d5c1cbb..93d31f4210 100644 --- a/plotly/graph_objects/_bar.py +++ b/plotly/graph_objects/_bar.py @@ -272,9 +272,9 @@ def error_x(self): """ The 'error_x' property is an instance of ErrorX that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.ErrorX` - - A dict of string/value properties that will be passed - to the ErrorX constructor + + - An instance of :class:`plotly.graph_objects.bar.ErrorX` + - A dict of string/value properties that will be passed to the ErrorX constructor Returns ------- @@ -291,9 +291,9 @@ def error_y(self): """ The 'error_y' property is an instance of ErrorY that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.ErrorY` - - A dict of string/value properties that will be passed - to the ErrorY constructor + + - An instance of :class:`plotly.graph_objects.bar.ErrorY` + - A dict of string/value properties that will be passed to the ErrorY constructor Returns ------- @@ -353,9 +353,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.bar.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -546,9 +546,9 @@ def insidetextfont(self): The 'insidetextfont' property is an instance of Insidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.Insidetextfont` - - A dict of string/value properties that will be passed - to the Insidetextfont constructor + + - An instance of :class:`plotly.graph_objects.bar.Insidetextfont` + - A dict of string/value properties that will be passed to the Insidetextfont constructor Returns ------- @@ -611,9 +611,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.bar.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -676,9 +676,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.bar.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -868,9 +868,9 @@ def outsidetextfont(self): The 'outsidetextfont' property is an instance of Outsidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.Outsidetextfont` - - A dict of string/value properties that will be passed - to the Outsidetextfont constructor + + - An instance of :class:`plotly.graph_objects.bar.Outsidetextfont` + - A dict of string/value properties that will be passed to the Outsidetextfont constructor Returns ------- @@ -887,9 +887,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.bar.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -947,9 +947,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.bar.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -1019,9 +1019,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.bar.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1213,9 +1213,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.bar.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_barpolar.py b/plotly/graph_objects/_barpolar.py index 8d10a07e33..40db7d8c5d 100644 --- a/plotly/graph_objects/_barpolar.py +++ b/plotly/graph_objects/_barpolar.py @@ -224,9 +224,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.barpolar.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -433,9 +433,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.barpolar.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -498,9 +498,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.barpolar.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -697,9 +697,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.barpolar.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -757,9 +757,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.barpolar.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -973,9 +973,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.barpolar.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_box.py b/plotly/graph_objects/_box.py index 7937390117..99cbd6d880 100644 --- a/plotly/graph_objects/_box.py +++ b/plotly/graph_objects/_box.py @@ -262,11 +262,12 @@ def fillcolor(self): is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -326,9 +327,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.box.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.box.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -578,9 +579,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.box.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.box.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -643,9 +644,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.box.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.box.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -703,9 +704,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.box.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.box.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -1209,9 +1210,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.box.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.box.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -1313,9 +1314,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.box.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.box.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -1430,9 +1431,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.box.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.box.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_candlestick.py b/plotly/graph_objects/_candlestick.py index 04d5558873..3bba39b5e1 100644 --- a/plotly/graph_objects/_candlestick.py +++ b/plotly/graph_objects/_candlestick.py @@ -142,9 +142,9 @@ def decreasing(self): """ The 'decreasing' property is an instance of Decreasing that may be specified as: - - An instance of :class:`plotly.graph_objects.candlestick.Decreasing` - - A dict of string/value properties that will be passed - to the Decreasing constructor + + - An instance of :class:`plotly.graph_objects.candlestick.Decreasing` + - A dict of string/value properties that will be passed to the Decreasing constructor Returns ------- @@ -240,9 +240,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.candlestick.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.candlestick.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -339,9 +339,9 @@ def increasing(self): """ The 'increasing' property is an instance of Increasing that may be specified as: - - An instance of :class:`plotly.graph_objects.candlestick.Increasing` - - A dict of string/value properties that will be passed - to the Increasing constructor + + - An instance of :class:`plotly.graph_objects.candlestick.Increasing` + - A dict of string/value properties that will be passed to the Increasing constructor Returns ------- @@ -404,9 +404,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.candlestick.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.candlestick.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -469,9 +469,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.candlestick.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.candlestick.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -686,9 +686,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.candlestick.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.candlestick.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- diff --git a/plotly/graph_objects/_carpet.py b/plotly/graph_objects/_carpet.py index 41be8ff53a..eb13dbeb29 100644 --- a/plotly/graph_objects/_carpet.py +++ b/plotly/graph_objects/_carpet.py @@ -93,9 +93,9 @@ def aaxis(self): """ The 'aaxis' property is an instance of Aaxis that may be specified as: - - An instance of :class:`plotly.graph_objects.carpet.Aaxis` - - A dict of string/value properties that will be passed - to the Aaxis constructor + + - An instance of :class:`plotly.graph_objects.carpet.Aaxis` + - A dict of string/value properties that will be passed to the Aaxis constructor Returns ------- @@ -169,9 +169,9 @@ def baxis(self): """ The 'baxis' property is an instance of Baxis that may be specified as: - - An instance of :class:`plotly.graph_objects.carpet.Baxis` - - A dict of string/value properties that will be passed - to the Baxis constructor + + - An instance of :class:`plotly.graph_objects.carpet.Baxis` + - A dict of string/value properties that will be passed to the Baxis constructor Returns ------- @@ -253,11 +253,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -354,9 +355,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.carpet.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.carpet.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- @@ -434,9 +435,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.carpet.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.carpet.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -584,9 +585,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.carpet.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.carpet.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- diff --git a/plotly/graph_objects/_choropleth.py b/plotly/graph_objects/_choropleth.py index 0ba6beef1d..76f8ce8da0 100644 --- a/plotly/graph_objects/_choropleth.py +++ b/plotly/graph_objects/_choropleth.py @@ -113,9 +113,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.choropleth.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -334,9 +334,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.choropleth.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -543,9 +543,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.choropleth.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -671,9 +671,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.choropleth.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -776,9 +776,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.choropleth.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -855,9 +855,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.choropleth.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -968,9 +968,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.choropleth.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_choroplethmap.py b/plotly/graph_objects/_choroplethmap.py index 452cfe6ebe..79ccbb75f0 100644 --- a/plotly/graph_objects/_choroplethmap.py +++ b/plotly/graph_objects/_choroplethmap.py @@ -137,9 +137,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -333,9 +333,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -543,9 +543,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -646,9 +646,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -751,9 +751,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -830,9 +830,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -966,9 +966,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_choroplethmapbox.py b/plotly/graph_objects/_choroplethmapbox.py index 522e6448fc..cb066ae29c 100644 --- a/plotly/graph_objects/_choroplethmapbox.py +++ b/plotly/graph_objects/_choroplethmapbox.py @@ -138,9 +138,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -334,9 +334,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -544,9 +544,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -647,9 +647,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -752,9 +752,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -831,9 +831,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -971,9 +971,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_cone.py b/plotly/graph_objects/_cone.py index 0148a6c637..fa52d0e804 100644 --- a/plotly/graph_objects/_cone.py +++ b/plotly/graph_objects/_cone.py @@ -234,9 +234,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.cone.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.cone.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -387,9 +387,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.cone.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.cone.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -597,9 +597,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.cone.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.cone.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -662,9 +662,9 @@ def lighting(self): """ The 'lighting' property is an instance of Lighting that may be specified as: - - An instance of :class:`plotly.graph_objects.cone.Lighting` - - A dict of string/value properties that will be passed - to the Lighting constructor + + - An instance of :class:`plotly.graph_objects.cone.Lighting` + - A dict of string/value properties that will be passed to the Lighting constructor Returns ------- @@ -681,9 +681,9 @@ def lightposition(self): """ The 'lightposition' property is an instance of Lightposition that may be specified as: - - An instance of :class:`plotly.graph_objects.cone.Lightposition` - - A dict of string/value properties that will be passed - to the Lightposition constructor + + - An instance of :class:`plotly.graph_objects.cone.Lightposition` + - A dict of string/value properties that will be passed to the Lightposition constructor Returns ------- @@ -925,9 +925,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.cone.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.cone.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- diff --git a/plotly/graph_objects/_contour.py b/plotly/graph_objects/_contour.py index a7903609b8..3ed11fc24d 100644 --- a/plotly/graph_objects/_contour.py +++ b/plotly/graph_objects/_contour.py @@ -159,9 +159,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.contour.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.contour.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -249,9 +249,9 @@ def contours(self): """ The 'contours' property is an instance of Contours that may be specified as: - - An instance of :class:`plotly.graph_objects.contour.Contours` - - A dict of string/value properties that will be passed - to the Contours constructor + + - An instance of :class:`plotly.graph_objects.contour.Contours` + - A dict of string/value properties that will be passed to the Contours constructor Returns ------- @@ -349,13 +349,13 @@ def fillcolor(self): marker color, or marker line color, whichever is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to contour.colorscale + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to contour.colorscale Returns ------- @@ -415,9 +415,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.contour.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.contour.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -638,9 +638,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.contour.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.contour.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -703,9 +703,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.contour.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.contour.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -887,9 +887,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.contour.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.contour.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -927,9 +927,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.contour.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.contour.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/_contourcarpet.py b/plotly/graph_objects/_contourcarpet.py index 983a5666d8..4bd2d3c31c 100644 --- a/plotly/graph_objects/_contourcarpet.py +++ b/plotly/graph_objects/_contourcarpet.py @@ -320,9 +320,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.contourcarpet.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.contourcarpet.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -390,9 +390,9 @@ def contours(self): """ The 'contours' property is an instance of Contours that may be specified as: - - An instance of :class:`plotly.graph_objects.contourcarpet.Contours` - - A dict of string/value properties that will be passed - to the Contours constructor + + - An instance of :class:`plotly.graph_objects.contourcarpet.Contours` + - A dict of string/value properties that will be passed to the Contours constructor Returns ------- @@ -490,13 +490,13 @@ def fillcolor(self): marker color, or marker line color, whichever is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to contourcarpet.colorscale + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to contourcarpet.colorscale Returns ------- @@ -634,9 +634,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.contourcarpet.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.contourcarpet.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -699,9 +699,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.contourcarpet.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.contourcarpet.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -883,9 +883,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.contourcarpet.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.contourcarpet.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- diff --git a/plotly/graph_objects/_densitymap.py b/plotly/graph_objects/_densitymap.py index 5da75dac38..10fb7697ea 100644 --- a/plotly/graph_objects/_densitymap.py +++ b/plotly/graph_objects/_densitymap.py @@ -136,9 +136,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymap.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.densitymap.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -289,9 +289,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymap.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.densitymap.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -538,9 +538,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymap.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.densitymap.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -823,9 +823,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymap.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.densitymap.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- diff --git a/plotly/graph_objects/_densitymapbox.py b/plotly/graph_objects/_densitymapbox.py index 539e6665a0..d0ff5b3796 100644 --- a/plotly/graph_objects/_densitymapbox.py +++ b/plotly/graph_objects/_densitymapbox.py @@ -137,9 +137,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymapbox.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.densitymapbox.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -290,9 +290,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymapbox.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.densitymapbox.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -539,9 +539,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymapbox.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.densitymapbox.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -824,9 +824,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymapbox.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.densitymapbox.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- diff --git a/plotly/graph_objects/_figure.py b/plotly/graph_objects/_figure.py index 106947c0b2..62b002d850 100644 --- a/plotly/graph_objects/_figure.py +++ b/plotly/graph_objects/_figure.py @@ -47,9 +47,9 @@ def __init__( layout The 'layout' property is an instance of Layout that may be specified as: - - An instance of :class:`plotly.graph_objects.Layout` - - A dict of string/value properties that will be passed - to the Layout constructor + + - An instance of :class:`plotly.graph_objects.Layout` + - A dict of string/value properties that will be passed to the Layout constructor frames The 'frames' property is a tuple of instances of diff --git a/plotly/graph_objects/_figurewidget.py b/plotly/graph_objects/_figurewidget.py index ff7e0307c2..18ba6fedb7 100644 --- a/plotly/graph_objects/_figurewidget.py +++ b/plotly/graph_objects/_figurewidget.py @@ -47,9 +47,9 @@ def __init__( layout The 'layout' property is an instance of Layout that may be specified as: - - An instance of :class:`plotly.graph_objects.Layout` - - A dict of string/value properties that will be passed - to the Layout constructor + + - An instance of :class:`plotly.graph_objects.Layout` + - A dict of string/value properties that will be passed to the Layout constructor frames The 'frames' property is a tuple of instances of diff --git a/plotly/graph_objects/_funnel.py b/plotly/graph_objects/_funnel.py index a973ec5945..8790a0ba99 100644 --- a/plotly/graph_objects/_funnel.py +++ b/plotly/graph_objects/_funnel.py @@ -127,9 +127,9 @@ def connector(self): """ The 'connector' property is an instance of Connector that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.Connector` - - A dict of string/value properties that will be passed - to the Connector constructor + + - An instance of :class:`plotly.graph_objects.funnel.Connector` + - A dict of string/value properties that will be passed to the Connector constructor Returns ------- @@ -289,9 +289,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.funnel.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -482,9 +482,9 @@ def insidetextfont(self): The 'insidetextfont' property is an instance of Insidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.Insidetextfont` - - A dict of string/value properties that will be passed - to the Insidetextfont constructor + + - An instance of :class:`plotly.graph_objects.funnel.Insidetextfont` + - A dict of string/value properties that will be passed to the Insidetextfont constructor Returns ------- @@ -547,9 +547,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.funnel.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -612,9 +612,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.funnel.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -788,9 +788,9 @@ def outsidetextfont(self): The 'outsidetextfont' property is an instance of Outsidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.Outsidetextfont` - - A dict of string/value properties that will be passed - to the Outsidetextfont constructor + + - An instance of :class:`plotly.graph_objects.funnel.Outsidetextfont` + - A dict of string/value properties that will be passed to the Outsidetextfont constructor Returns ------- @@ -848,9 +848,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.funnel.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -920,9 +920,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.funnel.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/_funnelarea.py b/plotly/graph_objects/_funnelarea.py index 229204a75a..a3eace8110 100644 --- a/plotly/graph_objects/_funnelarea.py +++ b/plotly/graph_objects/_funnelarea.py @@ -160,9 +160,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.funnelarea.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.funnelarea.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -222,9 +222,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.funnelarea.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.funnelarea.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -393,9 +393,9 @@ def insidetextfont(self): The 'insidetextfont' property is an instance of Insidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.funnelarea.Insidetextfont` - - A dict of string/value properties that will be passed - to the Insidetextfont constructor + + - An instance of :class:`plotly.graph_objects.funnelarea.Insidetextfont` + - A dict of string/value properties that will be passed to the Insidetextfont constructor Returns ------- @@ -519,9 +519,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.funnelarea.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.funnelarea.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -584,9 +584,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.funnelarea.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.funnelarea.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -730,9 +730,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.funnelarea.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.funnelarea.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -773,9 +773,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.funnelarea.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.funnelarea.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -928,9 +928,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.funnelarea.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.funnelarea.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/_heatmap.py b/plotly/graph_objects/_heatmap.py index 47abb124e4..f6a80b2b1b 100644 --- a/plotly/graph_objects/_heatmap.py +++ b/plotly/graph_objects/_heatmap.py @@ -136,9 +136,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.heatmap.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.heatmap.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -348,9 +348,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.heatmap.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.heatmap.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -571,9 +571,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.heatmap.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.heatmap.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -779,9 +779,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.heatmap.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.heatmap.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -818,9 +818,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.heatmap.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.heatmap.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/_histogram.py b/plotly/graph_objects/_histogram.py index 4a661b3696..e16f465acd 100644 --- a/plotly/graph_objects/_histogram.py +++ b/plotly/graph_objects/_histogram.py @@ -218,9 +218,9 @@ def cumulative(self): """ The 'cumulative' property is an instance of Cumulative that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.Cumulative` - - A dict of string/value properties that will be passed - to the Cumulative constructor + + - An instance of :class:`plotly.graph_objects.histogram.Cumulative` + - A dict of string/value properties that will be passed to the Cumulative constructor Returns ------- @@ -277,9 +277,9 @@ def error_x(self): """ The 'error_x' property is an instance of ErrorX that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.ErrorX` - - A dict of string/value properties that will be passed - to the ErrorX constructor + + - An instance of :class:`plotly.graph_objects.histogram.ErrorX` + - A dict of string/value properties that will be passed to the ErrorX constructor Returns ------- @@ -296,9 +296,9 @@ def error_y(self): """ The 'error_y' property is an instance of ErrorY that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.ErrorY` - - A dict of string/value properties that will be passed - to the ErrorY constructor + + - An instance of :class:`plotly.graph_objects.histogram.ErrorY` + - A dict of string/value properties that will be passed to the ErrorY constructor Returns ------- @@ -418,9 +418,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.histogram.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -606,9 +606,9 @@ def insidetextfont(self): The 'insidetextfont' property is an instance of Insidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.Insidetextfont` - - A dict of string/value properties that will be passed - to the Insidetextfont constructor + + - An instance of :class:`plotly.graph_objects.histogram.Insidetextfont` + - A dict of string/value properties that will be passed to the Insidetextfont constructor Returns ------- @@ -671,9 +671,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.histogram.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -736,9 +736,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.histogram.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -931,9 +931,9 @@ def outsidetextfont(self): The 'outsidetextfont' property is an instance of Outsidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.Outsidetextfont` - - A dict of string/value properties that will be passed - to the Outsidetextfont constructor + + - An instance of :class:`plotly.graph_objects.histogram.Outsidetextfont` + - A dict of string/value properties that will be passed to the Outsidetextfont constructor Returns ------- @@ -950,9 +950,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.histogram.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -1010,9 +1010,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.histogram.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -1080,9 +1080,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.histogram.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1232,9 +1232,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.histogram.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- @@ -1315,9 +1315,9 @@ def xbins(self): """ The 'xbins' property is an instance of XBins that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.XBins` - - A dict of string/value properties that will be passed - to the XBins constructor + + - An instance of :class:`plotly.graph_objects.histogram.XBins` + - A dict of string/value properties that will be passed to the XBins constructor Returns ------- @@ -1448,9 +1448,9 @@ def ybins(self): """ The 'ybins' property is an instance of YBins that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.YBins` - - A dict of string/value properties that will be passed - to the YBins constructor + + - An instance of :class:`plotly.graph_objects.histogram.YBins` + - A dict of string/value properties that will be passed to the YBins constructor Returns ------- diff --git a/plotly/graph_objects/_histogram2d.py b/plotly/graph_objects/_histogram2d.py index 7b47dda009..f7922a797f 100644 --- a/plotly/graph_objects/_histogram2d.py +++ b/plotly/graph_objects/_histogram2d.py @@ -193,9 +193,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2d.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.histogram2d.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -406,9 +406,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2d.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.histogram2d.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -574,9 +574,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2d.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.histogram2d.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -639,9 +639,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2d.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.histogram2d.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -845,9 +845,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2d.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.histogram2d.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -866,9 +866,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2d.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.histogram2d.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1060,9 +1060,9 @@ def xbins(self): """ The 'xbins' property is an instance of XBins that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2d.XBins` - - A dict of string/value properties that will be passed - to the XBins constructor + + - An instance of :class:`plotly.graph_objects.histogram2d.XBins` + - A dict of string/value properties that will be passed to the XBins constructor Returns ------- @@ -1237,9 +1237,9 @@ def ybins(self): """ The 'ybins' property is an instance of YBins that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2d.YBins` - - A dict of string/value properties that will be passed - to the YBins constructor + + - An instance of :class:`plotly.graph_objects.histogram2d.YBins` + - A dict of string/value properties that will be passed to the YBins constructor Returns ------- diff --git a/plotly/graph_objects/_histogram2dcontour.py b/plotly/graph_objects/_histogram2dcontour.py index d49d39f18c..6a4cf0c05b 100644 --- a/plotly/graph_objects/_histogram2dcontour.py +++ b/plotly/graph_objects/_histogram2dcontour.py @@ -215,9 +215,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -285,9 +285,9 @@ def contours(self): """ The 'contours' property is an instance of Contours that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.Contours` - - A dict of string/value properties that will be passed - to the Contours constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.Contours` + - A dict of string/value properties that will be passed to the Contours constructor Returns ------- @@ -447,9 +447,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -615,9 +615,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -680,9 +680,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -699,9 +699,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -927,9 +927,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -949,9 +949,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1145,9 +1145,9 @@ def xbins(self): """ The 'xbins' property is an instance of XBins that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.XBins` - - A dict of string/value properties that will be passed - to the XBins constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.XBins` + - A dict of string/value properties that will be passed to the XBins constructor Returns ------- @@ -1303,9 +1303,9 @@ def ybins(self): """ The 'ybins' property is an instance of YBins that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.YBins` - - A dict of string/value properties that will be passed - to the YBins constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.YBins` + - A dict of string/value properties that will be passed to the YBins constructor Returns ------- diff --git a/plotly/graph_objects/_icicle.py b/plotly/graph_objects/_icicle.py index 86fadf4fe6..933af83ab7 100644 --- a/plotly/graph_objects/_icicle.py +++ b/plotly/graph_objects/_icicle.py @@ -154,9 +154,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.icicle.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -216,9 +216,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.icicle.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -388,9 +388,9 @@ def insidetextfont(self): The 'insidetextfont' property is an instance of Insidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.Insidetextfont` - - A dict of string/value properties that will be passed - to the Insidetextfont constructor + + - An instance of :class:`plotly.graph_objects.icicle.Insidetextfont` + - A dict of string/value properties that will be passed to the Insidetextfont constructor Returns ------- @@ -443,9 +443,9 @@ def leaf(self): """ The 'leaf' property is an instance of Leaf that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.Leaf` - - A dict of string/value properties that will be passed - to the Leaf constructor + + - An instance of :class:`plotly.graph_objects.icicle.Leaf` + - A dict of string/value properties that will be passed to the Leaf constructor Returns ------- @@ -485,9 +485,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.icicle.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -570,9 +570,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.icicle.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -699,9 +699,9 @@ def outsidetextfont(self): The 'outsidetextfont' property is an instance of Outsidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.Outsidetextfont` - - A dict of string/value properties that will be passed - to the Outsidetextfont constructor + + - An instance of :class:`plotly.graph_objects.icicle.Outsidetextfont` + - A dict of string/value properties that will be passed to the Outsidetextfont constructor Returns ------- @@ -759,9 +759,9 @@ def pathbar(self): """ The 'pathbar' property is an instance of Pathbar that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.Pathbar` - - A dict of string/value properties that will be passed - to the Pathbar constructor + + - An instance of :class:`plotly.graph_objects.icicle.Pathbar` + - A dict of string/value properties that will be passed to the Pathbar constructor Returns ------- @@ -778,9 +778,9 @@ def root(self): """ The 'root' property is an instance of Root that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.Root` - - A dict of string/value properties that will be passed - to the Root constructor + + - An instance of :class:`plotly.graph_objects.icicle.Root` + - A dict of string/value properties that will be passed to the Root constructor Returns ------- @@ -816,9 +816,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.icicle.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -859,9 +859,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.icicle.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -996,9 +996,9 @@ def tiling(self): """ The 'tiling' property is an instance of Tiling that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.Tiling` - - A dict of string/value properties that will be passed - to the Tiling constructor + + - An instance of :class:`plotly.graph_objects.icicle.Tiling` + - A dict of string/value properties that will be passed to the Tiling constructor Returns ------- diff --git a/plotly/graph_objects/_image.py b/plotly/graph_objects/_image.py index 9e92241915..ce6be2389f 100644 --- a/plotly/graph_objects/_image.py +++ b/plotly/graph_objects/_image.py @@ -201,9 +201,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.image.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.image.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -384,9 +384,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.image.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.image.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -556,9 +556,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.image.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.image.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- diff --git a/plotly/graph_objects/_indicator.py b/plotly/graph_objects/_indicator.py index bd200de42a..b7a6a5ea2f 100644 --- a/plotly/graph_objects/_indicator.py +++ b/plotly/graph_objects/_indicator.py @@ -103,9 +103,9 @@ def delta(self): """ The 'delta' property is an instance of Delta that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.Delta` - - A dict of string/value properties that will be passed - to the Delta constructor + + - An instance of :class:`plotly.graph_objects.indicator.Delta` + - A dict of string/value properties that will be passed to the Delta constructor Returns ------- @@ -122,9 +122,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.indicator.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -143,9 +143,9 @@ def gauge(self): The 'gauge' property is an instance of Gauge that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.Gauge` - - A dict of string/value properties that will be passed - to the Gauge constructor + + - An instance of :class:`plotly.graph_objects.indicator.Gauge` + - A dict of string/value properties that will be passed to the Gauge constructor Returns ------- @@ -223,9 +223,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.indicator.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -377,9 +377,9 @@ def number(self): """ The 'number' property is an instance of Number that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.Number` - - A dict of string/value properties that will be passed - to the Number constructor + + - An instance of :class:`plotly.graph_objects.indicator.Number` + - A dict of string/value properties that will be passed to the Number constructor Returns ------- @@ -396,9 +396,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.indicator.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -415,9 +415,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.indicator.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/_isosurface.py b/plotly/graph_objects/_isosurface.py index ba880c9bfa..d7c0b21c7d 100644 --- a/plotly/graph_objects/_isosurface.py +++ b/plotly/graph_objects/_isosurface.py @@ -100,9 +100,9 @@ def caps(self): """ The 'caps' property is an instance of Caps that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.Caps` - - A dict of string/value properties that will be passed - to the Caps constructor + + - An instance of :class:`plotly.graph_objects.isosurface.Caps` + - A dict of string/value properties that will be passed to the Caps constructor Returns ------- @@ -226,9 +226,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.isosurface.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -296,9 +296,9 @@ def contour(self): """ The 'contour' property is an instance of Contour that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.Contour` - - A dict of string/value properties that will be passed - to the Contour constructor + + - An instance of :class:`plotly.graph_objects.isosurface.Contour` + - A dict of string/value properties that will be passed to the Contour constructor Returns ------- @@ -418,9 +418,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.isosurface.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -665,9 +665,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.isosurface.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -730,9 +730,9 @@ def lighting(self): """ The 'lighting' property is an instance of Lighting that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.Lighting` - - A dict of string/value properties that will be passed - to the Lighting constructor + + - An instance of :class:`plotly.graph_objects.isosurface.Lighting` + - A dict of string/value properties that will be passed to the Lighting constructor Returns ------- @@ -749,9 +749,9 @@ def lightposition(self): """ The 'lightposition' property is an instance of Lightposition that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.Lightposition` - - A dict of string/value properties that will be passed - to the Lightposition constructor + + - An instance of :class:`plotly.graph_objects.isosurface.Lightposition` + - A dict of string/value properties that will be passed to the Lightposition constructor Returns ------- @@ -939,9 +939,9 @@ def slices(self): """ The 'slices' property is an instance of Slices that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.Slices` - - A dict of string/value properties that will be passed - to the Slices constructor + + - An instance of :class:`plotly.graph_objects.isosurface.Slices` + - A dict of string/value properties that will be passed to the Slices constructor Returns ------- @@ -958,9 +958,9 @@ def spaceframe(self): """ The 'spaceframe' property is an instance of Spaceframe that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.Spaceframe` - - A dict of string/value properties that will be passed - to the Spaceframe constructor + + - An instance of :class:`plotly.graph_objects.isosurface.Spaceframe` + - A dict of string/value properties that will be passed to the Spaceframe constructor Returns ------- @@ -977,9 +977,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.isosurface.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -996,9 +996,9 @@ def surface(self): """ The 'surface' property is an instance of Surface that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.Surface` - - A dict of string/value properties that will be passed - to the Surface constructor + + - An instance of :class:`plotly.graph_objects.isosurface.Surface` + - A dict of string/value properties that will be passed to the Surface constructor Returns ------- diff --git a/plotly/graph_objects/_layout.py b/plotly/graph_objects/_layout.py index 249697e0df..3286542985 100644 --- a/plotly/graph_objects/_layout.py +++ b/plotly/graph_objects/_layout.py @@ -157,9 +157,9 @@ def activeselection(self): """ The 'activeselection' property is an instance of Activeselection that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Activeselection` - - A dict of string/value properties that will be passed - to the Activeselection constructor + + - An instance of :class:`plotly.graph_objects.layout.Activeselection` + - A dict of string/value properties that will be passed to the Activeselection constructor Returns ------- @@ -176,9 +176,9 @@ def activeshape(self): """ The 'activeshape' property is an instance of Activeshape that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Activeshape` - - A dict of string/value properties that will be passed - to the Activeshape constructor + + - An instance of :class:`plotly.graph_objects.layout.Activeshape` + - A dict of string/value properties that will be passed to the Activeshape constructor Returns ------- @@ -218,9 +218,9 @@ def annotationdefaults(self): The 'annotationdefaults' property is an instance of Annotation that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Annotation` - - A dict of string/value properties that will be passed - to the Annotation constructor + + - An instance of :class:`plotly.graph_objects.layout.Annotation` + - A dict of string/value properties that will be passed to the Annotation constructor Returns ------- @@ -520,9 +520,9 @@ def coloraxis(self): """ The 'coloraxis' property is an instance of Coloraxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Coloraxis` - - A dict of string/value properties that will be passed - to the Coloraxis constructor + + - An instance of :class:`plotly.graph_objects.layout.Coloraxis` + - A dict of string/value properties that will be passed to the Coloraxis constructor Returns ------- @@ -539,9 +539,9 @@ def colorscale(self): """ The 'colorscale' property is an instance of Colorscale that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Colorscale` - - A dict of string/value properties that will be passed - to the Colorscale constructor + + - An instance of :class:`plotly.graph_objects.layout.Colorscale` + - A dict of string/value properties that will be passed to the Colorscale constructor Returns ------- @@ -790,9 +790,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- @@ -897,9 +897,9 @@ def geo(self): """ The 'geo' property is an instance of Geo that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Geo` - - A dict of string/value properties that will be passed - to the Geo constructor + + - An instance of :class:`plotly.graph_objects.layout.Geo` + - A dict of string/value properties that will be passed to the Geo constructor Returns ------- @@ -916,9 +916,9 @@ def grid(self): """ The 'grid' property is an instance of Grid that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Grid` - - A dict of string/value properties that will be passed - to the Grid constructor + + - An instance of :class:`plotly.graph_objects.layout.Grid` + - A dict of string/value properties that will be passed to the Grid constructor Returns ------- @@ -1040,9 +1040,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.layout.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -1162,9 +1162,9 @@ def imagedefaults(self): The 'imagedefaults' property is an instance of Image that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Image` - - A dict of string/value properties that will be passed - to the Image constructor + + - An instance of :class:`plotly.graph_objects.layout.Image` + - A dict of string/value properties that will be passed to the Image constructor Returns ------- @@ -1181,9 +1181,9 @@ def legend(self): """ The 'legend' property is an instance of Legend that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Legend` - - A dict of string/value properties that will be passed - to the Legend constructor + + - An instance of :class:`plotly.graph_objects.layout.Legend` + - A dict of string/value properties that will be passed to the Legend constructor Returns ------- @@ -1200,9 +1200,9 @@ def map(self): """ The 'map' property is an instance of Map that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Map` - - A dict of string/value properties that will be passed - to the Map constructor + + - An instance of :class:`plotly.graph_objects.layout.Map` + - A dict of string/value properties that will be passed to the Map constructor Returns ------- @@ -1219,9 +1219,9 @@ def mapbox(self): """ The 'mapbox' property is an instance of Mapbox that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Mapbox` - - A dict of string/value properties that will be passed - to the Mapbox constructor + + - An instance of :class:`plotly.graph_objects.layout.Mapbox` + - A dict of string/value properties that will be passed to the Mapbox constructor Returns ------- @@ -1238,9 +1238,9 @@ def margin(self): """ The 'margin' property is an instance of Margin that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Margin` - - A dict of string/value properties that will be passed - to the Margin constructor + + - An instance of :class:`plotly.graph_objects.layout.Margin` + - A dict of string/value properties that will be passed to the Margin constructor Returns ------- @@ -1339,9 +1339,9 @@ def modebar(self): """ The 'modebar' property is an instance of Modebar that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Modebar` - - A dict of string/value properties that will be passed - to the Modebar constructor + + - An instance of :class:`plotly.graph_objects.layout.Modebar` + - A dict of string/value properties that will be passed to the Modebar constructor Returns ------- @@ -1358,9 +1358,9 @@ def newselection(self): """ The 'newselection' property is an instance of Newselection that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Newselection` - - A dict of string/value properties that will be passed - to the Newselection constructor + + - An instance of :class:`plotly.graph_objects.layout.Newselection` + - A dict of string/value properties that will be passed to the Newselection constructor Returns ------- @@ -1377,9 +1377,9 @@ def newshape(self): """ The 'newshape' property is an instance of Newshape that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Newshape` - - A dict of string/value properties that will be passed - to the Newshape constructor + + - An instance of :class:`plotly.graph_objects.layout.Newshape` + - A dict of string/value properties that will be passed to the Newshape constructor Returns ------- @@ -1398,11 +1398,12 @@ def paper_bgcolor(self): drawn. The 'paper_bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -1443,11 +1444,12 @@ def plot_bgcolor(self): y axes. The 'plot_bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -1464,9 +1466,9 @@ def polar(self): """ The 'polar' property is an instance of Polar that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Polar` - - A dict of string/value properties that will be passed - to the Polar constructor + + - An instance of :class:`plotly.graph_objects.layout.Polar` + - A dict of string/value properties that will be passed to the Polar constructor Returns ------- @@ -1529,9 +1531,9 @@ def scene(self): """ The 'scene' property is an instance of Scene that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Scene` - - A dict of string/value properties that will be passed - to the Scene constructor + + - An instance of :class:`plotly.graph_objects.layout.Scene` + - A dict of string/value properties that will be passed to the Scene constructor Returns ------- @@ -1613,9 +1615,9 @@ def selectiondefaults(self): The 'selectiondefaults' property is an instance of Selection that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Selection` - - A dict of string/value properties that will be passed - to the Selection constructor + + - An instance of :class:`plotly.graph_objects.layout.Selection` + - A dict of string/value properties that will be passed to the Selection constructor Returns ------- @@ -1679,9 +1681,9 @@ def shapedefaults(self): The 'shapedefaults' property is an instance of Shape that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Shape` - - A dict of string/value properties that will be passed - to the Shape constructor + + - An instance of :class:`plotly.graph_objects.layout.Shape` + - A dict of string/value properties that will be passed to the Shape constructor Returns ------- @@ -1743,9 +1745,9 @@ def sliderdefaults(self): The 'sliderdefaults' property is an instance of Slider that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Slider` - - A dict of string/value properties that will be passed - to the Slider constructor + + - An instance of :class:`plotly.graph_objects.layout.Slider` + - A dict of string/value properties that will be passed to the Slider constructor Returns ------- @@ -1762,9 +1764,9 @@ def smith(self): """ The 'smith' property is an instance of Smith that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Smith` - - A dict of string/value properties that will be passed - to the Smith constructor + + - An instance of :class:`plotly.graph_objects.layout.Smith` + - A dict of string/value properties that will be passed to the Smith constructor Returns ------- @@ -1846,9 +1848,9 @@ def template(self): The 'template' property is an instance of Template that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Template` - - A dict of string/value properties that will be passed - to the Template constructor + + - An instance of :class:`plotly.graph_objects.layout.Template` + - A dict of string/value properties that will be passed to the Template constructor - The name of a registered template where current registered templates are stored in the plotly.io.templates configuration object. The names of all registered templates can be retrieved with: @@ -1876,9 +1878,9 @@ def ternary(self): """ The 'ternary' property is an instance of Ternary that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Ternary` - - A dict of string/value properties that will be passed - to the Ternary constructor + + - An instance of :class:`plotly.graph_objects.layout.Ternary` + - A dict of string/value properties that will be passed to the Ternary constructor Returns ------- @@ -1895,9 +1897,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.layout.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- @@ -1916,9 +1918,9 @@ def transition(self): The 'transition' property is an instance of Transition that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Transition` - - A dict of string/value properties that will be passed - to the Transition constructor + + - An instance of :class:`plotly.graph_objects.layout.Transition` + - A dict of string/value properties that will be passed to the Transition constructor Returns ------- @@ -1989,9 +1991,9 @@ def uniformtext(self): """ The 'uniformtext' property is an instance of Uniformtext that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Uniformtext` - - A dict of string/value properties that will be passed - to the Uniformtext constructor + + - An instance of :class:`plotly.graph_objects.layout.Uniformtext` + - A dict of string/value properties that will be passed to the Uniformtext constructor Returns ------- @@ -2031,9 +2033,9 @@ def updatemenudefaults(self): The 'updatemenudefaults' property is an instance of Updatemenu that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.Updatemenu` - - A dict of string/value properties that will be passed - to the Updatemenu constructor + + - An instance of :class:`plotly.graph_objects.layout.Updatemenu` + - A dict of string/value properties that will be passed to the Updatemenu constructor Returns ------- @@ -2202,9 +2204,9 @@ def xaxis(self): """ The 'xaxis' property is an instance of XAxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.XAxis` - - A dict of string/value properties that will be passed - to the XAxis constructor + + - An instance of :class:`plotly.graph_objects.layout.XAxis` + - A dict of string/value properties that will be passed to the XAxis constructor Returns ------- @@ -2221,9 +2223,9 @@ def yaxis(self): """ The 'yaxis' property is an instance of YAxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.YAxis` - - A dict of string/value properties that will be passed - to the YAxis constructor + + - An instance of :class:`plotly.graph_objects.layout.YAxis` + - A dict of string/value properties that will be passed to the YAxis constructor Returns ------- diff --git a/plotly/graph_objects/_mesh3d.py b/plotly/graph_objects/_mesh3d.py index 6ef029aedf..6191457b01 100644 --- a/plotly/graph_objects/_mesh3d.py +++ b/plotly/graph_objects/_mesh3d.py @@ -230,13 +230,13 @@ def color(self): Sets the color of the whole mesh The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to mesh3d.colorscale + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to mesh3d.colorscale Returns ------- @@ -278,9 +278,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.mesh3d.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.mesh3d.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -348,9 +348,9 @@ def contour(self): """ The 'contour' property is an instance of Contour that may be specified as: - - An instance of :class:`plotly.graph_objects.mesh3d.Contour` - - A dict of string/value properties that will be passed - to the Contour constructor + + - An instance of :class:`plotly.graph_objects.mesh3d.Contour` + - A dict of string/value properties that will be passed to the Contour constructor Returns ------- @@ -532,9 +532,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.mesh3d.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.mesh3d.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -926,9 +926,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.mesh3d.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.mesh3d.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -991,9 +991,9 @@ def lighting(self): """ The 'lighting' property is an instance of Lighting that may be specified as: - - An instance of :class:`plotly.graph_objects.mesh3d.Lighting` - - A dict of string/value properties that will be passed - to the Lighting constructor + + - An instance of :class:`plotly.graph_objects.mesh3d.Lighting` + - A dict of string/value properties that will be passed to the Lighting constructor Returns ------- @@ -1010,9 +1010,9 @@ def lightposition(self): """ The 'lightposition' property is an instance of Lightposition that may be specified as: - - An instance of :class:`plotly.graph_objects.mesh3d.Lightposition` - - A dict of string/value properties that will be passed - to the Lightposition constructor + + - An instance of :class:`plotly.graph_objects.mesh3d.Lightposition` + - A dict of string/value properties that will be passed to the Lightposition constructor Returns ------- @@ -1200,9 +1200,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.mesh3d.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.mesh3d.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- diff --git a/plotly/graph_objects/_ohlc.py b/plotly/graph_objects/_ohlc.py index 2815f520bb..bbc0f7a7e8 100644 --- a/plotly/graph_objects/_ohlc.py +++ b/plotly/graph_objects/_ohlc.py @@ -142,9 +142,9 @@ def decreasing(self): """ The 'decreasing' property is an instance of Decreasing that may be specified as: - - An instance of :class:`plotly.graph_objects.ohlc.Decreasing` - - A dict of string/value properties that will be passed - to the Decreasing constructor + + - An instance of :class:`plotly.graph_objects.ohlc.Decreasing` + - A dict of string/value properties that will be passed to the Decreasing constructor Returns ------- @@ -240,9 +240,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.ohlc.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.ohlc.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -339,9 +339,9 @@ def increasing(self): """ The 'increasing' property is an instance of Increasing that may be specified as: - - An instance of :class:`plotly.graph_objects.ohlc.Increasing` - - A dict of string/value properties that will be passed - to the Increasing constructor + + - An instance of :class:`plotly.graph_objects.ohlc.Increasing` + - A dict of string/value properties that will be passed to the Increasing constructor Returns ------- @@ -404,9 +404,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.ohlc.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.ohlc.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -469,9 +469,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.ohlc.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.ohlc.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -686,9 +686,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.ohlc.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.ohlc.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- diff --git a/plotly/graph_objects/_parcats.py b/plotly/graph_objects/_parcats.py index 42f0d38f5f..76838b5f98 100644 --- a/plotly/graph_objects/_parcats.py +++ b/plotly/graph_objects/_parcats.py @@ -150,9 +150,9 @@ def dimensiondefaults(self): The 'dimensiondefaults' property is an instance of Dimension that may be specified as: - - An instance of :class:`plotly.graph_objects.parcats.Dimension` - - A dict of string/value properties that will be passed - to the Dimension constructor + + - An instance of :class:`plotly.graph_objects.parcats.Dimension` + - A dict of string/value properties that will be passed to the Dimension constructor Returns ------- @@ -169,9 +169,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.parcats.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.parcats.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -287,9 +287,9 @@ def labelfont(self): The 'labelfont' property is an instance of Labelfont that may be specified as: - - An instance of :class:`plotly.graph_objects.parcats.Labelfont` - - A dict of string/value properties that will be passed - to the Labelfont constructor + + - An instance of :class:`plotly.graph_objects.parcats.Labelfont` + - A dict of string/value properties that will be passed to the Labelfont constructor Returns ------- @@ -306,9 +306,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.parcats.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.parcats.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -345,9 +345,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.parcats.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.parcats.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -453,9 +453,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.parcats.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.parcats.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -474,9 +474,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.parcats.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.parcats.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- diff --git a/plotly/graph_objects/_parcoords.py b/plotly/graph_objects/_parcoords.py index dfaf0eddf5..fbea9c03d0 100644 --- a/plotly/graph_objects/_parcoords.py +++ b/plotly/graph_objects/_parcoords.py @@ -109,9 +109,9 @@ def dimensiondefaults(self): The 'dimensiondefaults' property is an instance of Dimension that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.Dimension` - - A dict of string/value properties that will be passed - to the Dimension constructor + + - An instance of :class:`plotly.graph_objects.parcoords.Dimension` + - A dict of string/value properties that will be passed to the Dimension constructor Returns ------- @@ -128,9 +128,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.parcoords.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -210,9 +210,9 @@ def labelfont(self): The 'labelfont' property is an instance of Labelfont that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.Labelfont` - - A dict of string/value properties that will be passed - to the Labelfont constructor + + - An instance of :class:`plotly.graph_objects.parcoords.Labelfont` + - A dict of string/value properties that will be passed to the Labelfont constructor Returns ------- @@ -276,9 +276,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.parcoords.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -341,9 +341,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.parcoords.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -428,9 +428,9 @@ def rangefont(self): The 'rangefont' property is an instance of Rangefont that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.Rangefont` - - A dict of string/value properties that will be passed - to the Rangefont constructor + + - An instance of :class:`plotly.graph_objects.parcoords.Rangefont` + - A dict of string/value properties that will be passed to the Rangefont constructor Returns ------- @@ -447,9 +447,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.parcoords.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -468,9 +468,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.parcoords.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -540,9 +540,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.parcoords.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_pie.py b/plotly/graph_objects/_pie.py index b57b28a9f1..6ed25c2b35 100644 --- a/plotly/graph_objects/_pie.py +++ b/plotly/graph_objects/_pie.py @@ -169,9 +169,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.pie.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.pie.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -251,9 +251,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.pie.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.pie.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -422,9 +422,9 @@ def insidetextfont(self): The 'insidetextfont' property is an instance of Insidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.pie.Insidetextfont` - - A dict of string/value properties that will be passed - to the Insidetextfont constructor + + - An instance of :class:`plotly.graph_objects.pie.Insidetextfont` + - A dict of string/value properties that will be passed to the Insidetextfont constructor Returns ------- @@ -576,9 +576,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.pie.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.pie.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -641,9 +641,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.pie.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.pie.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -747,9 +747,9 @@ def outsidetextfont(self): The 'outsidetextfont' property is an instance of Outsidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.pie.Outsidetextfont` - - A dict of string/value properties that will be passed - to the Outsidetextfont constructor + + - An instance of :class:`plotly.graph_objects.pie.Outsidetextfont` + - A dict of string/value properties that will be passed to the Outsidetextfont constructor Returns ------- @@ -890,9 +890,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.pie.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.pie.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -933,9 +933,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.pie.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.pie.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1088,9 +1088,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.pie.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.pie.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/_sankey.py b/plotly/graph_objects/_sankey.py index 8ce8d29a91..a9932c304d 100644 --- a/plotly/graph_objects/_sankey.py +++ b/plotly/graph_objects/_sankey.py @@ -110,9 +110,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.sankey.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -154,9 +154,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.sankey.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -234,9 +234,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.sankey.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -301,9 +301,9 @@ def link(self): The 'link' property is an instance of Link that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.Link` - - A dict of string/value properties that will be passed - to the Link constructor + + - An instance of :class:`plotly.graph_objects.sankey.Link` + - A dict of string/value properties that will be passed to the Link constructor Returns ------- @@ -388,9 +388,9 @@ def node(self): The 'node' property is an instance of Node that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.Node` - - A dict of string/value properties that will be passed - to the Node constructor + + - An instance of :class:`plotly.graph_objects.sankey.Node` + - A dict of string/value properties that will be passed to the Node constructor Returns ------- @@ -450,9 +450,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.sankey.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -471,9 +471,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.sankey.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/_scatter.py b/plotly/graph_objects/_scatter.py index dbc40d51ab..5f7248fcc4 100644 --- a/plotly/graph_objects/_scatter.py +++ b/plotly/graph_objects/_scatter.py @@ -232,9 +232,9 @@ def error_x(self): """ The 'error_x' property is an instance of ErrorX that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.ErrorX` - - A dict of string/value properties that will be passed - to the ErrorX constructor + + - An instance of :class:`plotly.graph_objects.scatter.ErrorX` + - A dict of string/value properties that will be passed to the ErrorX constructor Returns ------- @@ -251,9 +251,9 @@ def error_y(self): """ The 'error_y' property is an instance of ErrorY that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.ErrorY` - - A dict of string/value properties that will be passed - to the ErrorY constructor + + - An instance of :class:`plotly.graph_objects.scatter.ErrorY` + - A dict of string/value properties that will be passed to the ErrorY constructor Returns ------- @@ -315,11 +315,12 @@ def fillcolor(self): label, if any. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -339,9 +340,9 @@ def fillgradient(self): The 'fillgradient' property is an instance of Fillgradient that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.Fillgradient` - - A dict of string/value properties that will be passed - to the Fillgradient constructor + + - An instance of :class:`plotly.graph_objects.scatter.Fillgradient` + - A dict of string/value properties that will be passed to the Fillgradient constructor Returns ------- @@ -360,9 +361,9 @@ def fillpattern(self): The 'fillpattern' property is an instance of Fillpattern that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.Fillpattern` - - A dict of string/value properties that will be passed - to the Fillpattern constructor + + - An instance of :class:`plotly.graph_objects.scatter.Fillpattern` + - A dict of string/value properties that will be passed to the Fillpattern constructor Returns ------- @@ -451,9 +452,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.scatter.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -687,9 +688,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.scatter.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -752,9 +753,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scatter.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -771,9 +772,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scatter.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -951,9 +952,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.scatter.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -1071,9 +1072,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.scatter.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -1120,9 +1121,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scatter.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1308,9 +1309,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.scatter.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_scatter3d.py b/plotly/graph_objects/_scatter3d.py index aae3921854..b27ff8d05f 100644 --- a/plotly/graph_objects/_scatter3d.py +++ b/plotly/graph_objects/_scatter3d.py @@ -131,9 +131,9 @@ def error_x(self): """ The 'error_x' property is an instance of ErrorX that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.ErrorX` - - A dict of string/value properties that will be passed - to the ErrorX constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.ErrorX` + - A dict of string/value properties that will be passed to the ErrorX constructor Returns ------- @@ -150,9 +150,9 @@ def error_y(self): """ The 'error_y' property is an instance of ErrorY that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.ErrorY` - - A dict of string/value properties that will be passed - to the ErrorY constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.ErrorY` + - A dict of string/value properties that will be passed to the ErrorY constructor Returns ------- @@ -169,9 +169,9 @@ def error_z(self): """ The 'error_z' property is an instance of ErrorZ that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.ErrorZ` - - A dict of string/value properties that will be passed - to the ErrorZ constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.ErrorZ` + - A dict of string/value properties that will be passed to the ErrorZ constructor Returns ------- @@ -231,9 +231,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -444,9 +444,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -509,9 +509,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -528,9 +528,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -658,9 +658,9 @@ def projection(self): """ The 'projection' property is an instance of Projection that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.Projection` - - A dict of string/value properties that will be passed - to the Projection constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.Projection` + - A dict of string/value properties that will be passed to the Projection constructor Returns ------- @@ -719,9 +719,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -762,11 +762,12 @@ def surfacecolor(self): Sets the surface fill color. The 'surfacecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -813,9 +814,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/_scattercarpet.py b/plotly/graph_objects/_scattercarpet.py index 0274780e67..08bb193e81 100644 --- a/plotly/graph_objects/_scattercarpet.py +++ b/plotly/graph_objects/_scattercarpet.py @@ -253,11 +253,12 @@ def fillcolor(self): is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -317,9 +318,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -553,9 +554,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -618,9 +619,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -637,9 +638,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -767,9 +768,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -827,9 +828,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -876,9 +877,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1066,9 +1067,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_scattergeo.py b/plotly/graph_objects/_scattergeo.py index 904a34f9f5..a437c9d599 100644 --- a/plotly/graph_objects/_scattergeo.py +++ b/plotly/graph_objects/_scattergeo.py @@ -177,11 +177,12 @@ def fillcolor(self): is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -286,9 +287,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -536,9 +537,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -601,9 +602,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -720,9 +721,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -850,9 +851,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -910,9 +911,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -960,9 +961,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1150,9 +1151,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_scattergl.py b/plotly/graph_objects/_scattergl.py index 700db485fd..6f7d3e8567 100644 --- a/plotly/graph_objects/_scattergl.py +++ b/plotly/graph_objects/_scattergl.py @@ -177,9 +177,9 @@ def error_x(self): """ The 'error_x' property is an instance of ErrorX that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.ErrorX` - - A dict of string/value properties that will be passed - to the ErrorX constructor + + - An instance of :class:`plotly.graph_objects.scattergl.ErrorX` + - A dict of string/value properties that will be passed to the ErrorX constructor Returns ------- @@ -196,9 +196,9 @@ def error_y(self): """ The 'error_y' property is an instance of ErrorY that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.ErrorY` - - A dict of string/value properties that will be passed - to the ErrorY constructor + + - An instance of :class:`plotly.graph_objects.scattergl.ErrorY` + - A dict of string/value properties that will be passed to the ErrorY constructor Returns ------- @@ -258,11 +258,12 @@ def fillcolor(self): is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,9 +323,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.scattergl.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -535,9 +536,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.scattergl.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -600,9 +601,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scattergl.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -619,9 +620,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattergl.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -744,9 +745,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.scattergl.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -804,9 +805,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.scattergl.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -853,9 +854,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scattergl.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1041,9 +1042,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.scattergl.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_scattermap.py b/plotly/graph_objects/_scattermap.py index b06068f3ff..065677f20f 100644 --- a/plotly/graph_objects/_scattermap.py +++ b/plotly/graph_objects/_scattermap.py @@ -88,9 +88,9 @@ def cluster(self): """ The 'cluster' property is an instance of Cluster that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.Cluster` - - A dict of string/value properties that will be passed - to the Cluster constructor + + - An instance of :class:`plotly.graph_objects.scattermap.Cluster` + - A dict of string/value properties that will be passed to the Cluster constructor Returns ------- @@ -192,11 +192,12 @@ def fillcolor(self): is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -256,9 +257,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.scattermap.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -505,9 +506,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.scattermap.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -570,9 +571,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scattermap.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -625,9 +626,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattermap.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -753,9 +754,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.scattermap.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -813,9 +814,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.scattermap.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -887,9 +888,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scattermap.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1056,9 +1057,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.scattermap.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_scattermapbox.py b/plotly/graph_objects/_scattermapbox.py index 59e4c9eb00..a3f7a7218d 100644 --- a/plotly/graph_objects/_scattermapbox.py +++ b/plotly/graph_objects/_scattermapbox.py @@ -90,9 +90,9 @@ def cluster(self): """ The 'cluster' property is an instance of Cluster that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.Cluster` - - A dict of string/value properties that will be passed - to the Cluster constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.Cluster` + - A dict of string/value properties that will be passed to the Cluster constructor Returns ------- @@ -194,11 +194,12 @@ def fillcolor(self): is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -258,9 +259,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -507,9 +508,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -572,9 +573,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -627,9 +628,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -755,9 +756,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -815,9 +816,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -893,9 +894,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1062,9 +1063,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_scatterpolar.py b/plotly/graph_objects/_scatterpolar.py index ce04197188..cf8e237e42 100644 --- a/plotly/graph_objects/_scatterpolar.py +++ b/plotly/graph_objects/_scatterpolar.py @@ -222,11 +222,12 @@ def fillcolor(self): is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -286,9 +287,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -522,9 +523,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -587,9 +588,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -606,9 +607,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -791,9 +792,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -851,9 +852,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -923,9 +924,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1190,9 +1191,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_scatterpolargl.py b/plotly/graph_objects/_scatterpolargl.py index 7e33304382..f9fb37e557 100644 --- a/plotly/graph_objects/_scatterpolargl.py +++ b/plotly/graph_objects/_scatterpolargl.py @@ -210,11 +210,12 @@ def fillcolor(self): is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -274,9 +275,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -487,9 +488,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -552,9 +553,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -571,9 +572,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -756,9 +757,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -816,9 +817,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -888,9 +889,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1155,9 +1156,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_scattersmith.py b/plotly/graph_objects/_scattersmith.py index 7ab7e3fc2a..c93f1a1a0f 100644 --- a/plotly/graph_objects/_scattersmith.py +++ b/plotly/graph_objects/_scattersmith.py @@ -177,11 +177,12 @@ def fillcolor(self): is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -241,9 +242,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -515,9 +516,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -580,9 +581,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -599,9 +600,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -766,9 +767,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -826,9 +827,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -898,9 +899,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1088,9 +1089,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_scatterternary.py b/plotly/graph_objects/_scatterternary.py index a24b28700d..8b063377c8 100644 --- a/plotly/graph_objects/_scatterternary.py +++ b/plotly/graph_objects/_scatterternary.py @@ -297,11 +297,12 @@ def fillcolor(self): is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -361,9 +362,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -597,9 +598,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -662,9 +663,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -681,9 +682,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -811,9 +812,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -871,9 +872,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -966,9 +967,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1156,9 +1157,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_splom.py b/plotly/graph_objects/_splom.py index 99c3c64798..ac95c2e2a4 100644 --- a/plotly/graph_objects/_splom.py +++ b/plotly/graph_objects/_splom.py @@ -97,9 +97,9 @@ def diagonal(self): """ The 'diagonal' property is an instance of Diagonal that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.Diagonal` - - A dict of string/value properties that will be passed - to the Diagonal constructor + + - An instance of :class:`plotly.graph_objects.splom.Diagonal` + - A dict of string/value properties that will be passed to the Diagonal constructor Returns ------- @@ -139,9 +139,9 @@ def dimensiondefaults(self): The 'dimensiondefaults' property is an instance of Dimension that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.Dimension` - - A dict of string/value properties that will be passed - to the Dimension constructor + + - An instance of :class:`plotly.graph_objects.splom.Dimension` + - A dict of string/value properties that will be passed to the Dimension constructor Returns ------- @@ -201,9 +201,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.splom.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -410,9 +410,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.splom.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -475,9 +475,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.splom.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -579,9 +579,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.splom.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -677,9 +677,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.splom.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -793,9 +793,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.splom.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_streamtube.py b/plotly/graph_objects/_streamtube.py index 2f29df8158..42c4cd8786 100644 --- a/plotly/graph_objects/_streamtube.py +++ b/plotly/graph_objects/_streamtube.py @@ -209,9 +209,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.streamtube.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.streamtube.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -362,9 +362,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.streamtube.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.streamtube.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -553,9 +553,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.streamtube.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.streamtube.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -618,9 +618,9 @@ def lighting(self): """ The 'lighting' property is an instance of Lighting that may be specified as: - - An instance of :class:`plotly.graph_objects.streamtube.Lighting` - - A dict of string/value properties that will be passed - to the Lighting constructor + + - An instance of :class:`plotly.graph_objects.streamtube.Lighting` + - A dict of string/value properties that will be passed to the Lighting constructor Returns ------- @@ -637,9 +637,9 @@ def lightposition(self): """ The 'lightposition' property is an instance of Lightposition that may be specified as: - - An instance of :class:`plotly.graph_objects.streamtube.Lightposition` - - A dict of string/value properties that will be passed - to the Lightposition constructor + + - An instance of :class:`plotly.graph_objects.streamtube.Lightposition` + - A dict of string/value properties that will be passed to the Lightposition constructor Returns ------- @@ -867,9 +867,9 @@ def starts(self): """ The 'starts' property is an instance of Starts that may be specified as: - - An instance of :class:`plotly.graph_objects.streamtube.Starts` - - A dict of string/value properties that will be passed - to the Starts constructor + + - An instance of :class:`plotly.graph_objects.streamtube.Starts` + - A dict of string/value properties that will be passed to the Starts constructor Returns ------- @@ -886,9 +886,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.streamtube.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.streamtube.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- diff --git a/plotly/graph_objects/_sunburst.py b/plotly/graph_objects/_sunburst.py index 36001602a0..21ce3a31ee 100644 --- a/plotly/graph_objects/_sunburst.py +++ b/plotly/graph_objects/_sunburst.py @@ -153,9 +153,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.sunburst.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -215,9 +215,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.sunburst.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -387,9 +387,9 @@ def insidetextfont(self): The 'insidetextfont' property is an instance of Insidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.Insidetextfont` - - A dict of string/value properties that will be passed - to the Insidetextfont constructor + + - An instance of :class:`plotly.graph_objects.sunburst.Insidetextfont` + - A dict of string/value properties that will be passed to the Insidetextfont constructor Returns ------- @@ -470,9 +470,9 @@ def leaf(self): """ The 'leaf' property is an instance of Leaf that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.Leaf` - - A dict of string/value properties that will be passed - to the Leaf constructor + + - An instance of :class:`plotly.graph_objects.sunburst.Leaf` + - A dict of string/value properties that will be passed to the Leaf constructor Returns ------- @@ -512,9 +512,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.sunburst.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -597,9 +597,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.sunburst.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -726,9 +726,9 @@ def outsidetextfont(self): The 'outsidetextfont' property is an instance of Outsidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.Outsidetextfont` - - A dict of string/value properties that will be passed - to the Outsidetextfont constructor + + - An instance of :class:`plotly.graph_objects.sunburst.Outsidetextfont` + - A dict of string/value properties that will be passed to the Outsidetextfont constructor Returns ------- @@ -786,9 +786,9 @@ def root(self): """ The 'root' property is an instance of Root that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.Root` - - A dict of string/value properties that will be passed - to the Root constructor + + - An instance of :class:`plotly.graph_objects.sunburst.Root` + - A dict of string/value properties that will be passed to the Root constructor Returns ------- @@ -845,9 +845,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.sunburst.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -888,9 +888,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.sunburst.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/_surface.py b/plotly/graph_objects/_surface.py index 84fcbb381c..e75dc6e080 100644 --- a/plotly/graph_objects/_surface.py +++ b/plotly/graph_objects/_surface.py @@ -208,9 +208,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.surface.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -297,9 +297,9 @@ def contours(self): """ The 'contours' property is an instance of Contours that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.Contours` - - A dict of string/value properties that will be passed - to the Contours constructor + + - An instance of :class:`plotly.graph_objects.surface.Contours` + - A dict of string/value properties that will be passed to the Contours constructor Returns ------- @@ -419,9 +419,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.surface.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -628,9 +628,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.surface.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -693,9 +693,9 @@ def lighting(self): """ The 'lighting' property is an instance of Lighting that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.Lighting` - - A dict of string/value properties that will be passed - to the Lighting constructor + + - An instance of :class:`plotly.graph_objects.surface.Lighting` + - A dict of string/value properties that will be passed to the Lighting constructor Returns ------- @@ -712,9 +712,9 @@ def lightposition(self): """ The 'lightposition' property is an instance of Lightposition that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.Lightposition` - - A dict of string/value properties that will be passed - to the Lightposition constructor + + - An instance of :class:`plotly.graph_objects.surface.Lightposition` + - A dict of string/value properties that will be passed to the Lightposition constructor Returns ------- @@ -927,9 +927,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.surface.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- diff --git a/plotly/graph_objects/_table.py b/plotly/graph_objects/_table.py index d2b02dcdd2..d85c237ebb 100644 --- a/plotly/graph_objects/_table.py +++ b/plotly/graph_objects/_table.py @@ -42,9 +42,9 @@ def cells(self): """ The 'cells' property is an instance of Cells that may be specified as: - - An instance of :class:`plotly.graph_objects.table.Cells` - - A dict of string/value properties that will be passed - to the Cells constructor + + - An instance of :class:`plotly.graph_objects.table.Cells` + - A dict of string/value properties that will be passed to the Cells constructor Returns ------- @@ -182,9 +182,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.table.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.table.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -201,9 +201,9 @@ def header(self): """ The 'header' property is an instance of Header that may be specified as: - - An instance of :class:`plotly.graph_objects.table.Header` - - A dict of string/value properties that will be passed - to the Header constructor + + - An instance of :class:`plotly.graph_objects.table.Header` + - A dict of string/value properties that will be passed to the Header constructor Returns ------- @@ -263,9 +263,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.table.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.table.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -343,9 +343,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.table.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.table.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -474,9 +474,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.table.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.table.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- diff --git a/plotly/graph_objects/_treemap.py b/plotly/graph_objects/_treemap.py index aa1edb2fe1..e9a4d01880 100644 --- a/plotly/graph_objects/_treemap.py +++ b/plotly/graph_objects/_treemap.py @@ -153,9 +153,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.treemap.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -215,9 +215,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.treemap.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -387,9 +387,9 @@ def insidetextfont(self): The 'insidetextfont' property is an instance of Insidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.Insidetextfont` - - A dict of string/value properties that will be passed - to the Insidetextfont constructor + + - An instance of :class:`plotly.graph_objects.treemap.Insidetextfont` + - A dict of string/value properties that will be passed to the Insidetextfont constructor Returns ------- @@ -465,9 +465,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.treemap.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -550,9 +550,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.treemap.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -679,9 +679,9 @@ def outsidetextfont(self): The 'outsidetextfont' property is an instance of Outsidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.Outsidetextfont` - - A dict of string/value properties that will be passed - to the Outsidetextfont constructor + + - An instance of :class:`plotly.graph_objects.treemap.Outsidetextfont` + - A dict of string/value properties that will be passed to the Outsidetextfont constructor Returns ------- @@ -739,9 +739,9 @@ def pathbar(self): """ The 'pathbar' property is an instance of Pathbar that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.Pathbar` - - A dict of string/value properties that will be passed - to the Pathbar constructor + + - An instance of :class:`plotly.graph_objects.treemap.Pathbar` + - A dict of string/value properties that will be passed to the Pathbar constructor Returns ------- @@ -758,9 +758,9 @@ def root(self): """ The 'root' property is an instance of Root that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.Root` - - A dict of string/value properties that will be passed - to the Root constructor + + - An instance of :class:`plotly.graph_objects.treemap.Root` + - A dict of string/value properties that will be passed to the Root constructor Returns ------- @@ -796,9 +796,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.treemap.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -839,9 +839,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.treemap.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -976,9 +976,9 @@ def tiling(self): """ The 'tiling' property is an instance of Tiling that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.Tiling` - - A dict of string/value properties that will be passed - to the Tiling constructor + + - An instance of :class:`plotly.graph_objects.treemap.Tiling` + - A dict of string/value properties that will be passed to the Tiling constructor Returns ------- diff --git a/plotly/graph_objects/_violin.py b/plotly/graph_objects/_violin.py index 0e7a1f4f81..bc410314bc 100644 --- a/plotly/graph_objects/_violin.py +++ b/plotly/graph_objects/_violin.py @@ -122,9 +122,9 @@ def box(self): """ The 'box' property is an instance of Box that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.Box` - - A dict of string/value properties that will be passed - to the Box constructor + + - An instance of :class:`plotly.graph_objects.violin.Box` + - A dict of string/value properties that will be passed to the Box constructor Returns ------- @@ -184,11 +184,12 @@ def fillcolor(self): is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -248,9 +249,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.violin.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -502,9 +503,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.violin.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -567,9 +568,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.violin.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -586,9 +587,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.violin.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -605,9 +606,9 @@ def meanline(self): """ The 'meanline' property is an instance of Meanline that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.Meanline` - - A dict of string/value properties that will be passed - to the Meanline constructor + + - An instance of :class:`plotly.graph_objects.violin.Meanline` + - A dict of string/value properties that will be passed to the Meanline constructor Returns ------- @@ -892,9 +893,9 @@ def selected(self): """ The 'selected' property is an instance of Selected that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.Selected` - - A dict of string/value properties that will be passed - to the Selected constructor + + - An instance of :class:`plotly.graph_objects.violin.Selected` + - A dict of string/value properties that will be passed to the Selected constructor Returns ------- @@ -1028,9 +1029,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.violin.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -1145,9 +1146,9 @@ def unselected(self): """ The 'unselected' property is an instance of Unselected that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.Unselected` - - A dict of string/value properties that will be passed - to the Unselected constructor + + - An instance of :class:`plotly.graph_objects.violin.Unselected` + - A dict of string/value properties that will be passed to the Unselected constructor Returns ------- diff --git a/plotly/graph_objects/_volume.py b/plotly/graph_objects/_volume.py index d2683de787..6535d0e2d7 100644 --- a/plotly/graph_objects/_volume.py +++ b/plotly/graph_objects/_volume.py @@ -101,9 +101,9 @@ def caps(self): """ The 'caps' property is an instance of Caps that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.Caps` - - A dict of string/value properties that will be passed - to the Caps constructor + + - An instance of :class:`plotly.graph_objects.volume.Caps` + - A dict of string/value properties that will be passed to the Caps constructor Returns ------- @@ -227,9 +227,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.volume.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -297,9 +297,9 @@ def contour(self): """ The 'contour' property is an instance of Contour that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.Contour` - - A dict of string/value properties that will be passed - to the Contour constructor + + - An instance of :class:`plotly.graph_objects.volume.Contour` + - A dict of string/value properties that will be passed to the Contour constructor Returns ------- @@ -419,9 +419,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.volume.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -666,9 +666,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.volume.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -731,9 +731,9 @@ def lighting(self): """ The 'lighting' property is an instance of Lighting that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.Lighting` - - A dict of string/value properties that will be passed - to the Lighting constructor + + - An instance of :class:`plotly.graph_objects.volume.Lighting` + - A dict of string/value properties that will be passed to the Lighting constructor Returns ------- @@ -750,9 +750,9 @@ def lightposition(self): """ The 'lightposition' property is an instance of Lightposition that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.Lightposition` - - A dict of string/value properties that will be passed - to the Lightposition constructor + + - An instance of :class:`plotly.graph_objects.volume.Lightposition` + - A dict of string/value properties that will be passed to the Lightposition constructor Returns ------- @@ -965,9 +965,9 @@ def slices(self): """ The 'slices' property is an instance of Slices that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.Slices` - - A dict of string/value properties that will be passed - to the Slices constructor + + - An instance of :class:`plotly.graph_objects.volume.Slices` + - A dict of string/value properties that will be passed to the Slices constructor Returns ------- @@ -984,9 +984,9 @@ def spaceframe(self): """ The 'spaceframe' property is an instance of Spaceframe that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.Spaceframe` - - A dict of string/value properties that will be passed - to the Spaceframe constructor + + - An instance of :class:`plotly.graph_objects.volume.Spaceframe` + - A dict of string/value properties that will be passed to the Spaceframe constructor Returns ------- @@ -1003,9 +1003,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.volume.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -1022,9 +1022,9 @@ def surface(self): """ The 'surface' property is an instance of Surface that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.Surface` - - A dict of string/value properties that will be passed - to the Surface constructor + + - An instance of :class:`plotly.graph_objects.volume.Surface` + - A dict of string/value properties that will be passed to the Surface constructor Returns ------- diff --git a/plotly/graph_objects/_waterfall.py b/plotly/graph_objects/_waterfall.py index 68ce34d594..5945720f6d 100644 --- a/plotly/graph_objects/_waterfall.py +++ b/plotly/graph_objects/_waterfall.py @@ -153,9 +153,9 @@ def connector(self): """ The 'connector' property is an instance of Connector that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.Connector` - - A dict of string/value properties that will be passed - to the Connector constructor + + - An instance of :class:`plotly.graph_objects.waterfall.Connector` + - A dict of string/value properties that will be passed to the Connector constructor Returns ------- @@ -234,9 +234,9 @@ def decreasing(self): """ The 'decreasing' property is an instance of Decreasing that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.Decreasing` - - A dict of string/value properties that will be passed - to the Decreasing constructor + + - An instance of :class:`plotly.graph_objects.waterfall.Decreasing` + - A dict of string/value properties that will be passed to the Decreasing constructor Returns ------- @@ -334,9 +334,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.waterfall.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -503,9 +503,9 @@ def increasing(self): """ The 'increasing' property is an instance of Increasing that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.Increasing` - - A dict of string/value properties that will be passed - to the Increasing constructor + + - An instance of :class:`plotly.graph_objects.waterfall.Increasing` + - A dict of string/value properties that will be passed to the Increasing constructor Returns ------- @@ -546,9 +546,9 @@ def insidetextfont(self): The 'insidetextfont' property is an instance of Insidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.Insidetextfont` - - A dict of string/value properties that will be passed - to the Insidetextfont constructor + + - An instance of :class:`plotly.graph_objects.waterfall.Insidetextfont` + - A dict of string/value properties that will be passed to the Insidetextfont constructor Returns ------- @@ -611,9 +611,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.waterfall.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -889,9 +889,9 @@ def outsidetextfont(self): The 'outsidetextfont' property is an instance of Outsidetextfont that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.Outsidetextfont` - - A dict of string/value properties that will be passed - to the Outsidetextfont constructor + + - An instance of :class:`plotly.graph_objects.waterfall.Outsidetextfont` + - A dict of string/value properties that will be passed to the Outsidetextfont constructor Returns ------- @@ -949,9 +949,9 @@ def stream(self): """ The 'stream' property is an instance of Stream that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.Stream` - - A dict of string/value properties that will be passed - to the Stream constructor + + - An instance of :class:`plotly.graph_objects.waterfall.Stream` + - A dict of string/value properties that will be passed to the Stream constructor Returns ------- @@ -1021,9 +1021,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.waterfall.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- @@ -1185,9 +1185,9 @@ def totals(self): """ The 'totals' property is an instance of Totals that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.Totals` - - A dict of string/value properties that will be passed - to the Totals constructor + + - An instance of :class:`plotly.graph_objects.waterfall.Totals` + - A dict of string/value properties that will be passed to the Totals constructor Returns ------- diff --git a/plotly/graph_objects/bar/_error_x.py b/plotly/graph_objects/bar/_error_x.py index 283796720b..838a47adfc 100644 --- a/plotly/graph_objects/bar/_error_x.py +++ b/plotly/graph_objects/bar/_error_x.py @@ -108,11 +108,12 @@ def color(self): Sets the stroke color of the error bars. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/bar/_error_y.py b/plotly/graph_objects/bar/_error_y.py index b9bf3a89ee..877cc9298a 100644 --- a/plotly/graph_objects/bar/_error_y.py +++ b/plotly/graph_objects/bar/_error_y.py @@ -107,11 +107,12 @@ def color(self): Sets the stroke color of the error bars. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/bar/_hoverlabel.py b/plotly/graph_objects/bar/_hoverlabel.py index 144fc65e3b..09794f2a15 100644 --- a/plotly/graph_objects/bar/_hoverlabel.py +++ b/plotly/graph_objects/bar/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.bar.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/bar/_insidetextfont.py b/plotly/graph_objects/bar/_insidetextfont.py index ad47fd0d3a..d97fcc156e 100644 --- a/plotly/graph_objects/bar/_insidetextfont.py +++ b/plotly/graph_objects/bar/_insidetextfont.py @@ -33,12 +33,13 @@ class Insidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/bar/_legendgrouptitle.py b/plotly/graph_objects/bar/_legendgrouptitle.py index 4a226ab96f..4be7128c2c 100644 --- a/plotly/graph_objects/bar/_legendgrouptitle.py +++ b/plotly/graph_objects/bar/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.bar.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/bar/_marker.py b/plotly/graph_objects/bar/_marker.py index 13b0609055..be808ee725 100644 --- a/plotly/graph_objects/bar/_marker.py +++ b/plotly/graph_objects/bar/_marker.py @@ -151,14 +151,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to bar.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to bar.marker.colorscale + - A list or array of any of the above Returns ------- @@ -200,9 +200,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.bar.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -310,9 +310,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.bar.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -370,9 +370,9 @@ def pattern(self): The 'pattern' property is an instance of Pattern that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.marker.Pattern` - - A dict of string/value properties that will be passed - to the Pattern constructor + + - An instance of :class:`plotly.graph_objects.bar.marker.Pattern` + - A dict of string/value properties that will be passed to the Pattern constructor Returns ------- diff --git a/plotly/graph_objects/bar/_outsidetextfont.py b/plotly/graph_objects/bar/_outsidetextfont.py index eaaf0d29c8..f0f5f4b665 100644 --- a/plotly/graph_objects/bar/_outsidetextfont.py +++ b/plotly/graph_objects/bar/_outsidetextfont.py @@ -33,12 +33,13 @@ class Outsidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/bar/_selected.py b/plotly/graph_objects/bar/_selected.py index 8caec26365..08767c0556 100644 --- a/plotly/graph_objects/bar/_selected.py +++ b/plotly/graph_objects/bar/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.bar.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.selected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.bar.selected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/bar/_textfont.py b/plotly/graph_objects/bar/_textfont.py index 6ba90cdecd..988f5503da 100644 --- a/plotly/graph_objects/bar/_textfont.py +++ b/plotly/graph_objects/bar/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/bar/_unselected.py b/plotly/graph_objects/bar/_unselected.py index 57bd826071..21a5b5d3e4 100644 --- a/plotly/graph_objects/bar/_unselected.py +++ b/plotly/graph_objects/bar/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.bar.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.unselected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.bar.unselected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/bar/hoverlabel/_font.py b/plotly/graph_objects/bar/hoverlabel/_font.py index 3af5ce8b71..52492ce85e 100644 --- a/plotly/graph_objects/bar/hoverlabel/_font.py +++ b/plotly/graph_objects/bar/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/bar/legendgrouptitle/_font.py b/plotly/graph_objects/bar/legendgrouptitle/_font.py index 930286e2b8..3896a5ecb5 100644 --- a/plotly/graph_objects/bar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/bar/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/bar/marker/_colorbar.py b/plotly/graph_objects/bar/marker/_colorbar.py index 07074b44c4..682c9f97c8 100644 --- a/plotly/graph_objects/bar/marker/_colorbar.py +++ b/plotly/graph_objects/bar/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.bar.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -653,9 +657,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.bar.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -950,9 +954,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.bar.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/bar/marker/_line.py b/plotly/graph_objects/bar/marker/_line.py index f543afe8de..ade6824f9a 100644 --- a/plotly/graph_objects/bar/marker/_line.py +++ b/plotly/graph_objects/bar/marker/_line.py @@ -147,14 +147,14 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to bar.marker.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to bar.marker.line.colorscale + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/bar/marker/_pattern.py b/plotly/graph_objects/bar/marker/_pattern.py index dae692e284..329bf96ff3 100644 --- a/plotly/graph_objects/bar/marker/_pattern.py +++ b/plotly/graph_objects/bar/marker/_pattern.py @@ -34,12 +34,13 @@ def bgcolor(self): background. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -78,12 +79,13 @@ def fgcolor(self): white to increase contrast with the `bgcolor`. The 'fgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/bar/marker/colorbar/_tickfont.py b/plotly/graph_objects/bar/marker/colorbar/_tickfont.py index 8d6134864d..050bf941b5 100644 --- a/plotly/graph_objects/bar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/bar/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/bar/marker/colorbar/_title.py b/plotly/graph_objects/bar/marker/colorbar/_title.py index ebcd3a40c1..cf34fa33d6 100644 --- a/plotly/graph_objects/bar/marker/colorbar/_title.py +++ b/plotly/graph_objects/bar/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.bar.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.bar.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/bar/marker/colorbar/title/_font.py b/plotly/graph_objects/bar/marker/colorbar/title/_font.py index a645dfe33a..9f01230a62 100644 --- a/plotly/graph_objects/bar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/bar/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/bar/selected/_marker.py b/plotly/graph_objects/bar/selected/_marker.py index bd8e29d77e..1857cd6a8b 100644 --- a/plotly/graph_objects/bar/selected/_marker.py +++ b/plotly/graph_objects/bar/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/bar/selected/_textfont.py b/plotly/graph_objects/bar/selected/_textfont.py index 02344b2f4e..477ae8c491 100644 --- a/plotly/graph_objects/bar/selected/_textfont.py +++ b/plotly/graph_objects/bar/selected/_textfont.py @@ -16,11 +16,12 @@ def color(self): Sets the text font color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/bar/unselected/_marker.py b/plotly/graph_objects/bar/unselected/_marker.py index 6639c28249..f6c9c1d4ef 100644 --- a/plotly/graph_objects/bar/unselected/_marker.py +++ b/plotly/graph_objects/bar/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/bar/unselected/_textfont.py b/plotly/graph_objects/bar/unselected/_textfont.py index 27c3ab8d71..3e05b4bc8a 100644 --- a/plotly/graph_objects/bar/unselected/_textfont.py +++ b/plotly/graph_objects/bar/unselected/_textfont.py @@ -17,11 +17,12 @@ def color(self): when a selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/barpolar/_hoverlabel.py b/plotly/graph_objects/barpolar/_hoverlabel.py index e8bf8773ec..8420a9c59d 100644 --- a/plotly/graph_objects/barpolar/_hoverlabel.py +++ b/plotly/graph_objects/barpolar/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.barpolar.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/barpolar/_legendgrouptitle.py b/plotly/graph_objects/barpolar/_legendgrouptitle.py index f1fb363362..c65008afb2 100644 --- a/plotly/graph_objects/barpolar/_legendgrouptitle.py +++ b/plotly/graph_objects/barpolar/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.barpolar.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/barpolar/_marker.py b/plotly/graph_objects/barpolar/_marker.py index 2312c24907..0e9fdcb1e6 100644 --- a/plotly/graph_objects/barpolar/_marker.py +++ b/plotly/graph_objects/barpolar/_marker.py @@ -150,14 +150,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to barpolar.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to barpolar.marker.colorscale + - A list or array of any of the above Returns ------- @@ -199,9 +199,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.barpolar.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -288,9 +288,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.barpolar.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -348,9 +348,9 @@ def pattern(self): The 'pattern' property is an instance of Pattern that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.marker.Pattern` - - A dict of string/value properties that will be passed - to the Pattern constructor + + - An instance of :class:`plotly.graph_objects.barpolar.marker.Pattern` + - A dict of string/value properties that will be passed to the Pattern constructor Returns ------- diff --git a/plotly/graph_objects/barpolar/_selected.py b/plotly/graph_objects/barpolar/_selected.py index 839bbcd6e7..6539412ed4 100644 --- a/plotly/graph_objects/barpolar/_selected.py +++ b/plotly/graph_objects/barpolar/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.barpolar.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.selected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.barpolar.selected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/barpolar/_unselected.py b/plotly/graph_objects/barpolar/_unselected.py index a356054623..3afa7fbad0 100644 --- a/plotly/graph_objects/barpolar/_unselected.py +++ b/plotly/graph_objects/barpolar/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.barpolar.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.unselected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.barpolar.unselected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/barpolar/hoverlabel/_font.py b/plotly/graph_objects/barpolar/hoverlabel/_font.py index 00ac136e9c..a4552d0937 100644 --- a/plotly/graph_objects/barpolar/hoverlabel/_font.py +++ b/plotly/graph_objects/barpolar/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/barpolar/legendgrouptitle/_font.py b/plotly/graph_objects/barpolar/legendgrouptitle/_font.py index 0b6df3f8ca..517717cd8e 100644 --- a/plotly/graph_objects/barpolar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/barpolar/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/_colorbar.py b/plotly/graph_objects/barpolar/marker/_colorbar.py index 6d6a47f4bd..11fec6ba17 100644 --- a/plotly/graph_objects/barpolar/marker/_colorbar.py +++ b/plotly/graph_objects/barpolar/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.barpolar.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.barpolar.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.barpolar.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/_line.py b/plotly/graph_objects/barpolar/marker/_line.py index 3ddc4e2fd3..f66705d611 100644 --- a/plotly/graph_objects/barpolar/marker/_line.py +++ b/plotly/graph_objects/barpolar/marker/_line.py @@ -147,14 +147,14 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to barpolar.marker.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to barpolar.marker.line.colorscale + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/_pattern.py b/plotly/graph_objects/barpolar/marker/_pattern.py index 27ba9045a4..3c632efa5b 100644 --- a/plotly/graph_objects/barpolar/marker/_pattern.py +++ b/plotly/graph_objects/barpolar/marker/_pattern.py @@ -34,12 +34,13 @@ def bgcolor(self): background. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -78,12 +79,13 @@ def fgcolor(self): white to increase contrast with the `bgcolor`. The 'fgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py b/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py index f839e969ed..7b364271dc 100644 --- a/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/colorbar/_title.py b/plotly/graph_objects/barpolar/marker/colorbar/_title.py index fde55874c5..378f69524c 100644 --- a/plotly/graph_objects/barpolar/marker/colorbar/_title.py +++ b/plotly/graph_objects/barpolar/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.barpolar.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.barpolar.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py b/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py index 92ee98745a..0d3c788d33 100644 --- a/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/barpolar/selected/_marker.py b/plotly/graph_objects/barpolar/selected/_marker.py index 86fb844239..403768ae7f 100644 --- a/plotly/graph_objects/barpolar/selected/_marker.py +++ b/plotly/graph_objects/barpolar/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/barpolar/selected/_textfont.py b/plotly/graph_objects/barpolar/selected/_textfont.py index 79192f8b34..480496963e 100644 --- a/plotly/graph_objects/barpolar/selected/_textfont.py +++ b/plotly/graph_objects/barpolar/selected/_textfont.py @@ -16,11 +16,12 @@ def color(self): Sets the text font color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/barpolar/unselected/_marker.py b/plotly/graph_objects/barpolar/unselected/_marker.py index 2e8c4e9215..57cb757492 100644 --- a/plotly/graph_objects/barpolar/unselected/_marker.py +++ b/plotly/graph_objects/barpolar/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/barpolar/unselected/_textfont.py b/plotly/graph_objects/barpolar/unselected/_textfont.py index 9a705cf6aa..18a9f22697 100644 --- a/plotly/graph_objects/barpolar/unselected/_textfont.py +++ b/plotly/graph_objects/barpolar/unselected/_textfont.py @@ -17,11 +17,12 @@ def color(self): when a selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/box/_hoverlabel.py b/plotly/graph_objects/box/_hoverlabel.py index 2c3238c8fc..d434c3bb6e 100644 --- a/plotly/graph_objects/box/_hoverlabel.py +++ b/plotly/graph_objects/box/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.box.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.box.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/box/_legendgrouptitle.py b/plotly/graph_objects/box/_legendgrouptitle.py index 582c863f18..733e75f9c1 100644 --- a/plotly/graph_objects/box/_legendgrouptitle.py +++ b/plotly/graph_objects/box/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.box.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.box.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/box/_line.py b/plotly/graph_objects/box/_line.py index 0ecb6f8264..04b3131448 100644 --- a/plotly/graph_objects/box/_line.py +++ b/plotly/graph_objects/box/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the color of line bounding the box(es). The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/box/_marker.py b/plotly/graph_objects/box/_marker.py index 1739768ac1..0bef0ddad2 100644 --- a/plotly/graph_objects/box/_marker.py +++ b/plotly/graph_objects/box/_marker.py @@ -47,11 +47,12 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -68,9 +69,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.box.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.box.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -107,11 +108,12 @@ def outliercolor(self): Sets the color of the outlier sample points. The 'outliercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/box/_selected.py b/plotly/graph_objects/box/_selected.py index f4715d439e..6b068e1e62 100644 --- a/plotly/graph_objects/box/_selected.py +++ b/plotly/graph_objects/box/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.box.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.box.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/box/_unselected.py b/plotly/graph_objects/box/_unselected.py index 9e6124b017..10d760168e 100644 --- a/plotly/graph_objects/box/_unselected.py +++ b/plotly/graph_objects/box/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.box.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.box.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/box/hoverlabel/_font.py b/plotly/graph_objects/box/hoverlabel/_font.py index e48b665f96..ceb280377f 100644 --- a/plotly/graph_objects/box/hoverlabel/_font.py +++ b/plotly/graph_objects/box/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/box/legendgrouptitle/_font.py b/plotly/graph_objects/box/legendgrouptitle/_font.py index 3f1048f181..40d6b04b55 100644 --- a/plotly/graph_objects/box/legendgrouptitle/_font.py +++ b/plotly/graph_objects/box/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/box/marker/_line.py b/plotly/graph_objects/box/marker/_line.py index c3675a39f8..6df14af9b0 100644 --- a/plotly/graph_objects/box/marker/_line.py +++ b/plotly/graph_objects/box/marker/_line.py @@ -19,11 +19,12 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -42,11 +43,12 @@ def outliercolor(self): Defaults to marker.color The 'outliercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/box/selected/_marker.py b/plotly/graph_objects/box/selected/_marker.py index 08dbb31d5e..305b680245 100644 --- a/plotly/graph_objects/box/selected/_marker.py +++ b/plotly/graph_objects/box/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/box/unselected/_marker.py b/plotly/graph_objects/box/unselected/_marker.py index 8179f2175f..e4f3a5684e 100644 --- a/plotly/graph_objects/box/unselected/_marker.py +++ b/plotly/graph_objects/box/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/candlestick/_decreasing.py b/plotly/graph_objects/candlestick/_decreasing.py index 593cb48dd3..3677fd8530 100644 --- a/plotly/graph_objects/candlestick/_decreasing.py +++ b/plotly/graph_objects/candlestick/_decreasing.py @@ -18,11 +18,12 @@ def fillcolor(self): is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -39,9 +40,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.candlestick.decreasing.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.candlestick.decreasing.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/candlestick/_hoverlabel.py b/plotly/graph_objects/candlestick/_hoverlabel.py index 95dc432346..a8456fcafc 100644 --- a/plotly/graph_objects/candlestick/_hoverlabel.py +++ b/plotly/graph_objects/candlestick/_hoverlabel.py @@ -70,12 +70,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -111,12 +112,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -154,9 +156,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.candlestick.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.candlestick.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/candlestick/_increasing.py b/plotly/graph_objects/candlestick/_increasing.py index 9e715d7902..d38c168240 100644 --- a/plotly/graph_objects/candlestick/_increasing.py +++ b/plotly/graph_objects/candlestick/_increasing.py @@ -18,11 +18,12 @@ def fillcolor(self): is available. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -39,9 +40,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.candlestick.increasing.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.candlestick.increasing.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/candlestick/_legendgrouptitle.py b/plotly/graph_objects/candlestick/_legendgrouptitle.py index 6c58f5e752..2eda59f38f 100644 --- a/plotly/graph_objects/candlestick/_legendgrouptitle.py +++ b/plotly/graph_objects/candlestick/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.candlestick.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.candlestick.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/candlestick/decreasing/_line.py b/plotly/graph_objects/candlestick/decreasing/_line.py index c8cd2eae20..b701eec308 100644 --- a/plotly/graph_objects/candlestick/decreasing/_line.py +++ b/plotly/graph_objects/candlestick/decreasing/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the color of line bounding the box(es). The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/candlestick/hoverlabel/_font.py b/plotly/graph_objects/candlestick/hoverlabel/_font.py index 83f2e43810..80e21243bb 100644 --- a/plotly/graph_objects/candlestick/hoverlabel/_font.py +++ b/plotly/graph_objects/candlestick/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/candlestick/increasing/_line.py b/plotly/graph_objects/candlestick/increasing/_line.py index b4589b7051..eff4071af4 100644 --- a/plotly/graph_objects/candlestick/increasing/_line.py +++ b/plotly/graph_objects/candlestick/increasing/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the color of line bounding the box(es). The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/candlestick/legendgrouptitle/_font.py b/plotly/graph_objects/candlestick/legendgrouptitle/_font.py index 118b5406b4..766651d7d8 100644 --- a/plotly/graph_objects/candlestick/legendgrouptitle/_font.py +++ b/plotly/graph_objects/candlestick/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/carpet/_aaxis.py b/plotly/graph_objects/carpet/_aaxis.py index da2a90ec80..95156c7a8f 100644 --- a/plotly/graph_objects/carpet/_aaxis.py +++ b/plotly/graph_objects/carpet/_aaxis.py @@ -253,11 +253,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -314,11 +315,12 @@ def endlinecolor(self): Sets the line color of the end line. The 'endlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -399,11 +401,12 @@ def gridcolor(self): Sets the axis line color. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -553,11 +556,12 @@ def linecolor(self): Sets the axis line color. The 'linecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -613,11 +617,12 @@ def minorgridcolor(self): Sets the color of the grid lines. The 'minorgridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -960,11 +965,12 @@ def startlinecolor(self): Sets the line color of the start line. The 'startlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -1043,9 +1049,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.carpet.aaxis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.carpet.aaxis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -1116,9 +1122,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.carpet.aaxis.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.carpet.aaxis.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -1271,9 +1277,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.carpet.aaxis.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.carpet.aaxis.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/carpet/_baxis.py b/plotly/graph_objects/carpet/_baxis.py index 423a9a4250..13f35ba4dd 100644 --- a/plotly/graph_objects/carpet/_baxis.py +++ b/plotly/graph_objects/carpet/_baxis.py @@ -253,11 +253,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -314,11 +315,12 @@ def endlinecolor(self): Sets the line color of the end line. The 'endlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -399,11 +401,12 @@ def gridcolor(self): Sets the axis line color. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -553,11 +556,12 @@ def linecolor(self): Sets the axis line color. The 'linecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -613,11 +617,12 @@ def minorgridcolor(self): Sets the color of the grid lines. The 'minorgridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -960,11 +965,12 @@ def startlinecolor(self): Sets the line color of the start line. The 'startlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -1043,9 +1049,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.carpet.baxis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.carpet.baxis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -1116,9 +1122,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.carpet.baxis.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.carpet.baxis.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -1271,9 +1277,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.carpet.baxis.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.carpet.baxis.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/carpet/_font.py b/plotly/graph_objects/carpet/_font.py index 3835bcd6ea..7db94b6270 100644 --- a/plotly/graph_objects/carpet/_font.py +++ b/plotly/graph_objects/carpet/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/carpet/_legendgrouptitle.py b/plotly/graph_objects/carpet/_legendgrouptitle.py index b291b138d5..97a3d440c9 100644 --- a/plotly/graph_objects/carpet/_legendgrouptitle.py +++ b/plotly/graph_objects/carpet/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.carpet.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.carpet.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/carpet/aaxis/_tickfont.py b/plotly/graph_objects/carpet/aaxis/_tickfont.py index 30e28ea214..ddf370a307 100644 --- a/plotly/graph_objects/carpet/aaxis/_tickfont.py +++ b/plotly/graph_objects/carpet/aaxis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/carpet/aaxis/_title.py b/plotly/graph_objects/carpet/aaxis/_title.py index 85e26901df..6d9d717e6b 100644 --- a/plotly/graph_objects/carpet/aaxis/_title.py +++ b/plotly/graph_objects/carpet/aaxis/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.carpet.aaxis.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.carpet.aaxis.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/carpet/aaxis/title/_font.py b/plotly/graph_objects/carpet/aaxis/title/_font.py index 7abed266fe..7e2b34f29f 100644 --- a/plotly/graph_objects/carpet/aaxis/title/_font.py +++ b/plotly/graph_objects/carpet/aaxis/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/carpet/baxis/_tickfont.py b/plotly/graph_objects/carpet/baxis/_tickfont.py index 21f91e36b9..016b025600 100644 --- a/plotly/graph_objects/carpet/baxis/_tickfont.py +++ b/plotly/graph_objects/carpet/baxis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/carpet/baxis/_title.py b/plotly/graph_objects/carpet/baxis/_title.py index 923153f976..2b056c9ab0 100644 --- a/plotly/graph_objects/carpet/baxis/_title.py +++ b/plotly/graph_objects/carpet/baxis/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.carpet.baxis.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.carpet.baxis.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/carpet/baxis/title/_font.py b/plotly/graph_objects/carpet/baxis/title/_font.py index 0ddbdd1d41..02f477d993 100644 --- a/plotly/graph_objects/carpet/baxis/title/_font.py +++ b/plotly/graph_objects/carpet/baxis/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/carpet/legendgrouptitle/_font.py b/plotly/graph_objects/carpet/legendgrouptitle/_font.py index b4027ad606..4cbb3bccc6 100644 --- a/plotly/graph_objects/carpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/carpet/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/choropleth/_colorbar.py b/plotly/graph_objects/choropleth/_colorbar.py index a08ccddc51..2cd7f1338e 100644 --- a/plotly/graph_objects/choropleth/_colorbar.py +++ b/plotly/graph_objects/choropleth/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.choropleth.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -653,9 +657,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.choropleth.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -950,9 +954,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.choropleth.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/choropleth/_hoverlabel.py b/plotly/graph_objects/choropleth/_hoverlabel.py index 4424fd8457..9d3652b8ce 100644 --- a/plotly/graph_objects/choropleth/_hoverlabel.py +++ b/plotly/graph_objects/choropleth/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.choropleth.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/choropleth/_legendgrouptitle.py b/plotly/graph_objects/choropleth/_legendgrouptitle.py index 63993107c2..43a218f2ed 100644 --- a/plotly/graph_objects/choropleth/_legendgrouptitle.py +++ b/plotly/graph_objects/choropleth/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.choropleth.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/choropleth/_marker.py b/plotly/graph_objects/choropleth/_marker.py index ec92d44789..0b550f96b4 100644 --- a/plotly/graph_objects/choropleth/_marker.py +++ b/plotly/graph_objects/choropleth/_marker.py @@ -15,9 +15,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.choropleth.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/choropleth/_selected.py b/plotly/graph_objects/choropleth/_selected.py index 577980dadf..4c8e817270 100644 --- a/plotly/graph_objects/choropleth/_selected.py +++ b/plotly/graph_objects/choropleth/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.choropleth.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/choropleth/_unselected.py b/plotly/graph_objects/choropleth/_unselected.py index 099443cc73..0bad3f228b 100644 --- a/plotly/graph_objects/choropleth/_unselected.py +++ b/plotly/graph_objects/choropleth/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.choropleth.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/choropleth/colorbar/_tickfont.py b/plotly/graph_objects/choropleth/colorbar/_tickfont.py index 9e5b67d313..9f1121078f 100644 --- a/plotly/graph_objects/choropleth/colorbar/_tickfont.py +++ b/plotly/graph_objects/choropleth/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/choropleth/colorbar/_title.py b/plotly/graph_objects/choropleth/colorbar/_title.py index e35324ed0b..7e9f70a490 100644 --- a/plotly/graph_objects/choropleth/colorbar/_title.py +++ b/plotly/graph_objects/choropleth/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.choropleth.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.choropleth.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/choropleth/colorbar/title/_font.py b/plotly/graph_objects/choropleth/colorbar/title/_font.py index 460557a158..75e3d00304 100644 --- a/plotly/graph_objects/choropleth/colorbar/title/_font.py +++ b/plotly/graph_objects/choropleth/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/choropleth/hoverlabel/_font.py b/plotly/graph_objects/choropleth/hoverlabel/_font.py index ad0ea86a79..fbd691fe92 100644 --- a/plotly/graph_objects/choropleth/hoverlabel/_font.py +++ b/plotly/graph_objects/choropleth/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/choropleth/legendgrouptitle/_font.py b/plotly/graph_objects/choropleth/legendgrouptitle/_font.py index 4c647c26d8..65a30348cf 100644 --- a/plotly/graph_objects/choropleth/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choropleth/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/choropleth/marker/_line.py b/plotly/graph_objects/choropleth/marker/_line.py index 8c3e0f88c1..a5dfacbd4f 100644 --- a/plotly/graph_objects/choropleth/marker/_line.py +++ b/plotly/graph_objects/choropleth/marker/_line.py @@ -19,12 +19,13 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmap/_colorbar.py b/plotly/graph_objects/choroplethmap/_colorbar.py index e8ea064f29..acbdaaf5fb 100644 --- a/plotly/graph_objects/choroplethmap/_colorbar.py +++ b/plotly/graph_objects/choroplethmap/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/choroplethmap/_hoverlabel.py b/plotly/graph_objects/choroplethmap/_hoverlabel.py index d19b15711d..e7c37f5388 100644 --- a/plotly/graph_objects/choroplethmap/_hoverlabel.py +++ b/plotly/graph_objects/choroplethmap/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/choroplethmap/_legendgrouptitle.py b/plotly/graph_objects/choroplethmap/_legendgrouptitle.py index bf3f72c063..82defea4d6 100644 --- a/plotly/graph_objects/choroplethmap/_legendgrouptitle.py +++ b/plotly/graph_objects/choroplethmap/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/choroplethmap/_marker.py b/plotly/graph_objects/choroplethmap/_marker.py index c3dece2da8..0f4f0b6fb5 100644 --- a/plotly/graph_objects/choroplethmap/_marker.py +++ b/plotly/graph_objects/choroplethmap/_marker.py @@ -15,9 +15,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/choroplethmap/_selected.py b/plotly/graph_objects/choroplethmap/_selected.py index 97f23ae5b6..a72fd81d19 100644 --- a/plotly/graph_objects/choroplethmap/_selected.py +++ b/plotly/graph_objects/choroplethmap/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/choroplethmap/_unselected.py b/plotly/graph_objects/choroplethmap/_unselected.py index c9e58bc607..56a0f3d2a6 100644 --- a/plotly/graph_objects/choroplethmap/_unselected.py +++ b/plotly/graph_objects/choroplethmap/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py b/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py index 88d001e16b..4c6ce8ff14 100644 --- a/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py +++ b/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/choroplethmap/colorbar/_title.py b/plotly/graph_objects/choroplethmap/colorbar/_title.py index 2e5c34d856..93fb7fc716 100644 --- a/plotly/graph_objects/choroplethmap/colorbar/_title.py +++ b/plotly/graph_objects/choroplethmap/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmap.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.choroplethmap.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/choroplethmap/colorbar/title/_font.py b/plotly/graph_objects/choroplethmap/colorbar/title/_font.py index 563f879b15..e7911a7a94 100644 --- a/plotly/graph_objects/choroplethmap/colorbar/title/_font.py +++ b/plotly/graph_objects/choroplethmap/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/choroplethmap/hoverlabel/_font.py b/plotly/graph_objects/choroplethmap/hoverlabel/_font.py index 8d02464b16..09e15a0712 100644 --- a/plotly/graph_objects/choroplethmap/hoverlabel/_font.py +++ b/plotly/graph_objects/choroplethmap/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py b/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py index 6218a79e7d..1e838c5d23 100644 --- a/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/choroplethmap/marker/_line.py b/plotly/graph_objects/choroplethmap/marker/_line.py index 77c4b2f93f..00bcccdd2b 100644 --- a/plotly/graph_objects/choroplethmap/marker/_line.py +++ b/plotly/graph_objects/choroplethmap/marker/_line.py @@ -19,12 +19,13 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/_colorbar.py b/plotly/graph_objects/choroplethmapbox/_colorbar.py index c550b8be9d..051f524a2d 100644 --- a/plotly/graph_objects/choroplethmapbox/_colorbar.py +++ b/plotly/graph_objects/choroplethmapbox/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/_hoverlabel.py b/plotly/graph_objects/choroplethmapbox/_hoverlabel.py index 096f41e4cc..7c52cac4c2 100644 --- a/plotly/graph_objects/choroplethmapbox/_hoverlabel.py +++ b/plotly/graph_objects/choroplethmapbox/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/_legendgrouptitle.py b/plotly/graph_objects/choroplethmapbox/_legendgrouptitle.py index ae050ccf21..533d9ffc28 100644 --- a/plotly/graph_objects/choroplethmapbox/_legendgrouptitle.py +++ b/plotly/graph_objects/choroplethmapbox/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/_marker.py b/plotly/graph_objects/choroplethmapbox/_marker.py index 0cb32ca0d0..dea404c361 100644 --- a/plotly/graph_objects/choroplethmapbox/_marker.py +++ b/plotly/graph_objects/choroplethmapbox/_marker.py @@ -15,9 +15,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/_selected.py b/plotly/graph_objects/choroplethmapbox/_selected.py index 3ff84e8ada..6572795b77 100644 --- a/plotly/graph_objects/choroplethmapbox/_selected.py +++ b/plotly/graph_objects/choroplethmapbox/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/_unselected.py b/plotly/graph_objects/choroplethmapbox/_unselected.py index 38add76be3..b8cd750a12 100644 --- a/plotly/graph_objects/choroplethmapbox/_unselected.py +++ b/plotly/graph_objects/choroplethmapbox/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py b/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py index 959640812e..09adcaa092 100644 --- a/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py +++ b/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/colorbar/_title.py b/plotly/graph_objects/choroplethmapbox/colorbar/_title.py index 0e80825e15..276c21d4db 100644 --- a/plotly/graph_objects/choroplethmapbox/colorbar/_title.py +++ b/plotly/graph_objects/choroplethmapbox/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.choroplethmapbox.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.choroplethmapbox.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py b/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py index 2de491f418..be8fb31134 100644 --- a/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py +++ b/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py b/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py index 3cb1da7812..74557b6333 100644 --- a/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py b/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py index 76a891c41b..05d8dc37d8 100644 --- a/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/marker/_line.py b/plotly/graph_objects/choroplethmapbox/marker/_line.py index ee3d6f681b..b107d2a73e 100644 --- a/plotly/graph_objects/choroplethmapbox/marker/_line.py +++ b/plotly/graph_objects/choroplethmapbox/marker/_line.py @@ -19,12 +19,13 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/cone/_colorbar.py b/plotly/graph_objects/cone/_colorbar.py index 1d2eaeb463..ce781a968e 100644 --- a/plotly/graph_objects/cone/_colorbar.py +++ b/plotly/graph_objects/cone/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.cone.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.cone.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.cone.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.cone.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.cone.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.cone.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/cone/_hoverlabel.py b/plotly/graph_objects/cone/_hoverlabel.py index d59782fc3b..334a3e2135 100644 --- a/plotly/graph_objects/cone/_hoverlabel.py +++ b/plotly/graph_objects/cone/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.cone.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.cone.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/cone/_legendgrouptitle.py b/plotly/graph_objects/cone/_legendgrouptitle.py index dd70a31d43..f84ae00164 100644 --- a/plotly/graph_objects/cone/_legendgrouptitle.py +++ b/plotly/graph_objects/cone/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.cone.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.cone.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/cone/colorbar/_tickfont.py b/plotly/graph_objects/cone/colorbar/_tickfont.py index 6bfc192e5e..84c6836d26 100644 --- a/plotly/graph_objects/cone/colorbar/_tickfont.py +++ b/plotly/graph_objects/cone/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/cone/colorbar/_title.py b/plotly/graph_objects/cone/colorbar/_title.py index 1b5a9537cf..2ac0f59d9f 100644 --- a/plotly/graph_objects/cone/colorbar/_title.py +++ b/plotly/graph_objects/cone/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.cone.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.cone.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/cone/colorbar/title/_font.py b/plotly/graph_objects/cone/colorbar/title/_font.py index eef44778cc..bc093087c0 100644 --- a/plotly/graph_objects/cone/colorbar/title/_font.py +++ b/plotly/graph_objects/cone/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/cone/hoverlabel/_font.py b/plotly/graph_objects/cone/hoverlabel/_font.py index 8750476408..292171bdae 100644 --- a/plotly/graph_objects/cone/hoverlabel/_font.py +++ b/plotly/graph_objects/cone/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/cone/legendgrouptitle/_font.py b/plotly/graph_objects/cone/legendgrouptitle/_font.py index 94eb3b0269..59d78e4101 100644 --- a/plotly/graph_objects/cone/legendgrouptitle/_font.py +++ b/plotly/graph_objects/cone/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/contour/_colorbar.py b/plotly/graph_objects/contour/_colorbar.py index b4002c2593..b370470ae6 100644 --- a/plotly/graph_objects/contour/_colorbar.py +++ b/plotly/graph_objects/contour/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.contour.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.contour.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.contour.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.contour.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.contour.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.contour.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/contour/_contours.py b/plotly/graph_objects/contour/_contours.py index 394436660d..35104f4100 100644 --- a/plotly/graph_objects/contour/_contours.py +++ b/plotly/graph_objects/contour/_contours.py @@ -76,9 +76,9 @@ def labelfont(self): The 'labelfont' property is an instance of Labelfont that may be specified as: - - An instance of :class:`plotly.graph_objects.contour.contours.Labelfont` - - A dict of string/value properties that will be passed - to the Labelfont constructor + + - An instance of :class:`plotly.graph_objects.contour.contours.Labelfont` + - A dict of string/value properties that will be passed to the Labelfont constructor Returns ------- diff --git a/plotly/graph_objects/contour/_hoverlabel.py b/plotly/graph_objects/contour/_hoverlabel.py index cbd62dc8cc..b723a28bfb 100644 --- a/plotly/graph_objects/contour/_hoverlabel.py +++ b/plotly/graph_objects/contour/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.contour.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.contour.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/contour/_legendgrouptitle.py b/plotly/graph_objects/contour/_legendgrouptitle.py index 8fb99af1e9..28ab64aa96 100644 --- a/plotly/graph_objects/contour/_legendgrouptitle.py +++ b/plotly/graph_objects/contour/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.contour.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.contour.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/contour/_line.py b/plotly/graph_objects/contour/_line.py index f4a90ff222..a29648e1bd 100644 --- a/plotly/graph_objects/contour/_line.py +++ b/plotly/graph_objects/contour/_line.py @@ -17,11 +17,12 @@ def color(self): `contours.coloring` is set to "lines". The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/contour/_textfont.py b/plotly/graph_objects/contour/_textfont.py index 4d5cf8de1f..9964480b1f 100644 --- a/plotly/graph_objects/contour/_textfont.py +++ b/plotly/graph_objects/contour/_textfont.py @@ -24,11 +24,12 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/contour/colorbar/_tickfont.py b/plotly/graph_objects/contour/colorbar/_tickfont.py index 0b49c606a9..3e27d44487 100644 --- a/plotly/graph_objects/contour/colorbar/_tickfont.py +++ b/plotly/graph_objects/contour/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/contour/colorbar/_title.py b/plotly/graph_objects/contour/colorbar/_title.py index 8fc9c6f0e8..f76aef50f4 100644 --- a/plotly/graph_objects/contour/colorbar/_title.py +++ b/plotly/graph_objects/contour/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.contour.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.contour.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/contour/colorbar/title/_font.py b/plotly/graph_objects/contour/colorbar/title/_font.py index ceeaed20af..e779a3ba6e 100644 --- a/plotly/graph_objects/contour/colorbar/title/_font.py +++ b/plotly/graph_objects/contour/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/contour/contours/_labelfont.py b/plotly/graph_objects/contour/contours/_labelfont.py index f51f5090ec..7ed2deaef1 100644 --- a/plotly/graph_objects/contour/contours/_labelfont.py +++ b/plotly/graph_objects/contour/contours/_labelfont.py @@ -24,11 +24,12 @@ class Labelfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/contour/hoverlabel/_font.py b/plotly/graph_objects/contour/hoverlabel/_font.py index e610c3ba4d..3ba40290b6 100644 --- a/plotly/graph_objects/contour/hoverlabel/_font.py +++ b/plotly/graph_objects/contour/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/contour/legendgrouptitle/_font.py b/plotly/graph_objects/contour/legendgrouptitle/_font.py index d28cc7e38b..74aef43ce9 100644 --- a/plotly/graph_objects/contour/legendgrouptitle/_font.py +++ b/plotly/graph_objects/contour/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/contourcarpet/_colorbar.py b/plotly/graph_objects/contourcarpet/_colorbar.py index d73b55b01d..b417dab686 100644 --- a/plotly/graph_objects/contourcarpet/_colorbar.py +++ b/plotly/graph_objects/contourcarpet/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.contourcarpet.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.contourcarpet.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.contourcarpet.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.contourcarpet.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.contourcarpet.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.contourcarpet.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/contourcarpet/_contours.py b/plotly/graph_objects/contourcarpet/_contours.py index a00882bab5..4481902901 100644 --- a/plotly/graph_objects/contourcarpet/_contours.py +++ b/plotly/graph_objects/contourcarpet/_contours.py @@ -75,9 +75,9 @@ def labelfont(self): The 'labelfont' property is an instance of Labelfont that may be specified as: - - An instance of :class:`plotly.graph_objects.contourcarpet.contours.Labelfont` - - A dict of string/value properties that will be passed - to the Labelfont constructor + + - An instance of :class:`plotly.graph_objects.contourcarpet.contours.Labelfont` + - A dict of string/value properties that will be passed to the Labelfont constructor Returns ------- diff --git a/plotly/graph_objects/contourcarpet/_legendgrouptitle.py b/plotly/graph_objects/contourcarpet/_legendgrouptitle.py index 72f70bb140..a1221e2a85 100644 --- a/plotly/graph_objects/contourcarpet/_legendgrouptitle.py +++ b/plotly/graph_objects/contourcarpet/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.contourcarpet.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.contourcarpet.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/contourcarpet/_line.py b/plotly/graph_objects/contourcarpet/_line.py index ad00739818..fe855ba4a2 100644 --- a/plotly/graph_objects/contourcarpet/_line.py +++ b/plotly/graph_objects/contourcarpet/_line.py @@ -17,11 +17,12 @@ def color(self): `contours.coloring` is set to "lines". The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py b/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py index dd3476df51..6ff63bf455 100644 --- a/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py +++ b/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/contourcarpet/colorbar/_title.py b/plotly/graph_objects/contourcarpet/colorbar/_title.py index ea8ca2096a..b1f9dfab43 100644 --- a/plotly/graph_objects/contourcarpet/colorbar/_title.py +++ b/plotly/graph_objects/contourcarpet/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.contourcarpet.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.contourcarpet.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/contourcarpet/colorbar/title/_font.py b/plotly/graph_objects/contourcarpet/colorbar/title/_font.py index 4378424fc2..b5ae59d52b 100644 --- a/plotly/graph_objects/contourcarpet/colorbar/title/_font.py +++ b/plotly/graph_objects/contourcarpet/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/contourcarpet/contours/_labelfont.py b/plotly/graph_objects/contourcarpet/contours/_labelfont.py index f6f24e4e7d..86fb1212e7 100644 --- a/plotly/graph_objects/contourcarpet/contours/_labelfont.py +++ b/plotly/graph_objects/contourcarpet/contours/_labelfont.py @@ -24,11 +24,12 @@ class Labelfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py b/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py index c76684d2bb..cdfb7510bd 100644 --- a/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/densitymap/_colorbar.py b/plotly/graph_objects/densitymap/_colorbar.py index 9d49ca1da1..825f69cd32 100644 --- a/plotly/graph_objects/densitymap/_colorbar.py +++ b/plotly/graph_objects/densitymap/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymap.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.densitymap.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -653,9 +657,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymap.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.densitymap.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -950,9 +954,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymap.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.densitymap.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/densitymap/_hoverlabel.py b/plotly/graph_objects/densitymap/_hoverlabel.py index eb06781a3a..5468312b9a 100644 --- a/plotly/graph_objects/densitymap/_hoverlabel.py +++ b/plotly/graph_objects/densitymap/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymap.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.densitymap.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/densitymap/_legendgrouptitle.py b/plotly/graph_objects/densitymap/_legendgrouptitle.py index e9357bea64..6979c9566f 100644 --- a/plotly/graph_objects/densitymap/_legendgrouptitle.py +++ b/plotly/graph_objects/densitymap/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymap.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.densitymap.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/densitymap/colorbar/_tickfont.py b/plotly/graph_objects/densitymap/colorbar/_tickfont.py index 8968ee2593..0ea61a6b63 100644 --- a/plotly/graph_objects/densitymap/colorbar/_tickfont.py +++ b/plotly/graph_objects/densitymap/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/densitymap/colorbar/_title.py b/plotly/graph_objects/densitymap/colorbar/_title.py index cc202ae005..6a54dc130f 100644 --- a/plotly/graph_objects/densitymap/colorbar/_title.py +++ b/plotly/graph_objects/densitymap/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymap.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.densitymap.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/densitymap/colorbar/title/_font.py b/plotly/graph_objects/densitymap/colorbar/title/_font.py index 8192f96d29..546c0f6c2f 100644 --- a/plotly/graph_objects/densitymap/colorbar/title/_font.py +++ b/plotly/graph_objects/densitymap/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/densitymap/hoverlabel/_font.py b/plotly/graph_objects/densitymap/hoverlabel/_font.py index 51ff0c3b99..ce58137a19 100644 --- a/plotly/graph_objects/densitymap/hoverlabel/_font.py +++ b/plotly/graph_objects/densitymap/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/densitymap/legendgrouptitle/_font.py b/plotly/graph_objects/densitymap/legendgrouptitle/_font.py index c0a13bd540..bbf2c06bd8 100644 --- a/plotly/graph_objects/densitymap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/densitymap/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/densitymapbox/_colorbar.py b/plotly/graph_objects/densitymapbox/_colorbar.py index 9defbd5509..0ce71fb194 100644 --- a/plotly/graph_objects/densitymapbox/_colorbar.py +++ b/plotly/graph_objects/densitymapbox/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymapbox.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.densitymapbox.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymapbox.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.densitymapbox.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymapbox.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.densitymapbox.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/densitymapbox/_hoverlabel.py b/plotly/graph_objects/densitymapbox/_hoverlabel.py index 4545506ab6..05d59194a7 100644 --- a/plotly/graph_objects/densitymapbox/_hoverlabel.py +++ b/plotly/graph_objects/densitymapbox/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymapbox.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.densitymapbox.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/densitymapbox/_legendgrouptitle.py b/plotly/graph_objects/densitymapbox/_legendgrouptitle.py index e24aa27255..2299e03813 100644 --- a/plotly/graph_objects/densitymapbox/_legendgrouptitle.py +++ b/plotly/graph_objects/densitymapbox/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymapbox.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.densitymapbox.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py b/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py index e1563e7d17..38f4f051fc 100644 --- a/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py +++ b/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/densitymapbox/colorbar/_title.py b/plotly/graph_objects/densitymapbox/colorbar/_title.py index 65791a737a..c34fe05637 100644 --- a/plotly/graph_objects/densitymapbox/colorbar/_title.py +++ b/plotly/graph_objects/densitymapbox/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.densitymapbox.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.densitymapbox.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/densitymapbox/colorbar/title/_font.py b/plotly/graph_objects/densitymapbox/colorbar/title/_font.py index d0e2a4c99f..0c8d565d9b 100644 --- a/plotly/graph_objects/densitymapbox/colorbar/title/_font.py +++ b/plotly/graph_objects/densitymapbox/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/densitymapbox/hoverlabel/_font.py b/plotly/graph_objects/densitymapbox/hoverlabel/_font.py index 54332c7bc7..4c10bd424e 100644 --- a/plotly/graph_objects/densitymapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/densitymapbox/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py b/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py index 58c9e61173..c6ec729d5e 100644 --- a/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/funnel/_connector.py b/plotly/graph_objects/funnel/_connector.py index 9fc520a608..41c1a0ffa5 100644 --- a/plotly/graph_objects/funnel/_connector.py +++ b/plotly/graph_objects/funnel/_connector.py @@ -16,11 +16,12 @@ def fillcolor(self): Sets the fill color. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -37,9 +38,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.connector.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.funnel.connector.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/funnel/_hoverlabel.py b/plotly/graph_objects/funnel/_hoverlabel.py index 1b7aeac446..1531e451a7 100644 --- a/plotly/graph_objects/funnel/_hoverlabel.py +++ b/plotly/graph_objects/funnel/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.funnel.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/funnel/_insidetextfont.py b/plotly/graph_objects/funnel/_insidetextfont.py index ab34bc361c..0ad3142cac 100644 --- a/plotly/graph_objects/funnel/_insidetextfont.py +++ b/plotly/graph_objects/funnel/_insidetextfont.py @@ -33,12 +33,13 @@ class Insidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/funnel/_legendgrouptitle.py b/plotly/graph_objects/funnel/_legendgrouptitle.py index e1986e41bb..bb5b931bed 100644 --- a/plotly/graph_objects/funnel/_legendgrouptitle.py +++ b/plotly/graph_objects/funnel/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.funnel.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/funnel/_marker.py b/plotly/graph_objects/funnel/_marker.py index e97493e451..74190db31e 100644 --- a/plotly/graph_objects/funnel/_marker.py +++ b/plotly/graph_objects/funnel/_marker.py @@ -149,14 +149,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to funnel.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to funnel.marker.colorscale + - A list or array of any of the above Returns ------- @@ -198,9 +198,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.funnel.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -287,9 +287,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.funnel.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/funnel/_outsidetextfont.py b/plotly/graph_objects/funnel/_outsidetextfont.py index 6ec2b59886..bd6e623d1d 100644 --- a/plotly/graph_objects/funnel/_outsidetextfont.py +++ b/plotly/graph_objects/funnel/_outsidetextfont.py @@ -33,12 +33,13 @@ class Outsidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/funnel/_textfont.py b/plotly/graph_objects/funnel/_textfont.py index 319375d705..d8d8b08721 100644 --- a/plotly/graph_objects/funnel/_textfont.py +++ b/plotly/graph_objects/funnel/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/funnel/connector/_line.py b/plotly/graph_objects/funnel/connector/_line.py index 5c4a6b1740..86c87a9f5a 100644 --- a/plotly/graph_objects/funnel/connector/_line.py +++ b/plotly/graph_objects/funnel/connector/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/funnel/hoverlabel/_font.py b/plotly/graph_objects/funnel/hoverlabel/_font.py index d32bb40a44..1bd275d08e 100644 --- a/plotly/graph_objects/funnel/hoverlabel/_font.py +++ b/plotly/graph_objects/funnel/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/funnel/legendgrouptitle/_font.py b/plotly/graph_objects/funnel/legendgrouptitle/_font.py index 1827f6172e..bb5d99071d 100644 --- a/plotly/graph_objects/funnel/legendgrouptitle/_font.py +++ b/plotly/graph_objects/funnel/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/funnel/marker/_colorbar.py b/plotly/graph_objects/funnel/marker/_colorbar.py index 2e81606868..b5d0d85854 100644 --- a/plotly/graph_objects/funnel/marker/_colorbar.py +++ b/plotly/graph_objects/funnel/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.funnel.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.funnel.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.funnel.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/funnel/marker/_line.py b/plotly/graph_objects/funnel/marker/_line.py index 59f8861d9e..e154701cb5 100644 --- a/plotly/graph_objects/funnel/marker/_line.py +++ b/plotly/graph_objects/funnel/marker/_line.py @@ -147,14 +147,14 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to funnel.marker.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to funnel.marker.line.colorscale + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py b/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py index 7f53d0b5b0..b4ae4ce20a 100644 --- a/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/funnel/marker/colorbar/_title.py b/plotly/graph_objects/funnel/marker/colorbar/_title.py index 87689a0e5d..5743678a7c 100644 --- a/plotly/graph_objects/funnel/marker/colorbar/_title.py +++ b/plotly/graph_objects/funnel/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.funnel.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.funnel.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/funnel/marker/colorbar/title/_font.py b/plotly/graph_objects/funnel/marker/colorbar/title/_font.py index 23757de602..426cf450fa 100644 --- a/plotly/graph_objects/funnel/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/funnel/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/funnelarea/_hoverlabel.py b/plotly/graph_objects/funnelarea/_hoverlabel.py index fc65d1f50a..5ba7afa6e1 100644 --- a/plotly/graph_objects/funnelarea/_hoverlabel.py +++ b/plotly/graph_objects/funnelarea/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.funnelarea.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.funnelarea.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/funnelarea/_insidetextfont.py b/plotly/graph_objects/funnelarea/_insidetextfont.py index b277e6858c..78f508e158 100644 --- a/plotly/graph_objects/funnelarea/_insidetextfont.py +++ b/plotly/graph_objects/funnelarea/_insidetextfont.py @@ -33,12 +33,13 @@ class Insidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/_legendgrouptitle.py b/plotly/graph_objects/funnelarea/_legendgrouptitle.py index 9fd79d7ea5..9b4f88dcc6 100644 --- a/plotly/graph_objects/funnelarea/_legendgrouptitle.py +++ b/plotly/graph_objects/funnelarea/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.funnelarea.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.funnelarea.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/funnelarea/_marker.py b/plotly/graph_objects/funnelarea/_marker.py index 4c1f03d868..d5b5b36f52 100644 --- a/plotly/graph_objects/funnelarea/_marker.py +++ b/plotly/graph_objects/funnelarea/_marker.py @@ -52,9 +52,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.funnelarea.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.funnelarea.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -73,9 +73,9 @@ def pattern(self): The 'pattern' property is an instance of Pattern that may be specified as: - - An instance of :class:`plotly.graph_objects.funnelarea.marker.Pattern` - - A dict of string/value properties that will be passed - to the Pattern constructor + + - An instance of :class:`plotly.graph_objects.funnelarea.marker.Pattern` + - A dict of string/value properties that will be passed to the Pattern constructor Returns ------- diff --git a/plotly/graph_objects/funnelarea/_textfont.py b/plotly/graph_objects/funnelarea/_textfont.py index 918b5f68ed..c29a0501a0 100644 --- a/plotly/graph_objects/funnelarea/_textfont.py +++ b/plotly/graph_objects/funnelarea/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/_title.py b/plotly/graph_objects/funnelarea/_title.py index b5ae7e7844..7c63c3ee01 100644 --- a/plotly/graph_objects/funnelarea/_title.py +++ b/plotly/graph_objects/funnelarea/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.funnelarea.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.funnelarea.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/funnelarea/hoverlabel/_font.py b/plotly/graph_objects/funnelarea/hoverlabel/_font.py index 96f24d3eb5..e31c2add1a 100644 --- a/plotly/graph_objects/funnelarea/hoverlabel/_font.py +++ b/plotly/graph_objects/funnelarea/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py b/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py index ba0772e0e1..ad078b3b76 100644 --- a/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py +++ b/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/funnelarea/marker/_line.py b/plotly/graph_objects/funnelarea/marker/_line.py index ba812f44e3..12de8ff37d 100644 --- a/plotly/graph_objects/funnelarea/marker/_line.py +++ b/plotly/graph_objects/funnelarea/marker/_line.py @@ -17,12 +17,13 @@ def color(self): the `paper_bgcolor` value. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/marker/_pattern.py b/plotly/graph_objects/funnelarea/marker/_pattern.py index eb5bedacb3..6a74ae9a4d 100644 --- a/plotly/graph_objects/funnelarea/marker/_pattern.py +++ b/plotly/graph_objects/funnelarea/marker/_pattern.py @@ -34,12 +34,13 @@ def bgcolor(self): background. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -78,12 +79,13 @@ def fgcolor(self): white to increase contrast with the `bgcolor`. The 'fgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/title/_font.py b/plotly/graph_objects/funnelarea/title/_font.py index bd7c9ca5b6..7b8b7933b9 100644 --- a/plotly/graph_objects/funnelarea/title/_font.py +++ b/plotly/graph_objects/funnelarea/title/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/heatmap/_colorbar.py b/plotly/graph_objects/heatmap/_colorbar.py index 500146bb05..c04e4cee76 100644 --- a/plotly/graph_objects/heatmap/_colorbar.py +++ b/plotly/graph_objects/heatmap/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.heatmap.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.heatmap.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.heatmap.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.heatmap.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.heatmap.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.heatmap.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/heatmap/_hoverlabel.py b/plotly/graph_objects/heatmap/_hoverlabel.py index d133945d34..f3f4533d3a 100644 --- a/plotly/graph_objects/heatmap/_hoverlabel.py +++ b/plotly/graph_objects/heatmap/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.heatmap.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.heatmap.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/heatmap/_legendgrouptitle.py b/plotly/graph_objects/heatmap/_legendgrouptitle.py index d405f868e2..da1032c1e1 100644 --- a/plotly/graph_objects/heatmap/_legendgrouptitle.py +++ b/plotly/graph_objects/heatmap/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.heatmap.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.heatmap.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/heatmap/_textfont.py b/plotly/graph_objects/heatmap/_textfont.py index c12f472e14..ce2f53aa68 100644 --- a/plotly/graph_objects/heatmap/_textfont.py +++ b/plotly/graph_objects/heatmap/_textfont.py @@ -24,11 +24,12 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/heatmap/colorbar/_tickfont.py b/plotly/graph_objects/heatmap/colorbar/_tickfont.py index e5e2da88a2..7eb01a5e9f 100644 --- a/plotly/graph_objects/heatmap/colorbar/_tickfont.py +++ b/plotly/graph_objects/heatmap/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/heatmap/colorbar/_title.py b/plotly/graph_objects/heatmap/colorbar/_title.py index df9221a985..3dd089bcf4 100644 --- a/plotly/graph_objects/heatmap/colorbar/_title.py +++ b/plotly/graph_objects/heatmap/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.heatmap.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.heatmap.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/heatmap/colorbar/title/_font.py b/plotly/graph_objects/heatmap/colorbar/title/_font.py index 2b78e1d4f3..b4f951f87d 100644 --- a/plotly/graph_objects/heatmap/colorbar/title/_font.py +++ b/plotly/graph_objects/heatmap/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/heatmap/hoverlabel/_font.py b/plotly/graph_objects/heatmap/hoverlabel/_font.py index af64666f7e..903376cdbe 100644 --- a/plotly/graph_objects/heatmap/hoverlabel/_font.py +++ b/plotly/graph_objects/heatmap/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/heatmap/legendgrouptitle/_font.py b/plotly/graph_objects/heatmap/legendgrouptitle/_font.py index ce69bcaa6b..509d4a7ba6 100644 --- a/plotly/graph_objects/heatmap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/heatmap/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram/_error_x.py b/plotly/graph_objects/histogram/_error_x.py index c3cc74ec15..c5893ed629 100644 --- a/plotly/graph_objects/histogram/_error_x.py +++ b/plotly/graph_objects/histogram/_error_x.py @@ -108,11 +108,12 @@ def color(self): Sets the stroke color of the error bars. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram/_error_y.py b/plotly/graph_objects/histogram/_error_y.py index e6213d21f3..4d676dd88a 100644 --- a/plotly/graph_objects/histogram/_error_y.py +++ b/plotly/graph_objects/histogram/_error_y.py @@ -107,11 +107,12 @@ def color(self): Sets the stroke color of the error bars. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram/_hoverlabel.py b/plotly/graph_objects/histogram/_hoverlabel.py index d368a8ff56..5782084a3f 100644 --- a/plotly/graph_objects/histogram/_hoverlabel.py +++ b/plotly/graph_objects/histogram/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.histogram.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/histogram/_insidetextfont.py b/plotly/graph_objects/histogram/_insidetextfont.py index 891a9ccb3e..9b56a4b1b5 100644 --- a/plotly/graph_objects/histogram/_insidetextfont.py +++ b/plotly/graph_objects/histogram/_insidetextfont.py @@ -24,11 +24,12 @@ class Insidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram/_legendgrouptitle.py b/plotly/graph_objects/histogram/_legendgrouptitle.py index 3025ac335a..15c3d89326 100644 --- a/plotly/graph_objects/histogram/_legendgrouptitle.py +++ b/plotly/graph_objects/histogram/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.histogram.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/histogram/_marker.py b/plotly/graph_objects/histogram/_marker.py index c6a0e16a12..715d7aabf2 100644 --- a/plotly/graph_objects/histogram/_marker.py +++ b/plotly/graph_objects/histogram/_marker.py @@ -151,14 +151,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to histogram.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to histogram.marker.colorscale + - A list or array of any of the above Returns ------- @@ -200,9 +200,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.histogram.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -310,9 +310,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.histogram.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -370,9 +370,9 @@ def pattern(self): The 'pattern' property is an instance of Pattern that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.marker.Pattern` - - A dict of string/value properties that will be passed - to the Pattern constructor + + - An instance of :class:`plotly.graph_objects.histogram.marker.Pattern` + - A dict of string/value properties that will be passed to the Pattern constructor Returns ------- diff --git a/plotly/graph_objects/histogram/_outsidetextfont.py b/plotly/graph_objects/histogram/_outsidetextfont.py index 67d4b2b1ae..41bb32648c 100644 --- a/plotly/graph_objects/histogram/_outsidetextfont.py +++ b/plotly/graph_objects/histogram/_outsidetextfont.py @@ -24,11 +24,12 @@ class Outsidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram/_selected.py b/plotly/graph_objects/histogram/_selected.py index bcb0144c02..0a96f3f175 100644 --- a/plotly/graph_objects/histogram/_selected.py +++ b/plotly/graph_objects/histogram/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.histogram.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.selected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.histogram.selected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/histogram/_textfont.py b/plotly/graph_objects/histogram/_textfont.py index 8fe8a14db3..85d2db7ace 100644 --- a/plotly/graph_objects/histogram/_textfont.py +++ b/plotly/graph_objects/histogram/_textfont.py @@ -24,11 +24,12 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram/_unselected.py b/plotly/graph_objects/histogram/_unselected.py index 6fb98133dc..961b7c41ca 100644 --- a/plotly/graph_objects/histogram/_unselected.py +++ b/plotly/graph_objects/histogram/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.histogram.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.unselected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.histogram.unselected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/histogram/hoverlabel/_font.py b/plotly/graph_objects/histogram/hoverlabel/_font.py index 0f9d77c36e..0a07411f1b 100644 --- a/plotly/graph_objects/histogram/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/histogram/legendgrouptitle/_font.py b/plotly/graph_objects/histogram/legendgrouptitle/_font.py index 0f8f4f305f..b5c651f9b4 100644 --- a/plotly/graph_objects/histogram/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram/marker/_colorbar.py b/plotly/graph_objects/histogram/marker/_colorbar.py index 3d7e40e9c7..fd69c4bbe4 100644 --- a/plotly/graph_objects/histogram/marker/_colorbar.py +++ b/plotly/graph_objects/histogram/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.histogram.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.histogram.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.histogram.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/histogram/marker/_line.py b/plotly/graph_objects/histogram/marker/_line.py index 88923030d2..35497ada83 100644 --- a/plotly/graph_objects/histogram/marker/_line.py +++ b/plotly/graph_objects/histogram/marker/_line.py @@ -147,14 +147,14 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to histogram.marker.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to histogram.marker.line.colorscale + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/histogram/marker/_pattern.py b/plotly/graph_objects/histogram/marker/_pattern.py index 18199661d2..e9ba47cffe 100644 --- a/plotly/graph_objects/histogram/marker/_pattern.py +++ b/plotly/graph_objects/histogram/marker/_pattern.py @@ -34,12 +34,13 @@ def bgcolor(self): background. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -78,12 +79,13 @@ def fgcolor(self): white to increase contrast with the `bgcolor`. The 'fgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py b/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py index 8e5ab4e886..bcb1ba8834 100644 --- a/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram/marker/colorbar/_title.py b/plotly/graph_objects/histogram/marker/colorbar/_title.py index d578435685..14b4cc298d 100644 --- a/plotly/graph_objects/histogram/marker/colorbar/_title.py +++ b/plotly/graph_objects/histogram/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.histogram.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/histogram/marker/colorbar/title/_font.py b/plotly/graph_objects/histogram/marker/colorbar/title/_font.py index 719641918d..503dcf69c7 100644 --- a/plotly/graph_objects/histogram/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram/selected/_marker.py b/plotly/graph_objects/histogram/selected/_marker.py index 674a4581e0..2cc7844a13 100644 --- a/plotly/graph_objects/histogram/selected/_marker.py +++ b/plotly/graph_objects/histogram/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram/selected/_textfont.py b/plotly/graph_objects/histogram/selected/_textfont.py index 58e58dd86a..eae60788ea 100644 --- a/plotly/graph_objects/histogram/selected/_textfont.py +++ b/plotly/graph_objects/histogram/selected/_textfont.py @@ -16,11 +16,12 @@ def color(self): Sets the text font color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram/unselected/_marker.py b/plotly/graph_objects/histogram/unselected/_marker.py index 199670e17a..a29a92650c 100644 --- a/plotly/graph_objects/histogram/unselected/_marker.py +++ b/plotly/graph_objects/histogram/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram/unselected/_textfont.py b/plotly/graph_objects/histogram/unselected/_textfont.py index 9cfb88488c..42285e5565 100644 --- a/plotly/graph_objects/histogram/unselected/_textfont.py +++ b/plotly/graph_objects/histogram/unselected/_textfont.py @@ -17,11 +17,12 @@ def color(self): when a selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram2d/_colorbar.py b/plotly/graph_objects/histogram2d/_colorbar.py index 9fecf2d0bd..33437d26d1 100644 --- a/plotly/graph_objects/histogram2d/_colorbar.py +++ b/plotly/graph_objects/histogram2d/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2d.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.histogram2d.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2d.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.histogram2d.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2d.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.histogram2d.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/histogram2d/_hoverlabel.py b/plotly/graph_objects/histogram2d/_hoverlabel.py index bdf0a40025..5a3daa0fa1 100644 --- a/plotly/graph_objects/histogram2d/_hoverlabel.py +++ b/plotly/graph_objects/histogram2d/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2d.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.histogram2d.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/histogram2d/_legendgrouptitle.py b/plotly/graph_objects/histogram2d/_legendgrouptitle.py index cd3ef35d15..53222b9591 100644 --- a/plotly/graph_objects/histogram2d/_legendgrouptitle.py +++ b/plotly/graph_objects/histogram2d/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2d.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.histogram2d.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/histogram2d/_textfont.py b/plotly/graph_objects/histogram2d/_textfont.py index 778d6a6b13..bc73d2cfb8 100644 --- a/plotly/graph_objects/histogram2d/_textfont.py +++ b/plotly/graph_objects/histogram2d/_textfont.py @@ -24,11 +24,12 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram2d/colorbar/_tickfont.py b/plotly/graph_objects/histogram2d/colorbar/_tickfont.py index 1afe772ab4..647d247611 100644 --- a/plotly/graph_objects/histogram2d/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram2d/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram2d/colorbar/_title.py b/plotly/graph_objects/histogram2d/colorbar/_title.py index 9a21e638a7..c6b6bca2fe 100644 --- a/plotly/graph_objects/histogram2d/colorbar/_title.py +++ b/plotly/graph_objects/histogram2d/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2d.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.histogram2d.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/histogram2d/colorbar/title/_font.py b/plotly/graph_objects/histogram2d/colorbar/title/_font.py index 0eced85dc5..47eddbd042 100644 --- a/plotly/graph_objects/histogram2d/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram2d/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram2d/hoverlabel/_font.py b/plotly/graph_objects/histogram2d/hoverlabel/_font.py index 1a86ebe597..24c77f9d97 100644 --- a/plotly/graph_objects/histogram2d/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram2d/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py b/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py index 8828016f8c..4b44fed198 100644 --- a/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_colorbar.py b/plotly/graph_objects/histogram2dcontour/_colorbar.py index b3776f05a3..5691f85b16 100644 --- a/plotly/graph_objects/histogram2dcontour/_colorbar.py +++ b/plotly/graph_objects/histogram2dcontour/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_contours.py b/plotly/graph_objects/histogram2dcontour/_contours.py index 6986c5b9ac..a28bdcc310 100644 --- a/plotly/graph_objects/histogram2dcontour/_contours.py +++ b/plotly/graph_objects/histogram2dcontour/_contours.py @@ -76,9 +76,9 @@ def labelfont(self): The 'labelfont' property is an instance of Labelfont that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.contours.Labelfont` - - A dict of string/value properties that will be passed - to the Labelfont constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.contours.Labelfont` + - A dict of string/value properties that will be passed to the Labelfont constructor Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_hoverlabel.py b/plotly/graph_objects/histogram2dcontour/_hoverlabel.py index ab2484fa05..1719cc140d 100644 --- a/plotly/graph_objects/histogram2dcontour/_hoverlabel.py +++ b/plotly/graph_objects/histogram2dcontour/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_legendgrouptitle.py b/plotly/graph_objects/histogram2dcontour/_legendgrouptitle.py index 0ff35929ba..07e7e766b1 100644 --- a/plotly/graph_objects/histogram2dcontour/_legendgrouptitle.py +++ b/plotly/graph_objects/histogram2dcontour/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_line.py b/plotly/graph_objects/histogram2dcontour/_line.py index 7b10a61feb..c11024a9f3 100644 --- a/plotly/graph_objects/histogram2dcontour/_line.py +++ b/plotly/graph_objects/histogram2dcontour/_line.py @@ -17,11 +17,12 @@ def color(self): `contours.coloring` is set to "lines". The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/_textfont.py b/plotly/graph_objects/histogram2dcontour/_textfont.py index 0e47f06bcf..f03b80279d 100644 --- a/plotly/graph_objects/histogram2dcontour/_textfont.py +++ b/plotly/graph_objects/histogram2dcontour/_textfont.py @@ -24,11 +24,12 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py b/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py index 173460335d..fa4b2287d0 100644 --- a/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/colorbar/_title.py b/plotly/graph_objects/histogram2dcontour/colorbar/_title.py index 821de682ac..358f2fb386 100644 --- a/plotly/graph_objects/histogram2dcontour/colorbar/_title.py +++ b/plotly/graph_objects/histogram2dcontour/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.histogram2dcontour.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.histogram2dcontour.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py b/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py index e402b1bc5e..e80a3cb4f5 100644 --- a/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py b/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py index a958d679c8..079a7448c9 100644 --- a/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py +++ b/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py @@ -24,11 +24,12 @@ class Labelfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py b/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py index a25ef884d3..1119613145 100644 --- a/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py b/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py index a05ddfc22e..7aa4fe7b55 100644 --- a/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/icicle/_hoverlabel.py b/plotly/graph_objects/icicle/_hoverlabel.py index 304d1c8ca5..73419fd532 100644 --- a/plotly/graph_objects/icicle/_hoverlabel.py +++ b/plotly/graph_objects/icicle/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.icicle.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/icicle/_insidetextfont.py b/plotly/graph_objects/icicle/_insidetextfont.py index d4f53cad22..65c4ff8326 100644 --- a/plotly/graph_objects/icicle/_insidetextfont.py +++ b/plotly/graph_objects/icicle/_insidetextfont.py @@ -33,12 +33,13 @@ class Insidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/icicle/_legendgrouptitle.py b/plotly/graph_objects/icicle/_legendgrouptitle.py index d887115304..5b39fedada 100644 --- a/plotly/graph_objects/icicle/_legendgrouptitle.py +++ b/plotly/graph_objects/icicle/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.icicle.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/icicle/_marker.py b/plotly/graph_objects/icicle/_marker.py index 4f9ed01282..a97fdb74e2 100644 --- a/plotly/graph_objects/icicle/_marker.py +++ b/plotly/graph_objects/icicle/_marker.py @@ -166,9 +166,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.icicle.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -274,9 +274,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.icicle.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -295,9 +295,9 @@ def pattern(self): The 'pattern' property is an instance of Pattern that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.marker.Pattern` - - A dict of string/value properties that will be passed - to the Pattern constructor + + - An instance of :class:`plotly.graph_objects.icicle.marker.Pattern` + - A dict of string/value properties that will be passed to the Pattern constructor Returns ------- diff --git a/plotly/graph_objects/icicle/_outsidetextfont.py b/plotly/graph_objects/icicle/_outsidetextfont.py index bffeb69c6f..94d862dafe 100644 --- a/plotly/graph_objects/icicle/_outsidetextfont.py +++ b/plotly/graph_objects/icicle/_outsidetextfont.py @@ -33,12 +33,13 @@ class Outsidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/icicle/_pathbar.py b/plotly/graph_objects/icicle/_pathbar.py index 39ec18361c..1db6336f8f 100644 --- a/plotly/graph_objects/icicle/_pathbar.py +++ b/plotly/graph_objects/icicle/_pathbar.py @@ -61,9 +61,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.pathbar.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.icicle.pathbar.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/icicle/_root.py b/plotly/graph_objects/icicle/_root.py index ae1373c28b..50d707c795 100644 --- a/plotly/graph_objects/icicle/_root.py +++ b/plotly/graph_objects/icicle/_root.py @@ -18,11 +18,12 @@ def color(self): markers. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/icicle/_textfont.py b/plotly/graph_objects/icicle/_textfont.py index f96a40aa89..53b849bd50 100644 --- a/plotly/graph_objects/icicle/_textfont.py +++ b/plotly/graph_objects/icicle/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/icicle/hoverlabel/_font.py b/plotly/graph_objects/icicle/hoverlabel/_font.py index ca34ff2c19..3cff26e47c 100644 --- a/plotly/graph_objects/icicle/hoverlabel/_font.py +++ b/plotly/graph_objects/icicle/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/icicle/legendgrouptitle/_font.py b/plotly/graph_objects/icicle/legendgrouptitle/_font.py index 26b40c6dec..5dd16aee6e 100644 --- a/plotly/graph_objects/icicle/legendgrouptitle/_font.py +++ b/plotly/graph_objects/icicle/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/icicle/marker/_colorbar.py b/plotly/graph_objects/icicle/marker/_colorbar.py index 2af118e77f..b0af5e303b 100644 --- a/plotly/graph_objects/icicle/marker/_colorbar.py +++ b/plotly/graph_objects/icicle/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.icicle.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.icicle.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.icicle.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/icicle/marker/_line.py b/plotly/graph_objects/icicle/marker/_line.py index fab67d3ff0..652a7b9192 100644 --- a/plotly/graph_objects/icicle/marker/_line.py +++ b/plotly/graph_objects/icicle/marker/_line.py @@ -17,12 +17,13 @@ def color(self): the `paper_bgcolor` value. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/icicle/marker/_pattern.py b/plotly/graph_objects/icicle/marker/_pattern.py index 8346d26e5c..8b9a32d153 100644 --- a/plotly/graph_objects/icicle/marker/_pattern.py +++ b/plotly/graph_objects/icicle/marker/_pattern.py @@ -34,12 +34,13 @@ def bgcolor(self): background. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -78,12 +79,13 @@ def fgcolor(self): white to increase contrast with the `bgcolor`. The 'fgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py b/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py index 9e92994f00..3b8eb73f25 100644 --- a/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/icicle/marker/colorbar/_title.py b/plotly/graph_objects/icicle/marker/colorbar/_title.py index 1dd31431f0..7f5d52a7a8 100644 --- a/plotly/graph_objects/icicle/marker/colorbar/_title.py +++ b/plotly/graph_objects/icicle/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.icicle.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.icicle.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/icicle/marker/colorbar/title/_font.py b/plotly/graph_objects/icicle/marker/colorbar/title/_font.py index 43fe1d5d65..ffd31a179a 100644 --- a/plotly/graph_objects/icicle/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/icicle/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/icicle/pathbar/_textfont.py b/plotly/graph_objects/icicle/pathbar/_textfont.py index a5b365f1f1..de0510160a 100644 --- a/plotly/graph_objects/icicle/pathbar/_textfont.py +++ b/plotly/graph_objects/icicle/pathbar/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/image/_hoverlabel.py b/plotly/graph_objects/image/_hoverlabel.py index 6e9d35e9a6..00477e28a0 100644 --- a/plotly/graph_objects/image/_hoverlabel.py +++ b/plotly/graph_objects/image/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.image.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.image.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/image/_legendgrouptitle.py b/plotly/graph_objects/image/_legendgrouptitle.py index 9056619f31..7b13ab373c 100644 --- a/plotly/graph_objects/image/_legendgrouptitle.py +++ b/plotly/graph_objects/image/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.image.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.image.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/image/hoverlabel/_font.py b/plotly/graph_objects/image/hoverlabel/_font.py index f627f6c382..8e5e2411a5 100644 --- a/plotly/graph_objects/image/hoverlabel/_font.py +++ b/plotly/graph_objects/image/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/image/legendgrouptitle/_font.py b/plotly/graph_objects/image/legendgrouptitle/_font.py index 08b63a68ed..4384df4ad2 100644 --- a/plotly/graph_objects/image/legendgrouptitle/_font.py +++ b/plotly/graph_objects/image/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/indicator/_delta.py b/plotly/graph_objects/indicator/_delta.py index 568a553d73..7ce3208b19 100644 --- a/plotly/graph_objects/indicator/_delta.py +++ b/plotly/graph_objects/indicator/_delta.py @@ -25,9 +25,9 @@ def decreasing(self): """ The 'decreasing' property is an instance of Decreasing that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.delta.Decreasing` - - A dict of string/value properties that will be passed - to the Decreasing constructor + + - An instance of :class:`plotly.graph_objects.indicator.delta.Decreasing` + - A dict of string/value properties that will be passed to the Decreasing constructor Returns ------- @@ -46,9 +46,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.delta.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.indicator.delta.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- @@ -65,9 +65,9 @@ def increasing(self): """ The 'increasing' property is an instance of Increasing that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.delta.Increasing` - - A dict of string/value properties that will be passed - to the Increasing constructor + + - An instance of :class:`plotly.graph_objects.indicator.delta.Increasing` + - A dict of string/value properties that will be passed to the Increasing constructor Returns ------- diff --git a/plotly/graph_objects/indicator/_gauge.py b/plotly/graph_objects/indicator/_gauge.py index 548e6ea82b..9f175d6fb2 100644 --- a/plotly/graph_objects/indicator/_gauge.py +++ b/plotly/graph_objects/indicator/_gauge.py @@ -25,9 +25,9 @@ def axis(self): """ The 'axis' property is an instance of Axis that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.gauge.Axis` - - A dict of string/value properties that will be passed - to the Axis constructor + + - An instance of :class:`plotly.graph_objects.indicator.gauge.Axis` + - A dict of string/value properties that will be passed to the Axis constructor Returns ------- @@ -46,9 +46,9 @@ def bar(self): The 'bar' property is an instance of Bar that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.gauge.Bar` - - A dict of string/value properties that will be passed - to the Bar constructor + + - An instance of :class:`plotly.graph_objects.indicator.gauge.Bar` + - A dict of string/value properties that will be passed to the Bar constructor Returns ------- @@ -66,11 +66,12 @@ def bgcolor(self): Sets the gauge background color. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the color of the border enclosing the gauge. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -173,9 +175,9 @@ def stepdefaults(self): The 'stepdefaults' property is an instance of Step that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.gauge.Step` - - A dict of string/value properties that will be passed - to the Step constructor + + - An instance of :class:`plotly.graph_objects.indicator.gauge.Step` + - A dict of string/value properties that will be passed to the Step constructor Returns ------- @@ -192,9 +194,9 @@ def threshold(self): """ The 'threshold' property is an instance of Threshold that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.gauge.Threshold` - - A dict of string/value properties that will be passed - to the Threshold constructor + + - An instance of :class:`plotly.graph_objects.indicator.gauge.Threshold` + - A dict of string/value properties that will be passed to the Threshold constructor Returns ------- diff --git a/plotly/graph_objects/indicator/_legendgrouptitle.py b/plotly/graph_objects/indicator/_legendgrouptitle.py index 7489dda038..185ffffcbb 100644 --- a/plotly/graph_objects/indicator/_legendgrouptitle.py +++ b/plotly/graph_objects/indicator/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.indicator.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/indicator/_number.py b/plotly/graph_objects/indicator/_number.py index 85dbca5d9f..7699fcd656 100644 --- a/plotly/graph_objects/indicator/_number.py +++ b/plotly/graph_objects/indicator/_number.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.number.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.indicator.number.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/indicator/_title.py b/plotly/graph_objects/indicator/_title.py index 16014f2a95..9da3c4914c 100644 --- a/plotly/graph_objects/indicator/_title.py +++ b/plotly/graph_objects/indicator/_title.py @@ -40,9 +40,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.indicator.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/indicator/delta/_decreasing.py b/plotly/graph_objects/indicator/delta/_decreasing.py index 22a8335b4b..e2524ea56e 100644 --- a/plotly/graph_objects/indicator/delta/_decreasing.py +++ b/plotly/graph_objects/indicator/delta/_decreasing.py @@ -16,11 +16,12 @@ def color(self): Sets the color for increasing value. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/indicator/delta/_font.py b/plotly/graph_objects/indicator/delta/_font.py index ebf5ea7878..34edf4ea13 100644 --- a/plotly/graph_objects/indicator/delta/_font.py +++ b/plotly/graph_objects/indicator/delta/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/indicator/delta/_increasing.py b/plotly/graph_objects/indicator/delta/_increasing.py index 7ef9f0f4f0..3fdc6b67d2 100644 --- a/plotly/graph_objects/indicator/delta/_increasing.py +++ b/plotly/graph_objects/indicator/delta/_increasing.py @@ -16,11 +16,12 @@ def color(self): Sets the color for increasing value. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/_axis.py b/plotly/graph_objects/indicator/gauge/_axis.py index c32f9769a2..4dde5c2ecc 100644 --- a/plotly/graph_objects/indicator/gauge/_axis.py +++ b/plotly/graph_objects/indicator/gauge/_axis.py @@ -354,11 +354,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -377,9 +378,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.gauge.axis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.indicator.gauge.axis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -450,9 +451,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.gauge.axis.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.indicator.gauge.axis.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/_bar.py b/plotly/graph_objects/indicator/gauge/_bar.py index eef23860d1..f94a6ae06f 100644 --- a/plotly/graph_objects/indicator/gauge/_bar.py +++ b/plotly/graph_objects/indicator/gauge/_bar.py @@ -16,11 +16,12 @@ def color(self): Sets the background color of the arc. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -37,9 +38,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.gauge.bar.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.indicator.gauge.bar.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/_step.py b/plotly/graph_objects/indicator/gauge/_step.py index 8f18592071..5d2ea54be4 100644 --- a/plotly/graph_objects/indicator/gauge/_step.py +++ b/plotly/graph_objects/indicator/gauge/_step.py @@ -16,11 +16,12 @@ def color(self): Sets the background color of the arc. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -37,9 +38,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.gauge.step.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.indicator.gauge.step.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/_threshold.py b/plotly/graph_objects/indicator/gauge/_threshold.py index fab701816e..bec36fc3f3 100644 --- a/plotly/graph_objects/indicator/gauge/_threshold.py +++ b/plotly/graph_objects/indicator/gauge/_threshold.py @@ -15,9 +15,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.indicator.gauge.threshold.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.indicator.gauge.threshold.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/axis/_tickfont.py b/plotly/graph_objects/indicator/gauge/axis/_tickfont.py index 96c0b7ac69..a75a0d00ac 100644 --- a/plotly/graph_objects/indicator/gauge/axis/_tickfont.py +++ b/plotly/graph_objects/indicator/gauge/axis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/bar/_line.py b/plotly/graph_objects/indicator/gauge/bar/_line.py index 62bec2f28f..ddadb38fd2 100644 --- a/plotly/graph_objects/indicator/gauge/bar/_line.py +++ b/plotly/graph_objects/indicator/gauge/bar/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the color of the line enclosing each sector. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/step/_line.py b/plotly/graph_objects/indicator/gauge/step/_line.py index 454d9ea5ec..0639fcd82b 100644 --- a/plotly/graph_objects/indicator/gauge/step/_line.py +++ b/plotly/graph_objects/indicator/gauge/step/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the color of the line enclosing each sector. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/indicator/gauge/threshold/_line.py b/plotly/graph_objects/indicator/gauge/threshold/_line.py index baeadde833..75d21fe656 100644 --- a/plotly/graph_objects/indicator/gauge/threshold/_line.py +++ b/plotly/graph_objects/indicator/gauge/threshold/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the color of the threshold line. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/indicator/legendgrouptitle/_font.py b/plotly/graph_objects/indicator/legendgrouptitle/_font.py index 4fdab2538e..03c65434e4 100644 --- a/plotly/graph_objects/indicator/legendgrouptitle/_font.py +++ b/plotly/graph_objects/indicator/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/indicator/number/_font.py b/plotly/graph_objects/indicator/number/_font.py index d979a25de5..2eea4311f2 100644 --- a/plotly/graph_objects/indicator/number/_font.py +++ b/plotly/graph_objects/indicator/number/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/indicator/title/_font.py b/plotly/graph_objects/indicator/title/_font.py index 0160a7336e..6a72b4795c 100644 --- a/plotly/graph_objects/indicator/title/_font.py +++ b/plotly/graph_objects/indicator/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/isosurface/_caps.py b/plotly/graph_objects/isosurface/_caps.py index fb5b7b50f8..2839de8429 100644 --- a/plotly/graph_objects/isosurface/_caps.py +++ b/plotly/graph_objects/isosurface/_caps.py @@ -15,9 +15,9 @@ def x(self): """ The 'x' property is an instance of X that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.caps.X` - - A dict of string/value properties that will be passed - to the X constructor + + - An instance of :class:`plotly.graph_objects.isosurface.caps.X` + - A dict of string/value properties that will be passed to the X constructor Returns ------- @@ -34,9 +34,9 @@ def y(self): """ The 'y' property is an instance of Y that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.caps.Y` - - A dict of string/value properties that will be passed - to the Y constructor + + - An instance of :class:`plotly.graph_objects.isosurface.caps.Y` + - A dict of string/value properties that will be passed to the Y constructor Returns ------- @@ -53,9 +53,9 @@ def z(self): """ The 'z' property is an instance of Z that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.caps.Z` - - A dict of string/value properties that will be passed - to the Z constructor + + - An instance of :class:`plotly.graph_objects.isosurface.caps.Z` + - A dict of string/value properties that will be passed to the Z constructor Returns ------- diff --git a/plotly/graph_objects/isosurface/_colorbar.py b/plotly/graph_objects/isosurface/_colorbar.py index 46a405d041..44e6320879 100644 --- a/plotly/graph_objects/isosurface/_colorbar.py +++ b/plotly/graph_objects/isosurface/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.isosurface.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -653,9 +657,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.isosurface.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -950,9 +954,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.isosurface.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/isosurface/_contour.py b/plotly/graph_objects/isosurface/_contour.py index 4c656a3928..dfbfb2b84e 100644 --- a/plotly/graph_objects/isosurface/_contour.py +++ b/plotly/graph_objects/isosurface/_contour.py @@ -16,11 +16,12 @@ def color(self): Sets the color of the contour lines. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/isosurface/_hoverlabel.py b/plotly/graph_objects/isosurface/_hoverlabel.py index e95c505f25..5ae4ac6aa4 100644 --- a/plotly/graph_objects/isosurface/_hoverlabel.py +++ b/plotly/graph_objects/isosurface/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.isosurface.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/isosurface/_legendgrouptitle.py b/plotly/graph_objects/isosurface/_legendgrouptitle.py index c2dc4a7bda..d08bba1f28 100644 --- a/plotly/graph_objects/isosurface/_legendgrouptitle.py +++ b/plotly/graph_objects/isosurface/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.isosurface.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/isosurface/_slices.py b/plotly/graph_objects/isosurface/_slices.py index 7f9dc90527..0e290011a6 100644 --- a/plotly/graph_objects/isosurface/_slices.py +++ b/plotly/graph_objects/isosurface/_slices.py @@ -15,9 +15,9 @@ def x(self): """ The 'x' property is an instance of X that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.slices.X` - - A dict of string/value properties that will be passed - to the X constructor + + - An instance of :class:`plotly.graph_objects.isosurface.slices.X` + - A dict of string/value properties that will be passed to the X constructor Returns ------- @@ -34,9 +34,9 @@ def y(self): """ The 'y' property is an instance of Y that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.slices.Y` - - A dict of string/value properties that will be passed - to the Y constructor + + - An instance of :class:`plotly.graph_objects.isosurface.slices.Y` + - A dict of string/value properties that will be passed to the Y constructor Returns ------- @@ -53,9 +53,9 @@ def z(self): """ The 'z' property is an instance of Z that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.slices.Z` - - A dict of string/value properties that will be passed - to the Z constructor + + - An instance of :class:`plotly.graph_objects.isosurface.slices.Z` + - A dict of string/value properties that will be passed to the Z constructor Returns ------- diff --git a/plotly/graph_objects/isosurface/colorbar/_tickfont.py b/plotly/graph_objects/isosurface/colorbar/_tickfont.py index 0e2d109013..45e3455d83 100644 --- a/plotly/graph_objects/isosurface/colorbar/_tickfont.py +++ b/plotly/graph_objects/isosurface/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/isosurface/colorbar/_title.py b/plotly/graph_objects/isosurface/colorbar/_title.py index e01c039558..db2ab4a4b7 100644 --- a/plotly/graph_objects/isosurface/colorbar/_title.py +++ b/plotly/graph_objects/isosurface/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.isosurface.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.isosurface.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/isosurface/colorbar/title/_font.py b/plotly/graph_objects/isosurface/colorbar/title/_font.py index e85850fbdf..83ef43853b 100644 --- a/plotly/graph_objects/isosurface/colorbar/title/_font.py +++ b/plotly/graph_objects/isosurface/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/isosurface/hoverlabel/_font.py b/plotly/graph_objects/isosurface/hoverlabel/_font.py index 52510ebcc0..80847d34b9 100644 --- a/plotly/graph_objects/isosurface/hoverlabel/_font.py +++ b/plotly/graph_objects/isosurface/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/isosurface/legendgrouptitle/_font.py b/plotly/graph_objects/isosurface/legendgrouptitle/_font.py index 5aa32f915e..c82fa2ed57 100644 --- a/plotly/graph_objects/isosurface/legendgrouptitle/_font.py +++ b/plotly/graph_objects/isosurface/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/_activeselection.py b/plotly/graph_objects/layout/_activeselection.py index 39db42253d..a855258585 100644 --- a/plotly/graph_objects/layout/_activeselection.py +++ b/plotly/graph_objects/layout/_activeselection.py @@ -16,11 +16,12 @@ def fillcolor(self): Sets the color filling the active selection' interior. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/_activeshape.py b/plotly/graph_objects/layout/_activeshape.py index c46f2e76d1..72b072d64b 100644 --- a/plotly/graph_objects/layout/_activeshape.py +++ b/plotly/graph_objects/layout/_activeshape.py @@ -16,11 +16,12 @@ def fillcolor(self): Sets the color filling the active shape' interior. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/_annotation.py b/plotly/graph_objects/layout/_annotation.py index 657aa65d7a..a26996e1a3 100644 --- a/plotly/graph_objects/layout/_annotation.py +++ b/plotly/graph_objects/layout/_annotation.py @@ -84,11 +84,12 @@ def arrowcolor(self): Sets the color of the annotation arrow. The 'arrowcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -318,11 +319,12 @@ def bgcolor(self): Sets the background color of the annotation. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -340,11 +342,12 @@ def bordercolor(self): Sets the color of the border enclosing the annotation `text`. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -458,9 +461,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.annotation.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.annotation.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- @@ -497,9 +500,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.annotation.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.layout.annotation.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- diff --git a/plotly/graph_objects/layout/_coloraxis.py b/plotly/graph_objects/layout/_coloraxis.py index f543ca66c0..8f48f081a2 100644 --- a/plotly/graph_objects/layout/_coloraxis.py +++ b/plotly/graph_objects/layout/_coloraxis.py @@ -133,9 +133,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.coloraxis.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.layout.coloraxis.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- diff --git a/plotly/graph_objects/layout/_font.py b/plotly/graph_objects/layout/_font.py index 5fabeda19d..7dc3ccecf6 100644 --- a/plotly/graph_objects/layout/_font.py +++ b/plotly/graph_objects/layout/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/_geo.py b/plotly/graph_objects/layout/_geo.py index be04abd971..cd4db694e6 100644 --- a/plotly/graph_objects/layout/_geo.py +++ b/plotly/graph_objects/layout/_geo.py @@ -49,11 +49,12 @@ def bgcolor(self): Set the background color of the map The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -70,9 +71,9 @@ def center(self): """ The 'center' property is an instance of Center that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.geo.Center` - - A dict of string/value properties that will be passed - to the Center constructor + + - An instance of :class:`plotly.graph_objects.layout.geo.Center` + - A dict of string/value properties that will be passed to the Center constructor Returns ------- @@ -90,11 +91,12 @@ def coastlinecolor(self): Sets the coastline color. The 'coastlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -131,11 +133,12 @@ def countrycolor(self): Sets line color of the country boundaries. The 'countrycolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -171,9 +174,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.geo.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.layout.geo.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -224,11 +227,12 @@ def framecolor(self): Sets the color the frame. The 'framecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -265,11 +269,12 @@ def lakecolor(self): Sets the color of the lakes. The 'lakecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -287,11 +292,12 @@ def landcolor(self): Sets the land mass color. The 'landcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -308,9 +314,9 @@ def lataxis(self): """ The 'lataxis' property is an instance of Lataxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.geo.Lataxis` - - A dict of string/value properties that will be passed - to the Lataxis constructor + + - An instance of :class:`plotly.graph_objects.layout.geo.Lataxis` + - A dict of string/value properties that will be passed to the Lataxis constructor Returns ------- @@ -327,9 +333,9 @@ def lonaxis(self): """ The 'lonaxis' property is an instance of Lonaxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.geo.Lonaxis` - - A dict of string/value properties that will be passed - to the Lonaxis constructor + + - An instance of :class:`plotly.graph_objects.layout.geo.Lonaxis` + - A dict of string/value properties that will be passed to the Lonaxis constructor Returns ------- @@ -347,11 +353,12 @@ def oceancolor(self): Sets the ocean color The 'oceancolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -368,9 +375,9 @@ def projection(self): """ The 'projection' property is an instance of Projection that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.geo.Projection` - - A dict of string/value properties that will be passed - to the Projection constructor + + - An instance of :class:`plotly.graph_objects.layout.geo.Projection` + - A dict of string/value properties that will be passed to the Projection constructor Returns ------- @@ -411,11 +418,12 @@ def rivercolor(self): Sets color of the rivers. The 'rivercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -619,11 +627,12 @@ def subunitcolor(self): Sets the color of the subunits boundaries. The 'subunitcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/_grid.py b/plotly/graph_objects/layout/_grid.py index f6c1835566..d6d363f59a 100644 --- a/plotly/graph_objects/layout/_grid.py +++ b/plotly/graph_objects/layout/_grid.py @@ -52,9 +52,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.grid.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.layout.grid.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- diff --git a/plotly/graph_objects/layout/_hoverlabel.py b/plotly/graph_objects/layout/_hoverlabel.py index 7ff85eaea1..83d60ac8ee 100644 --- a/plotly/graph_objects/layout/_hoverlabel.py +++ b/plotly/graph_objects/layout/_hoverlabel.py @@ -46,11 +46,12 @@ def bgcolor(self): Sets the background color of all hover labels on graph The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -68,11 +69,12 @@ def bordercolor(self): Sets the border color of all hover labels on graph. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -92,9 +94,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- @@ -114,9 +116,9 @@ def grouptitlefont(self): The 'grouptitlefont' property is an instance of Grouptitlefont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.hoverlabel.Grouptitlefont` - - A dict of string/value properties that will be passed - to the Grouptitlefont constructor + + - An instance of :class:`plotly.graph_objects.layout.hoverlabel.Grouptitlefont` + - A dict of string/value properties that will be passed to the Grouptitlefont constructor Returns ------- diff --git a/plotly/graph_objects/layout/_legend.py b/plotly/graph_objects/layout/_legend.py index c4eb4eaa63..1c06f09c51 100644 --- a/plotly/graph_objects/layout/_legend.py +++ b/plotly/graph_objects/layout/_legend.py @@ -45,11 +45,12 @@ def bgcolor(self): `layout.paper_bgcolor`. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -67,11 +68,12 @@ def bordercolor(self): Sets the color of the border enclosing the legend. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -151,9 +153,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.legend.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.legend.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- @@ -198,9 +200,9 @@ def grouptitlefont(self): The 'grouptitlefont' property is an instance of Grouptitlefont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.legend.Grouptitlefont` - - A dict of string/value properties that will be passed - to the Grouptitlefont constructor + + - An instance of :class:`plotly.graph_objects.layout.legend.Grouptitlefont` + - A dict of string/value properties that will be passed to the Grouptitlefont constructor Returns ------- @@ -375,9 +377,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.legend.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.layout.legend.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/layout/_map.py b/plotly/graph_objects/layout/_map.py index 61cc7f9f16..df8305b617 100644 --- a/plotly/graph_objects/layout/_map.py +++ b/plotly/graph_objects/layout/_map.py @@ -46,9 +46,9 @@ def bounds(self): """ The 'bounds' property is an instance of Bounds that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.map.Bounds` - - A dict of string/value properties that will be passed - to the Bounds constructor + + - An instance of :class:`plotly.graph_objects.layout.map.Bounds` + - A dict of string/value properties that will be passed to the Bounds constructor Returns ------- @@ -65,9 +65,9 @@ def center(self): """ The 'center' property is an instance of Center that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.map.Center` - - A dict of string/value properties that will be passed - to the Center constructor + + - An instance of :class:`plotly.graph_objects.layout.map.Center` + - A dict of string/value properties that will be passed to the Center constructor Returns ------- @@ -84,9 +84,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.map.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.layout.map.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -126,9 +126,9 @@ def layerdefaults(self): The 'layerdefaults' property is an instance of Layer that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.map.Layer` - - A dict of string/value properties that will be passed - to the Layer constructor + + - An instance of :class:`plotly.graph_objects.layout.map.Layer` + - A dict of string/value properties that will be passed to the Layer constructor Returns ------- diff --git a/plotly/graph_objects/layout/_mapbox.py b/plotly/graph_objects/layout/_mapbox.py index b421e232ca..04deeb74f8 100644 --- a/plotly/graph_objects/layout/_mapbox.py +++ b/plotly/graph_objects/layout/_mapbox.py @@ -71,9 +71,9 @@ def bounds(self): """ The 'bounds' property is an instance of Bounds that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.mapbox.Bounds` - - A dict of string/value properties that will be passed - to the Bounds constructor + + - An instance of :class:`plotly.graph_objects.layout.mapbox.Bounds` + - A dict of string/value properties that will be passed to the Bounds constructor Returns ------- @@ -90,9 +90,9 @@ def center(self): """ The 'center' property is an instance of Center that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.mapbox.Center` - - A dict of string/value properties that will be passed - to the Center constructor + + - An instance of :class:`plotly.graph_objects.layout.mapbox.Center` + - A dict of string/value properties that will be passed to the Center constructor Returns ------- @@ -109,9 +109,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.mapbox.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.layout.mapbox.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -151,9 +151,9 @@ def layerdefaults(self): The 'layerdefaults' property is an instance of Layer that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.mapbox.Layer` - - A dict of string/value properties that will be passed - to the Layer constructor + + - An instance of :class:`plotly.graph_objects.layout.mapbox.Layer` + - A dict of string/value properties that will be passed to the Layer constructor Returns ------- diff --git a/plotly/graph_objects/layout/_modebar.py b/plotly/graph_objects/layout/_modebar.py index 6121d9bec0..922f898f7f 100644 --- a/plotly/graph_objects/layout/_modebar.py +++ b/plotly/graph_objects/layout/_modebar.py @@ -27,11 +27,12 @@ def activecolor(self): modebar. The 'activecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -96,11 +97,12 @@ def bgcolor(self): Sets the background color of the modebar. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -118,11 +120,12 @@ def color(self): Sets the color of the icons in the modebar. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/_newselection.py b/plotly/graph_objects/layout/_newselection.py index e6ca26cdde..76e5ad9d39 100644 --- a/plotly/graph_objects/layout/_newselection.py +++ b/plotly/graph_objects/layout/_newselection.py @@ -15,9 +15,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.newselection.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.layout.newselection.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/layout/_newshape.py b/plotly/graph_objects/layout/_newshape.py index 116e320b0f..723c7a6d9d 100644 --- a/plotly/graph_objects/layout/_newshape.py +++ b/plotly/graph_objects/layout/_newshape.py @@ -61,11 +61,12 @@ def fillcolor(self): a new shape could be started over. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -105,9 +106,9 @@ def label(self): """ The 'label' property is an instance of Label that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.newshape.Label` - - A dict of string/value properties that will be passed - to the Label constructor + + - An instance of :class:`plotly.graph_objects.layout.newshape.Label` + - A dict of string/value properties that will be passed to the Label constructor Returns ------- @@ -193,9 +194,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.newshape.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.layout.newshape.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -255,9 +256,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.newshape.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.layout.newshape.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/layout/_polar.py b/plotly/graph_objects/layout/_polar.py index 503c4aac15..2a3eafd16d 100644 --- a/plotly/graph_objects/layout/_polar.py +++ b/plotly/graph_objects/layout/_polar.py @@ -26,9 +26,9 @@ def angularaxis(self): """ The 'angularaxis' property is an instance of AngularAxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.polar.AngularAxis` - - A dict of string/value properties that will be passed - to the AngularAxis constructor + + - An instance of :class:`plotly.graph_objects.layout.polar.AngularAxis` + - A dict of string/value properties that will be passed to the AngularAxis constructor Returns ------- @@ -92,11 +92,12 @@ def bgcolor(self): Set the background color of the subplot The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -113,9 +114,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.polar.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.layout.polar.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -178,9 +179,9 @@ def radialaxis(self): """ The 'radialaxis' property is an instance of RadialAxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.polar.RadialAxis` - - A dict of string/value properties that will be passed - to the RadialAxis constructor + + - An instance of :class:`plotly.graph_objects.layout.polar.RadialAxis` + - A dict of string/value properties that will be passed to the RadialAxis constructor Returns ------- diff --git a/plotly/graph_objects/layout/_scene.py b/plotly/graph_objects/layout/_scene.py index c1eca6277c..d3435b3d4f 100644 --- a/plotly/graph_objects/layout/_scene.py +++ b/plotly/graph_objects/layout/_scene.py @@ -53,9 +53,9 @@ def annotationdefaults(self): The 'annotationdefaults' property is an instance of Annotation that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.Annotation` - - A dict of string/value properties that will be passed - to the Annotation constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.Annotation` + - A dict of string/value properties that will be passed to the Annotation constructor Returns ------- @@ -102,9 +102,9 @@ def aspectratio(self): The 'aspectratio' property is an instance of Aspectratio that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.Aspectratio` - - A dict of string/value properties that will be passed - to the Aspectratio constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.Aspectratio` + - A dict of string/value properties that will be passed to the Aspectratio constructor Returns ------- @@ -120,11 +120,12 @@ def aspectratio(self, val): def bgcolor(self): """ The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -141,9 +142,9 @@ def camera(self): """ The 'camera' property is an instance of Camera that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.Camera` - - A dict of string/value properties that will be passed - to the Camera constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.Camera` + - A dict of string/value properties that will be passed to the Camera constructor Returns ------- @@ -160,9 +161,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -239,9 +240,9 @@ def xaxis(self): """ The 'xaxis' property is an instance of XAxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.XAxis` - - A dict of string/value properties that will be passed - to the XAxis constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.XAxis` + - A dict of string/value properties that will be passed to the XAxis constructor Returns ------- @@ -258,9 +259,9 @@ def yaxis(self): """ The 'yaxis' property is an instance of YAxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.YAxis` - - A dict of string/value properties that will be passed - to the YAxis constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.YAxis` + - A dict of string/value properties that will be passed to the YAxis constructor Returns ------- @@ -277,9 +278,9 @@ def zaxis(self): """ The 'zaxis' property is an instance of ZAxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.ZAxis` - - A dict of string/value properties that will be passed - to the ZAxis constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.ZAxis` + - A dict of string/value properties that will be passed to the ZAxis constructor Returns ------- diff --git a/plotly/graph_objects/layout/_selection.py b/plotly/graph_objects/layout/_selection.py index 70d19ee4f6..bb7cbba056 100644 --- a/plotly/graph_objects/layout/_selection.py +++ b/plotly/graph_objects/layout/_selection.py @@ -28,9 +28,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.selection.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.layout.selection.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/layout/_shape.py b/plotly/graph_objects/layout/_shape.py index fa8f18814f..286e6b347b 100644 --- a/plotly/graph_objects/layout/_shape.py +++ b/plotly/graph_objects/layout/_shape.py @@ -70,11 +70,12 @@ def fillcolor(self): closed shapes. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -115,9 +116,9 @@ def label(self): """ The 'label' property is an instance of Label that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.shape.Label` - - A dict of string/value properties that will be passed - to the Label constructor + + - An instance of :class:`plotly.graph_objects.layout.shape.Label` + - A dict of string/value properties that will be passed to the Label constructor Returns ------- @@ -203,9 +204,9 @@ def legendgrouptitle(self): """ The 'legendgrouptitle' property is an instance of Legendgrouptitle that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.shape.Legendgrouptitle` - - A dict of string/value properties that will be passed - to the Legendgrouptitle constructor + + - An instance of :class:`plotly.graph_objects.layout.shape.Legendgrouptitle` + - A dict of string/value properties that will be passed to the Legendgrouptitle constructor Returns ------- @@ -268,9 +269,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.shape.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.layout.shape.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/layout/_slider.py b/plotly/graph_objects/layout/_slider.py index be19c080eb..4dbb5cfdc1 100644 --- a/plotly/graph_objects/layout/_slider.py +++ b/plotly/graph_objects/layout/_slider.py @@ -61,11 +61,12 @@ def activebgcolor(self): Sets the background color of the slider grip while dragging. The 'activebgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -83,11 +84,12 @@ def bgcolor(self): Sets the background color of the slider. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -105,11 +107,12 @@ def bordercolor(self): Sets the color of the border enclosing the slider. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -145,9 +148,9 @@ def currentvalue(self): """ The 'currentvalue' property is an instance of Currentvalue that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.slider.Currentvalue` - - A dict of string/value properties that will be passed - to the Currentvalue constructor + + - An instance of :class:`plotly.graph_objects.layout.slider.Currentvalue` + - A dict of string/value properties that will be passed to the Currentvalue constructor Returns ------- @@ -166,9 +169,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.slider.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.slider.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- @@ -276,9 +279,9 @@ def pad(self): The 'pad' property is an instance of Pad that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.slider.Pad` - - A dict of string/value properties that will be passed - to the Pad constructor + + - An instance of :class:`plotly.graph_objects.layout.slider.Pad` + - A dict of string/value properties that will be passed to the Pad constructor Returns ------- @@ -318,9 +321,9 @@ def stepdefaults(self): The 'stepdefaults' property is an instance of Step that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.slider.Step` - - A dict of string/value properties that will be passed - to the Step constructor + + - An instance of :class:`plotly.graph_objects.layout.slider.Step` + - A dict of string/value properties that will be passed to the Step constructor Returns ------- @@ -366,11 +369,12 @@ def tickcolor(self): Sets the color of the border enclosing the slider. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -425,9 +429,9 @@ def transition(self): """ The 'transition' property is an instance of Transition that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.slider.Transition` - - A dict of string/value properties that will be passed - to the Transition constructor + + - An instance of :class:`plotly.graph_objects.layout.slider.Transition` + - A dict of string/value properties that will be passed to the Transition constructor Returns ------- diff --git a/plotly/graph_objects/layout/_smith.py b/plotly/graph_objects/layout/_smith.py index 81b45b0669..d7aded07eb 100644 --- a/plotly/graph_objects/layout/_smith.py +++ b/plotly/graph_objects/layout/_smith.py @@ -16,11 +16,12 @@ def bgcolor(self): Set the background color of the subplot The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -37,9 +38,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.smith.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.layout.smith.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- @@ -56,9 +57,9 @@ def imaginaryaxis(self): """ The 'imaginaryaxis' property is an instance of Imaginaryaxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.smith.Imaginaryaxis` - - A dict of string/value properties that will be passed - to the Imaginaryaxis constructor + + - An instance of :class:`plotly.graph_objects.layout.smith.Imaginaryaxis` + - A dict of string/value properties that will be passed to the Imaginaryaxis constructor Returns ------- @@ -75,9 +76,9 @@ def realaxis(self): """ The 'realaxis' property is an instance of Realaxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.smith.Realaxis` - - A dict of string/value properties that will be passed - to the Realaxis constructor + + - An instance of :class:`plotly.graph_objects.layout.smith.Realaxis` + - A dict of string/value properties that will be passed to the Realaxis constructor Returns ------- diff --git a/plotly/graph_objects/layout/_template.py b/plotly/graph_objects/layout/_template.py index 2e73113152..65de767edb 100644 --- a/plotly/graph_objects/layout/_template.py +++ b/plotly/graph_objects/layout/_template.py @@ -16,9 +16,9 @@ def data(self): """ The 'data' property is an instance of Data that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.template.Data` - - A dict of string/value properties that will be passed - to the Data constructor + + - An instance of :class:`plotly.graph_objects.layout.template.Data` + - A dict of string/value properties that will be passed to the Data constructor Returns ------- @@ -35,9 +35,9 @@ def layout(self): """ The 'layout' property is an instance of Layout that may be specified as: - - An instance of :class:`plotly.graph_objects.Layout` - - A dict of string/value properties that will be passed - to the Layout constructor + + - An instance of :class:`plotly.graph_objects.Layout` + - A dict of string/value properties that will be passed to the Layout constructor Returns ------- diff --git a/plotly/graph_objects/layout/_ternary.py b/plotly/graph_objects/layout/_ternary.py index edada24ea8..74b10cc6aa 100644 --- a/plotly/graph_objects/layout/_ternary.py +++ b/plotly/graph_objects/layout/_ternary.py @@ -15,9 +15,9 @@ def aaxis(self): """ The 'aaxis' property is an instance of Aaxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.Aaxis` - - A dict of string/value properties that will be passed - to the Aaxis constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.Aaxis` + - A dict of string/value properties that will be passed to the Aaxis constructor Returns ------- @@ -34,9 +34,9 @@ def baxis(self): """ The 'baxis' property is an instance of Baxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.Baxis` - - A dict of string/value properties that will be passed - to the Baxis constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.Baxis` + - A dict of string/value properties that will be passed to the Baxis constructor Returns ------- @@ -54,11 +54,12 @@ def bgcolor(self): Set the background color of the subplot The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -75,9 +76,9 @@ def caxis(self): """ The 'caxis' property is an instance of Caxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.Caxis` - - A dict of string/value properties that will be passed - to the Caxis constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.Caxis` + - A dict of string/value properties that will be passed to the Caxis constructor Returns ------- @@ -94,9 +95,9 @@ def domain(self): """ The 'domain' property is an instance of Domain that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.Domain` - - A dict of string/value properties that will be passed - to the Domain constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.Domain` + - A dict of string/value properties that will be passed to the Domain constructor Returns ------- diff --git a/plotly/graph_objects/layout/_title.py b/plotly/graph_objects/layout/_title.py index 0e03a11fde..4c2388420d 100644 --- a/plotly/graph_objects/layout/_title.py +++ b/plotly/graph_objects/layout/_title.py @@ -57,9 +57,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- @@ -83,9 +83,9 @@ def pad(self): The 'pad' property is an instance of Pad that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.title.Pad` - - A dict of string/value properties that will be passed - to the Pad constructor + + - An instance of :class:`plotly.graph_objects.layout.title.Pad` + - A dict of string/value properties that will be passed to the Pad constructor Returns ------- @@ -102,9 +102,9 @@ def subtitle(self): """ The 'subtitle' property is an instance of Subtitle that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.title.Subtitle` - - A dict of string/value properties that will be passed - to the Subtitle constructor + + - An instance of :class:`plotly.graph_objects.layout.title.Subtitle` + - A dict of string/value properties that will be passed to the Subtitle constructor Returns ------- diff --git a/plotly/graph_objects/layout/_updatemenu.py b/plotly/graph_objects/layout/_updatemenu.py index 79e207920d..7b86e85215 100644 --- a/plotly/graph_objects/layout/_updatemenu.py +++ b/plotly/graph_objects/layout/_updatemenu.py @@ -55,11 +55,12 @@ def bgcolor(self): Sets the background color of the update menu buttons. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -77,11 +78,12 @@ def bordercolor(self): Sets the color of the border enclosing the update menu. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -141,9 +143,9 @@ def buttondefaults(self): The 'buttondefaults' property is an instance of Button that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.updatemenu.Button` - - A dict of string/value properties that will be passed - to the Button constructor + + - An instance of :class:`plotly.graph_objects.layout.updatemenu.Button` + - A dict of string/value properties that will be passed to the Button constructor Returns ------- @@ -186,9 +188,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.updatemenu.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.updatemenu.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- @@ -234,9 +236,9 @@ def pad(self): The 'pad' property is an instance of Pad that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.updatemenu.Pad` - - A dict of string/value properties that will be passed - to the Pad constructor + + - An instance of :class:`plotly.graph_objects.layout.updatemenu.Pad` + - A dict of string/value properties that will be passed to the Pad constructor Returns ------- diff --git a/plotly/graph_objects/layout/_xaxis.py b/plotly/graph_objects/layout/_xaxis.py index af8a1e58fa..0078a7edfb 100644 --- a/plotly/graph_objects/layout/_xaxis.py +++ b/plotly/graph_objects/layout/_xaxis.py @@ -191,9 +191,9 @@ def autorangeoptions(self): """ The 'autorangeoptions' property is an instance of Autorangeoptions that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.xaxis.Autorangeoptions` - - A dict of string/value properties that will be passed - to the Autorangeoptions constructor + + - An instance of :class:`plotly.graph_objects.layout.xaxis.Autorangeoptions` + - A dict of string/value properties that will be passed to the Autorangeoptions constructor Returns ------- @@ -371,11 +371,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -445,11 +446,12 @@ def dividercolor(self): "multicategory" axes. The 'dividercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -594,11 +596,12 @@ def gridcolor(self): Sets the color of the grid lines. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -770,11 +773,12 @@ def linecolor(self): Sets the axis line color. The 'linecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -892,9 +896,9 @@ def minor(self): """ The 'minor' property is an instance of Minor that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.xaxis.Minor` - - A dict of string/value properties that will be passed - to the Minor constructor + + - An instance of :class:`plotly.graph_objects.layout.xaxis.Minor` + - A dict of string/value properties that will be passed to the Minor constructor Returns ------- @@ -1066,9 +1070,9 @@ def rangebreakdefaults(self): The 'rangebreakdefaults' property is an instance of Rangebreak that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.xaxis.Rangebreak` - - A dict of string/value properties that will be passed - to the Rangebreak constructor + + - An instance of :class:`plotly.graph_objects.layout.xaxis.Rangebreak` + - A dict of string/value properties that will be passed to the Rangebreak constructor Returns ------- @@ -1110,9 +1114,9 @@ def rangeselector(self): """ The 'rangeselector' property is an instance of Rangeselector that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.xaxis.Rangeselector` - - A dict of string/value properties that will be passed - to the Rangeselector constructor + + - An instance of :class:`plotly.graph_objects.layout.xaxis.Rangeselector` + - A dict of string/value properties that will be passed to the Rangeselector constructor Returns ------- @@ -1129,9 +1133,9 @@ def rangeslider(self): """ The 'rangeslider' property is an instance of Rangeslider that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.xaxis.Rangeslider` - - A dict of string/value properties that will be passed - to the Rangeslider constructor + + - An instance of :class:`plotly.graph_objects.layout.xaxis.Rangeslider` + - A dict of string/value properties that will be passed to the Rangeslider constructor Returns ------- @@ -1424,11 +1428,12 @@ def spikecolor(self): Sets the spike color. If undefined, will use the series color The 'spikecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -1586,11 +1591,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -1609,9 +1615,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.xaxis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.layout.xaxis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -1682,9 +1688,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.xaxis.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.layout.xaxis.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -2128,9 +2134,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.xaxis.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.layout.xaxis.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- @@ -2230,11 +2236,12 @@ def zerolinecolor(self): Sets the line color of the zero line. The 'zerolinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/_yaxis.py b/plotly/graph_objects/layout/_yaxis.py index 90feb4bbb1..25f4dc1660 100644 --- a/plotly/graph_objects/layout/_yaxis.py +++ b/plotly/graph_objects/layout/_yaxis.py @@ -191,9 +191,9 @@ def autorangeoptions(self): """ The 'autorangeoptions' property is an instance of Autorangeoptions that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.yaxis.Autorangeoptions` - - A dict of string/value properties that will be passed - to the Autorangeoptions constructor + + - An instance of :class:`plotly.graph_objects.layout.yaxis.Autorangeoptions` + - A dict of string/value properties that will be passed to the Autorangeoptions constructor Returns ------- @@ -393,11 +393,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -467,11 +468,12 @@ def dividercolor(self): "multicategory" axes. The 'dividercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -616,11 +618,12 @@ def gridcolor(self): Sets the color of the grid lines. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -792,11 +795,12 @@ def linecolor(self): Sets the axis line color. The 'linecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -914,9 +918,9 @@ def minor(self): """ The 'minor' property is an instance of Minor that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.yaxis.Minor` - - A dict of string/value properties that will be passed - to the Minor constructor + + - An instance of :class:`plotly.graph_objects.layout.yaxis.Minor` + - A dict of string/value properties that will be passed to the Minor constructor Returns ------- @@ -1088,9 +1092,9 @@ def rangebreakdefaults(self): The 'rangebreakdefaults' property is an instance of Rangebreak that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.yaxis.Rangebreak` - - A dict of string/value properties that will be passed - to the Rangebreak constructor + + - An instance of :class:`plotly.graph_objects.layout.yaxis.Rangebreak` + - A dict of string/value properties that will be passed to the Rangebreak constructor Returns ------- @@ -1433,11 +1437,12 @@ def spikecolor(self): Sets the spike color. If undefined, will use the series color The 'spikecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -1595,11 +1600,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -1618,9 +1624,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.yaxis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.layout.yaxis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -1691,9 +1697,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.yaxis.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.layout.yaxis.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -2137,9 +2143,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.yaxis.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.layout.yaxis.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- @@ -2239,11 +2245,12 @@ def zerolinecolor(self): Sets the line color of the zero line. The 'zerolinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/annotation/_font.py b/plotly/graph_objects/layout/annotation/_font.py index 623e5dde29..219d7b333b 100644 --- a/plotly/graph_objects/layout/annotation/_font.py +++ b/plotly/graph_objects/layout/annotation/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/annotation/_hoverlabel.py b/plotly/graph_objects/layout/annotation/_hoverlabel.py index ef09334248..a070e4b728 100644 --- a/plotly/graph_objects/layout/annotation/_hoverlabel.py +++ b/plotly/graph_objects/layout/annotation/_hoverlabel.py @@ -18,11 +18,12 @@ def bgcolor(self): transparent. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -42,11 +43,12 @@ def bordercolor(self): `hoverlabel.bgcolor`. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -66,9 +68,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.annotation.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.annotation.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/annotation/hoverlabel/_font.py b/plotly/graph_objects/layout/annotation/hoverlabel/_font.py index 5a09194954..faf2a334cd 100644 --- a/plotly/graph_objects/layout/annotation/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/annotation/hoverlabel/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/coloraxis/_colorbar.py b/plotly/graph_objects/layout/coloraxis/_colorbar.py index 6f2df106e9..c82ec93267 100644 --- a/plotly/graph_objects/layout/coloraxis/_colorbar.py +++ b/plotly/graph_objects/layout/coloraxis/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.coloraxis.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.layout.coloraxis.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.coloraxis.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.layout.coloraxis.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.coloraxis.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.layout.coloraxis.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py b/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py index 7fc330a613..ebc9951a3d 100644 --- a/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py +++ b/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/coloraxis/colorbar/_title.py b/plotly/graph_objects/layout/coloraxis/colorbar/_title.py index 6701bd3a58..9f1b76e5e1 100644 --- a/plotly/graph_objects/layout/coloraxis/colorbar/_title.py +++ b/plotly/graph_objects/layout/coloraxis/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.coloraxis.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.coloraxis.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py b/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py index aa8b9568ed..b76ae3b078 100644 --- a/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py +++ b/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/geo/_lataxis.py b/plotly/graph_objects/layout/geo/_lataxis.py index ad389f8d63..0260f64eaf 100644 --- a/plotly/graph_objects/layout/geo/_lataxis.py +++ b/plotly/graph_objects/layout/geo/_lataxis.py @@ -43,11 +43,12 @@ def gridcolor(self): Sets the graticule's stroke color. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/geo/_lonaxis.py b/plotly/graph_objects/layout/geo/_lonaxis.py index e8f86a4258..c7a13d1abb 100644 --- a/plotly/graph_objects/layout/geo/_lonaxis.py +++ b/plotly/graph_objects/layout/geo/_lonaxis.py @@ -43,11 +43,12 @@ def gridcolor(self): Sets the graticule's stroke color. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/geo/_projection.py b/plotly/graph_objects/layout/geo/_projection.py index 84896b7cee..0c7de5d249 100644 --- a/plotly/graph_objects/layout/geo/_projection.py +++ b/plotly/graph_objects/layout/geo/_projection.py @@ -64,9 +64,9 @@ def rotation(self): """ The 'rotation' property is an instance of Rotation that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.geo.projection.Rotation` - - A dict of string/value properties that will be passed - to the Rotation constructor + + - An instance of :class:`plotly.graph_objects.layout.geo.projection.Rotation` + - A dict of string/value properties that will be passed to the Rotation constructor Returns ------- diff --git a/plotly/graph_objects/layout/hoverlabel/_font.py b/plotly/graph_objects/layout/hoverlabel/_font.py index 56a0b4c007..2f6db8da26 100644 --- a/plotly/graph_objects/layout/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/hoverlabel/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py b/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py index ef93bf9329..98937f25eb 100644 --- a/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py +++ b/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py @@ -24,11 +24,12 @@ class Grouptitlefont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/legend/_font.py b/plotly/graph_objects/layout/legend/_font.py index d4e5ca05a0..d990039c4c 100644 --- a/plotly/graph_objects/layout/legend/_font.py +++ b/plotly/graph_objects/layout/legend/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/legend/_grouptitlefont.py b/plotly/graph_objects/layout/legend/_grouptitlefont.py index a559ae21c7..6fd74c5c70 100644 --- a/plotly/graph_objects/layout/legend/_grouptitlefont.py +++ b/plotly/graph_objects/layout/legend/_grouptitlefont.py @@ -24,11 +24,12 @@ class Grouptitlefont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/legend/_title.py b/plotly/graph_objects/layout/legend/_title.py index 0843243f00..6989e95346 100644 --- a/plotly/graph_objects/layout/legend/_title.py +++ b/plotly/graph_objects/layout/legend/_title.py @@ -18,9 +18,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.legend.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.legend.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/legend/title/_font.py b/plotly/graph_objects/layout/legend/title/_font.py index 5320a2e254..cfc5a6636c 100644 --- a/plotly/graph_objects/layout/legend/title/_font.py +++ b/plotly/graph_objects/layout/legend/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/map/_layer.py b/plotly/graph_objects/layout/map/_layer.py index 0130b21ae2..070ffaa3fa 100644 --- a/plotly/graph_objects/layout/map/_layer.py +++ b/plotly/graph_objects/layout/map/_layer.py @@ -57,9 +57,9 @@ def circle(self): """ The 'circle' property is an instance of Circle that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.map.layer.Circle` - - A dict of string/value properties that will be passed - to the Circle constructor + + - An instance of :class:`plotly.graph_objects.layout.map.layer.Circle` + - A dict of string/value properties that will be passed to the Circle constructor Returns ------- @@ -83,11 +83,12 @@ def color(self): (map.layer.paint.icon-color) The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -124,9 +125,9 @@ def fill(self): """ The 'fill' property is an instance of Fill that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.map.layer.Fill` - - A dict of string/value properties that will be passed - to the Fill constructor + + - An instance of :class:`plotly.graph_objects.layout.map.layer.Fill` + - A dict of string/value properties that will be passed to the Fill constructor Returns ------- @@ -143,9 +144,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.map.layer.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.layout.map.layer.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -342,9 +343,9 @@ def symbol(self): """ The 'symbol' property is an instance of Symbol that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.map.layer.Symbol` - - A dict of string/value properties that will be passed - to the Symbol constructor + + - An instance of :class:`plotly.graph_objects.layout.map.layer.Symbol` + - A dict of string/value properties that will be passed to the Symbol constructor Returns ------- diff --git a/plotly/graph_objects/layout/map/layer/_fill.py b/plotly/graph_objects/layout/map/layer/_fill.py index 5325bc812c..5d3ffaa2da 100644 --- a/plotly/graph_objects/layout/map/layer/_fill.py +++ b/plotly/graph_objects/layout/map/layer/_fill.py @@ -17,11 +17,12 @@ def outlinecolor(self): color). Has an effect only when `type` is set to "fill". The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/map/layer/_symbol.py b/plotly/graph_objects/layout/map/layer/_symbol.py index 3492d4e31e..e31a7fa229 100644 --- a/plotly/graph_objects/layout/map/layer/_symbol.py +++ b/plotly/graph_objects/layout/map/layer/_symbol.py @@ -108,9 +108,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.map.layer.symbol.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.layout.map.layer.symbol.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/layout/map/layer/symbol/_textfont.py b/plotly/graph_objects/layout/map/layer/symbol/_textfont.py index d8082dfd6d..f2d96e6302 100644 --- a/plotly/graph_objects/layout/map/layer/symbol/_textfont.py +++ b/plotly/graph_objects/layout/map/layer/symbol/_textfont.py @@ -14,11 +14,12 @@ class Textfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/_layer.py b/plotly/graph_objects/layout/mapbox/_layer.py index cc9caa5483..7d44ccd2c2 100644 --- a/plotly/graph_objects/layout/mapbox/_layer.py +++ b/plotly/graph_objects/layout/mapbox/_layer.py @@ -57,9 +57,9 @@ def circle(self): """ The 'circle' property is an instance of Circle that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.mapbox.layer.Circle` - - A dict of string/value properties that will be passed - to the Circle constructor + + - An instance of :class:`plotly.graph_objects.layout.mapbox.layer.Circle` + - A dict of string/value properties that will be passed to the Circle constructor Returns ------- @@ -83,11 +83,12 @@ def color(self): (mapbox.layer.paint.icon-color) The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -124,9 +125,9 @@ def fill(self): """ The 'fill' property is an instance of Fill that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.mapbox.layer.Fill` - - A dict of string/value properties that will be passed - to the Fill constructor + + - An instance of :class:`plotly.graph_objects.layout.mapbox.layer.Fill` + - A dict of string/value properties that will be passed to the Fill constructor Returns ------- @@ -143,9 +144,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.mapbox.layer.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.layout.mapbox.layer.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -344,9 +345,9 @@ def symbol(self): """ The 'symbol' property is an instance of Symbol that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.mapbox.layer.Symbol` - - A dict of string/value properties that will be passed - to the Symbol constructor + + - An instance of :class:`plotly.graph_objects.layout.mapbox.layer.Symbol` + - A dict of string/value properties that will be passed to the Symbol constructor Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/layer/_fill.py b/plotly/graph_objects/layout/mapbox/layer/_fill.py index f8d081e498..5cd55504cf 100644 --- a/plotly/graph_objects/layout/mapbox/layer/_fill.py +++ b/plotly/graph_objects/layout/mapbox/layer/_fill.py @@ -17,11 +17,12 @@ def outlinecolor(self): color). Has an effect only when `type` is set to "fill". The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/layer/_symbol.py b/plotly/graph_objects/layout/mapbox/layer/_symbol.py index a74e3e5e2f..fddbae7846 100644 --- a/plotly/graph_objects/layout/mapbox/layer/_symbol.py +++ b/plotly/graph_objects/layout/mapbox/layer/_symbol.py @@ -108,9 +108,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.mapbox.layer.symbol.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.layout.mapbox.layer.symbol.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py b/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py index 83d43f2351..72e1f611d6 100644 --- a/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py +++ b/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py @@ -14,11 +14,12 @@ class Textfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/newselection/_line.py b/plotly/graph_objects/layout/newselection/_line.py index d4dcd504ab..80eff9510f 100644 --- a/plotly/graph_objects/layout/newselection/_line.py +++ b/plotly/graph_objects/layout/newselection/_line.py @@ -17,11 +17,12 @@ def color(self): to increase contrast with background color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/newshape/_label.py b/plotly/graph_objects/layout/newshape/_label.py index c0947e14f4..8245e514b9 100644 --- a/plotly/graph_objects/layout/newshape/_label.py +++ b/plotly/graph_objects/layout/newshape/_label.py @@ -26,9 +26,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.newshape.label.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.newshape.label.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/newshape/_legendgrouptitle.py b/plotly/graph_objects/layout/newshape/_legendgrouptitle.py index 75f1120e50..439d152828 100644 --- a/plotly/graph_objects/layout/newshape/_legendgrouptitle.py +++ b/plotly/graph_objects/layout/newshape/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.newshape.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.newshape.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/newshape/_line.py b/plotly/graph_objects/layout/newshape/_line.py index 6c4f9fe20e..dee7e7d491 100644 --- a/plotly/graph_objects/layout/newshape/_line.py +++ b/plotly/graph_objects/layout/newshape/_line.py @@ -17,11 +17,12 @@ def color(self): to increase contrast with background color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/newshape/label/_font.py b/plotly/graph_objects/layout/newshape/label/_font.py index 0a63c6bea5..c3e190e4d7 100644 --- a/plotly/graph_objects/layout/newshape/label/_font.py +++ b/plotly/graph_objects/layout/newshape/label/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py b/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py index 7039ae37db..a09b48d793 100644 --- a/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py +++ b/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/polar/_angularaxis.py b/plotly/graph_objects/layout/polar/_angularaxis.py index af246e5609..642114b281 100644 --- a/plotly/graph_objects/layout/polar/_angularaxis.py +++ b/plotly/graph_objects/layout/polar/_angularaxis.py @@ -173,11 +173,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -277,11 +278,12 @@ def gridcolor(self): Sets the color of the grid lines. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -427,11 +429,12 @@ def linecolor(self): Sets the axis line color. The 'linecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -766,11 +769,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -789,9 +793,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.polar.angularaxis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.layout.polar.angularaxis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -861,9 +865,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.polar.angularaxis.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.layout.polar.angularaxis.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- diff --git a/plotly/graph_objects/layout/polar/_radialaxis.py b/plotly/graph_objects/layout/polar/_radialaxis.py index b527ea93c3..fb7bd85c0d 100644 --- a/plotly/graph_objects/layout/polar/_radialaxis.py +++ b/plotly/graph_objects/layout/polar/_radialaxis.py @@ -127,9 +127,9 @@ def autorangeoptions(self): """ The 'autorangeoptions' property is an instance of Autorangeoptions that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.polar.radialaxis.Autorangeoptions` - - A dict of string/value properties that will be passed - to the Autorangeoptions constructor + + - An instance of :class:`plotly.graph_objects.layout.polar.radialaxis.Autorangeoptions` + - A dict of string/value properties that will be passed to the Autorangeoptions constructor Returns ------- @@ -307,11 +307,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -390,11 +391,12 @@ def gridcolor(self): Sets the color of the grid lines. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -540,11 +542,12 @@ def linecolor(self): Sets the axis line color. The 'linecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -925,11 +928,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -948,9 +952,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.polar.radialaxis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.layout.polar.radialaxis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -1020,9 +1024,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.polar.radialaxis.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.layout.polar.radialaxis.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -1268,9 +1272,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.polar.radialaxis.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.layout.polar.radialaxis.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py b/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py index c6c0878c94..d7da833c2c 100644 --- a/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py +++ b/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py b/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py index cf543c8c13..a7bcc0ad12 100644 --- a/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py +++ b/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/polar/radialaxis/_title.py b/plotly/graph_objects/layout/polar/radialaxis/_title.py index 25d35038c5..e581a744da 100644 --- a/plotly/graph_objects/layout/polar/radialaxis/_title.py +++ b/plotly/graph_objects/layout/polar/radialaxis/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.polar.radialaxis.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.polar.radialaxis.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/polar/radialaxis/title/_font.py b/plotly/graph_objects/layout/polar/radialaxis/title/_font.py index 038af99255..61200cccfe 100644 --- a/plotly/graph_objects/layout/polar/radialaxis/title/_font.py +++ b/plotly/graph_objects/layout/polar/radialaxis/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/scene/_annotation.py b/plotly/graph_objects/layout/scene/_annotation.py index 301c560d20..755b97527c 100644 --- a/plotly/graph_objects/layout/scene/_annotation.py +++ b/plotly/graph_objects/layout/scene/_annotation.py @@ -78,11 +78,12 @@ def arrowcolor(self): Sets the color of the annotation arrow. The 'arrowcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -220,11 +221,12 @@ def bgcolor(self): Sets the background color of the annotation. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -242,11 +244,12 @@ def bordercolor(self): Sets the color of the border enclosing the annotation `text`. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -328,9 +331,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.annotation.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.annotation.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- @@ -367,9 +370,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.annotation.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.annotation.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- diff --git a/plotly/graph_objects/layout/scene/_camera.py b/plotly/graph_objects/layout/scene/_camera.py index c9bb4b3764..e6e4e2ff7b 100644 --- a/plotly/graph_objects/layout/scene/_camera.py +++ b/plotly/graph_objects/layout/scene/_camera.py @@ -19,9 +19,9 @@ def center(self): The 'center' property is an instance of Center that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.camera.Center` - - A dict of string/value properties that will be passed - to the Center constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.camera.Center` + - A dict of string/value properties that will be passed to the Center constructor Returns ------- @@ -42,9 +42,9 @@ def eye(self): The 'eye' property is an instance of Eye that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.camera.Eye` - - A dict of string/value properties that will be passed - to the Eye constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.camera.Eye` + - A dict of string/value properties that will be passed to the Eye constructor Returns ------- @@ -61,9 +61,9 @@ def projection(self): """ The 'projection' property is an instance of Projection that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.camera.Projection` - - A dict of string/value properties that will be passed - to the Projection constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.camera.Projection` + - A dict of string/value properties that will be passed to the Projection constructor Returns ------- @@ -85,9 +85,9 @@ def up(self): The 'up' property is an instance of Up that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.camera.Up` - - A dict of string/value properties that will be passed - to the Up constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.camera.Up` + - A dict of string/value properties that will be passed to the Up constructor Returns ------- diff --git a/plotly/graph_objects/layout/scene/_xaxis.py b/plotly/graph_objects/layout/scene/_xaxis.py index d176db1654..ee31733b84 100644 --- a/plotly/graph_objects/layout/scene/_xaxis.py +++ b/plotly/graph_objects/layout/scene/_xaxis.py @@ -107,9 +107,9 @@ def autorangeoptions(self): """ The 'autorangeoptions' property is an instance of Autorangeoptions that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.xaxis.Autorangeoptions` - - A dict of string/value properties that will be passed - to the Autorangeoptions constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.xaxis.Autorangeoptions` + - A dict of string/value properties that will be passed to the Autorangeoptions constructor Returns ------- @@ -151,11 +151,12 @@ def backgroundcolor(self): Sets the background color of this axis' wall. The 'backgroundcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -283,11 +284,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -366,11 +368,12 @@ def gridcolor(self): Sets the color of the grid lines. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -462,11 +465,12 @@ def linecolor(self): Sets the axis line color. The 'linecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -859,11 +863,12 @@ def spikecolor(self): Sets the color of the spikes. The 'spikecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -966,11 +971,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -989,9 +995,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.xaxis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.xaxis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -1062,9 +1068,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.xaxis.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.xaxis.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -1286,9 +1292,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.xaxis.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.xaxis.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- @@ -1369,11 +1375,12 @@ def zerolinecolor(self): Sets the line color of the zero line. The 'zerolinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/scene/_yaxis.py b/plotly/graph_objects/layout/scene/_yaxis.py index 586ddd43c9..72d342f215 100644 --- a/plotly/graph_objects/layout/scene/_yaxis.py +++ b/plotly/graph_objects/layout/scene/_yaxis.py @@ -107,9 +107,9 @@ def autorangeoptions(self): """ The 'autorangeoptions' property is an instance of Autorangeoptions that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.yaxis.Autorangeoptions` - - A dict of string/value properties that will be passed - to the Autorangeoptions constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.yaxis.Autorangeoptions` + - A dict of string/value properties that will be passed to the Autorangeoptions constructor Returns ------- @@ -151,11 +151,12 @@ def backgroundcolor(self): Sets the background color of this axis' wall. The 'backgroundcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -283,11 +284,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -366,11 +368,12 @@ def gridcolor(self): Sets the color of the grid lines. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -462,11 +465,12 @@ def linecolor(self): Sets the axis line color. The 'linecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -859,11 +863,12 @@ def spikecolor(self): Sets the color of the spikes. The 'spikecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -966,11 +971,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -989,9 +995,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.yaxis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.yaxis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -1062,9 +1068,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.yaxis.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.yaxis.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -1286,9 +1292,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.yaxis.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.yaxis.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- @@ -1369,11 +1375,12 @@ def zerolinecolor(self): Sets the line color of the zero line. The 'zerolinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/scene/_zaxis.py b/plotly/graph_objects/layout/scene/_zaxis.py index 97503ee207..536e8e5370 100644 --- a/plotly/graph_objects/layout/scene/_zaxis.py +++ b/plotly/graph_objects/layout/scene/_zaxis.py @@ -107,9 +107,9 @@ def autorangeoptions(self): """ The 'autorangeoptions' property is an instance of Autorangeoptions that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.zaxis.Autorangeoptions` - - A dict of string/value properties that will be passed - to the Autorangeoptions constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.zaxis.Autorangeoptions` + - A dict of string/value properties that will be passed to the Autorangeoptions constructor Returns ------- @@ -151,11 +151,12 @@ def backgroundcolor(self): Sets the background color of this axis' wall. The 'backgroundcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -283,11 +284,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -366,11 +368,12 @@ def gridcolor(self): Sets the color of the grid lines. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -462,11 +465,12 @@ def linecolor(self): Sets the axis line color. The 'linecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -859,11 +863,12 @@ def spikecolor(self): Sets the color of the spikes. The 'spikecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -966,11 +971,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -989,9 +995,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.zaxis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.zaxis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -1062,9 +1068,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.zaxis.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.zaxis.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -1286,9 +1292,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.zaxis.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.zaxis.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- @@ -1369,11 +1375,12 @@ def zerolinecolor(self): Sets the line color of the zero line. The 'zerolinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/scene/annotation/_font.py b/plotly/graph_objects/layout/scene/annotation/_font.py index 8167b92445..67ad9db186 100644 --- a/plotly/graph_objects/layout/scene/annotation/_font.py +++ b/plotly/graph_objects/layout/scene/annotation/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/scene/annotation/_hoverlabel.py b/plotly/graph_objects/layout/scene/annotation/_hoverlabel.py index 37ea67576f..13f0f99a5f 100644 --- a/plotly/graph_objects/layout/scene/annotation/_hoverlabel.py +++ b/plotly/graph_objects/layout/scene/annotation/_hoverlabel.py @@ -18,11 +18,12 @@ def bgcolor(self): transparent. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -42,11 +43,12 @@ def bordercolor(self): `hoverlabel.bgcolor`. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -66,9 +68,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.annotation.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.annotation.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py b/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py index 5a33456736..218b765149 100644 --- a/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/scene/xaxis/_tickfont.py b/plotly/graph_objects/layout/scene/xaxis/_tickfont.py index 20e4de02c3..3f1a5a7c03 100644 --- a/plotly/graph_objects/layout/scene/xaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/xaxis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/scene/xaxis/_title.py b/plotly/graph_objects/layout/scene/xaxis/_title.py index 45676f6047..82b3367c09 100644 --- a/plotly/graph_objects/layout/scene/xaxis/_title.py +++ b/plotly/graph_objects/layout/scene/xaxis/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.xaxis.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.xaxis.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/scene/xaxis/title/_font.py b/plotly/graph_objects/layout/scene/xaxis/title/_font.py index 514c4e2c97..5e762f2d70 100644 --- a/plotly/graph_objects/layout/scene/xaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/xaxis/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/scene/yaxis/_tickfont.py b/plotly/graph_objects/layout/scene/yaxis/_tickfont.py index c7d561a1e7..2aaa28d5f2 100644 --- a/plotly/graph_objects/layout/scene/yaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/yaxis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/scene/yaxis/_title.py b/plotly/graph_objects/layout/scene/yaxis/_title.py index 2974c8cd69..2a88d6ea44 100644 --- a/plotly/graph_objects/layout/scene/yaxis/_title.py +++ b/plotly/graph_objects/layout/scene/yaxis/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.yaxis.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.yaxis.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/scene/yaxis/title/_font.py b/plotly/graph_objects/layout/scene/yaxis/title/_font.py index 566dbfaa4c..675a94198e 100644 --- a/plotly/graph_objects/layout/scene/yaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/yaxis/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/scene/zaxis/_tickfont.py b/plotly/graph_objects/layout/scene/zaxis/_tickfont.py index b051ab8435..459c81e9c6 100644 --- a/plotly/graph_objects/layout/scene/zaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/zaxis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/scene/zaxis/_title.py b/plotly/graph_objects/layout/scene/zaxis/_title.py index 6f8d49782a..09d6e24cd3 100644 --- a/plotly/graph_objects/layout/scene/zaxis/_title.py +++ b/plotly/graph_objects/layout/scene/zaxis/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.scene.zaxis.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.scene.zaxis.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/scene/zaxis/title/_font.py b/plotly/graph_objects/layout/scene/zaxis/title/_font.py index 522956b409..97ada26370 100644 --- a/plotly/graph_objects/layout/scene/zaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/zaxis/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/selection/_line.py b/plotly/graph_objects/layout/selection/_line.py index 58bb036720..dec4cbe21b 100644 --- a/plotly/graph_objects/layout/selection/_line.py +++ b/plotly/graph_objects/layout/selection/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/shape/_label.py b/plotly/graph_objects/layout/shape/_label.py index 10e9da1ea1..a045c5a83c 100644 --- a/plotly/graph_objects/layout/shape/_label.py +++ b/plotly/graph_objects/layout/shape/_label.py @@ -26,9 +26,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.shape.label.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.shape.label.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/shape/_legendgrouptitle.py b/plotly/graph_objects/layout/shape/_legendgrouptitle.py index 7959e477df..1ab7686ae0 100644 --- a/plotly/graph_objects/layout/shape/_legendgrouptitle.py +++ b/plotly/graph_objects/layout/shape/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.shape.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.shape.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/shape/_line.py b/plotly/graph_objects/layout/shape/_line.py index bdc4caf8bc..9c33b4861c 100644 --- a/plotly/graph_objects/layout/shape/_line.py +++ b/plotly/graph_objects/layout/shape/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/shape/label/_font.py b/plotly/graph_objects/layout/shape/label/_font.py index 853caea07b..3fbd50257a 100644 --- a/plotly/graph_objects/layout/shape/label/_font.py +++ b/plotly/graph_objects/layout/shape/label/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py b/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py index a20a7646ba..73840c2f57 100644 --- a/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py +++ b/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/slider/_currentvalue.py b/plotly/graph_objects/layout/slider/_currentvalue.py index 5d63b1f50a..28360f440f 100644 --- a/plotly/graph_objects/layout/slider/_currentvalue.py +++ b/plotly/graph_objects/layout/slider/_currentvalue.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.slider.currentvalue.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.slider.currentvalue.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/slider/_font.py b/plotly/graph_objects/layout/slider/_font.py index 0632d058f9..6d5fff56bb 100644 --- a/plotly/graph_objects/layout/slider/_font.py +++ b/plotly/graph_objects/layout/slider/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/slider/currentvalue/_font.py b/plotly/graph_objects/layout/slider/currentvalue/_font.py index 1bc7663adc..221a5cfcb1 100644 --- a/plotly/graph_objects/layout/slider/currentvalue/_font.py +++ b/plotly/graph_objects/layout/slider/currentvalue/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/smith/_imaginaryaxis.py b/plotly/graph_objects/layout/smith/_imaginaryaxis.py index e92fb82220..b57d89b9ef 100644 --- a/plotly/graph_objects/layout/smith/_imaginaryaxis.py +++ b/plotly/graph_objects/layout/smith/_imaginaryaxis.py @@ -45,11 +45,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -67,11 +68,12 @@ def gridcolor(self): Sets the color of the grid lines. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -217,11 +219,12 @@ def linecolor(self): Sets the axis line color. The 'linecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -358,11 +361,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -381,9 +385,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.smith.imaginaryaxis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.layout.smith.imaginaryaxis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- diff --git a/plotly/graph_objects/layout/smith/_realaxis.py b/plotly/graph_objects/layout/smith/_realaxis.py index 86e5378d4a..613b57605c 100644 --- a/plotly/graph_objects/layout/smith/_realaxis.py +++ b/plotly/graph_objects/layout/smith/_realaxis.py @@ -47,11 +47,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -69,11 +70,12 @@ def gridcolor(self): Sets the color of the grid lines. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -219,11 +221,12 @@ def linecolor(self): Sets the axis line color. The 'linecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -404,11 +407,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -427,9 +431,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.smith.realaxis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.layout.smith.realaxis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- diff --git a/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py b/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py index 3cef757957..396355ce65 100644 --- a/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py +++ b/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/smith/realaxis/_tickfont.py b/plotly/graph_objects/layout/smith/realaxis/_tickfont.py index b8e308ce9a..40c509f4a4 100644 --- a/plotly/graph_objects/layout/smith/realaxis/_tickfont.py +++ b/plotly/graph_objects/layout/smith/realaxis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/ternary/_aaxis.py b/plotly/graph_objects/layout/ternary/_aaxis.py index 6cbd10a40f..6aa33d35ad 100644 --- a/plotly/graph_objects/layout/ternary/_aaxis.py +++ b/plotly/graph_objects/layout/ternary/_aaxis.py @@ -61,11 +61,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -144,11 +145,12 @@ def gridcolor(self): Sets the color of the grid lines. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -294,11 +296,12 @@ def linecolor(self): Sets the axis line color. The 'linecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -587,11 +590,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -610,9 +614,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.aaxis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.aaxis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -683,9 +687,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.aaxis.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.aaxis.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -931,9 +935,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.aaxis.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.aaxis.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/layout/ternary/_baxis.py b/plotly/graph_objects/layout/ternary/_baxis.py index f6c400929e..6ecd696025 100644 --- a/plotly/graph_objects/layout/ternary/_baxis.py +++ b/plotly/graph_objects/layout/ternary/_baxis.py @@ -61,11 +61,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -144,11 +145,12 @@ def gridcolor(self): Sets the color of the grid lines. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -294,11 +296,12 @@ def linecolor(self): Sets the axis line color. The 'linecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -587,11 +590,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -610,9 +614,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.baxis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.baxis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -683,9 +687,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.baxis.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.baxis.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -931,9 +935,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.baxis.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.baxis.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/layout/ternary/_caxis.py b/plotly/graph_objects/layout/ternary/_caxis.py index 13db7fb089..bc82183ae1 100644 --- a/plotly/graph_objects/layout/ternary/_caxis.py +++ b/plotly/graph_objects/layout/ternary/_caxis.py @@ -61,11 +61,12 @@ def color(self): pieces can override this. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -144,11 +145,12 @@ def gridcolor(self): Sets the color of the grid lines. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -294,11 +296,12 @@ def linecolor(self): Sets the axis line color. The 'linecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -587,11 +590,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -610,9 +614,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.caxis.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.caxis.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -683,9 +687,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.caxis.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.caxis.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -931,9 +935,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.caxis.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.caxis.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py b/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py index 1e74f4357b..9ba66c4178 100644 --- a/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/ternary/aaxis/_title.py b/plotly/graph_objects/layout/ternary/aaxis/_title.py index 941dee68c4..0708621828 100644 --- a/plotly/graph_objects/layout/ternary/aaxis/_title.py +++ b/plotly/graph_objects/layout/ternary/aaxis/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.aaxis.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.aaxis.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/ternary/aaxis/title/_font.py b/plotly/graph_objects/layout/ternary/aaxis/title/_font.py index 563b1c1588..e0409ac873 100644 --- a/plotly/graph_objects/layout/ternary/aaxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/aaxis/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/ternary/baxis/_tickfont.py b/plotly/graph_objects/layout/ternary/baxis/_tickfont.py index 9ccdc77575..e537172790 100644 --- a/plotly/graph_objects/layout/ternary/baxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/baxis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/ternary/baxis/_title.py b/plotly/graph_objects/layout/ternary/baxis/_title.py index 37e89fe3da..7b9d6cd380 100644 --- a/plotly/graph_objects/layout/ternary/baxis/_title.py +++ b/plotly/graph_objects/layout/ternary/baxis/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.baxis.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.baxis.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/ternary/baxis/title/_font.py b/plotly/graph_objects/layout/ternary/baxis/title/_font.py index c467b7cbc1..5305e66d4b 100644 --- a/plotly/graph_objects/layout/ternary/baxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/baxis/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/ternary/caxis/_tickfont.py b/plotly/graph_objects/layout/ternary/caxis/_tickfont.py index 137e45a74c..a3c76f125f 100644 --- a/plotly/graph_objects/layout/ternary/caxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/caxis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/ternary/caxis/_title.py b/plotly/graph_objects/layout/ternary/caxis/_title.py index 23dcd47322..29a669cf70 100644 --- a/plotly/graph_objects/layout/ternary/caxis/_title.py +++ b/plotly/graph_objects/layout/ternary/caxis/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.ternary.caxis.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.ternary.caxis.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/ternary/caxis/title/_font.py b/plotly/graph_objects/layout/ternary/caxis/title/_font.py index 8a104bae65..6e6d95cb50 100644 --- a/plotly/graph_objects/layout/ternary/caxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/caxis/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/title/_font.py b/plotly/graph_objects/layout/title/_font.py index c46490053a..fd48c7ef25 100644 --- a/plotly/graph_objects/layout/title/_font.py +++ b/plotly/graph_objects/layout/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/title/_subtitle.py b/plotly/graph_objects/layout/title/_subtitle.py index c59365885b..80b7e7ba8b 100644 --- a/plotly/graph_objects/layout/title/_subtitle.py +++ b/plotly/graph_objects/layout/title/_subtitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.title.subtitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.title.subtitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/title/subtitle/_font.py b/plotly/graph_objects/layout/title/subtitle/_font.py index d3c1d8e10c..6dc6295be1 100644 --- a/plotly/graph_objects/layout/title/subtitle/_font.py +++ b/plotly/graph_objects/layout/title/subtitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/updatemenu/_font.py b/plotly/graph_objects/layout/updatemenu/_font.py index 50fb072c32..4b381d090a 100644 --- a/plotly/graph_objects/layout/updatemenu/_font.py +++ b/plotly/graph_objects/layout/updatemenu/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_minor.py b/plotly/graph_objects/layout/xaxis/_minor.py index ccf1fb6579..5b3975ec6e 100644 --- a/plotly/graph_objects/layout/xaxis/_minor.py +++ b/plotly/graph_objects/layout/xaxis/_minor.py @@ -67,11 +67,12 @@ def gridcolor(self): Sets the color of the grid lines. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -202,11 +203,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_rangeselector.py b/plotly/graph_objects/layout/xaxis/_rangeselector.py index 5bd07ba7e7..5bbf91fd41 100644 --- a/plotly/graph_objects/layout/xaxis/_rangeselector.py +++ b/plotly/graph_objects/layout/xaxis/_rangeselector.py @@ -29,11 +29,12 @@ def activecolor(self): Sets the background color of the active range selector button. The 'activecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -51,11 +52,12 @@ def bgcolor(self): Sets the background color of the range selector buttons. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -73,11 +75,12 @@ def bordercolor(self): Sets the color of the border enclosing the range selector. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -141,9 +144,9 @@ def buttondefaults(self): The 'buttondefaults' property is an instance of Button that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.xaxis.rangeselector.Button` - - A dict of string/value properties that will be passed - to the Button constructor + + - An instance of :class:`plotly.graph_objects.layout.xaxis.rangeselector.Button` + - A dict of string/value properties that will be passed to the Button constructor Returns ------- @@ -162,9 +165,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.xaxis.rangeselector.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.xaxis.rangeselector.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_rangeslider.py b/plotly/graph_objects/layout/xaxis/_rangeslider.py index 25a374e0ac..71e10db9b7 100644 --- a/plotly/graph_objects/layout/xaxis/_rangeslider.py +++ b/plotly/graph_objects/layout/xaxis/_rangeslider.py @@ -45,11 +45,12 @@ def bgcolor(self): Sets the background color of the range slider. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -67,11 +68,12 @@ def bordercolor(self): Sets the border color of the range slider. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -176,9 +178,9 @@ def yaxis(self): """ The 'yaxis' property is an instance of YAxis that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.xaxis.rangeslider.YAxis` - - A dict of string/value properties that will be passed - to the YAxis constructor + + - An instance of :class:`plotly.graph_objects.layout.xaxis.rangeslider.YAxis` + - A dict of string/value properties that will be passed to the YAxis constructor Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_tickfont.py b/plotly/graph_objects/layout/xaxis/_tickfont.py index 6a4c30abcc..1a30298cda 100644 --- a/plotly/graph_objects/layout/xaxis/_tickfont.py +++ b/plotly/graph_objects/layout/xaxis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/_title.py b/plotly/graph_objects/layout/xaxis/_title.py index a95c1acf2b..fc9fe3059f 100644 --- a/plotly/graph_objects/layout/xaxis/_title.py +++ b/plotly/graph_objects/layout/xaxis/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.xaxis.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.xaxis.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/rangeselector/_font.py b/plotly/graph_objects/layout/xaxis/rangeselector/_font.py index 10a68ef7a4..109637caca 100644 --- a/plotly/graph_objects/layout/xaxis/rangeselector/_font.py +++ b/plotly/graph_objects/layout/xaxis/rangeselector/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/xaxis/title/_font.py b/plotly/graph_objects/layout/xaxis/title/_font.py index de47347705..770240706a 100644 --- a/plotly/graph_objects/layout/xaxis/title/_font.py +++ b/plotly/graph_objects/layout/xaxis/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/_minor.py b/plotly/graph_objects/layout/yaxis/_minor.py index f73510462a..091310f989 100644 --- a/plotly/graph_objects/layout/yaxis/_minor.py +++ b/plotly/graph_objects/layout/yaxis/_minor.py @@ -67,11 +67,12 @@ def gridcolor(self): Sets the color of the grid lines. The 'gridcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -202,11 +203,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/_tickfont.py b/plotly/graph_objects/layout/yaxis/_tickfont.py index a24912e79c..70b8824bb7 100644 --- a/plotly/graph_objects/layout/yaxis/_tickfont.py +++ b/plotly/graph_objects/layout/yaxis/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/_title.py b/plotly/graph_objects/layout/yaxis/_title.py index 2e1616b213..1c3bc70960 100644 --- a/plotly/graph_objects/layout/yaxis/_title.py +++ b/plotly/graph_objects/layout/yaxis/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.layout.yaxis.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.layout.yaxis.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/layout/yaxis/title/_font.py b/plotly/graph_objects/layout/yaxis/title/_font.py index 5c00c47536..bfbd3f4da5 100644 --- a/plotly/graph_objects/layout/yaxis/title/_font.py +++ b/plotly/graph_objects/layout/yaxis/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseLayoutHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/mesh3d/_colorbar.py b/plotly/graph_objects/mesh3d/_colorbar.py index 59a0376986..7e5e957042 100644 --- a/plotly/graph_objects/mesh3d/_colorbar.py +++ b/plotly/graph_objects/mesh3d/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.mesh3d.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.mesh3d.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.mesh3d.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.mesh3d.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.mesh3d.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.mesh3d.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/mesh3d/_contour.py b/plotly/graph_objects/mesh3d/_contour.py index ae95010da3..e3ab358f76 100644 --- a/plotly/graph_objects/mesh3d/_contour.py +++ b/plotly/graph_objects/mesh3d/_contour.py @@ -16,11 +16,12 @@ def color(self): Sets the color of the contour lines. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/mesh3d/_hoverlabel.py b/plotly/graph_objects/mesh3d/_hoverlabel.py index b6783059a7..fedf7f5fb1 100644 --- a/plotly/graph_objects/mesh3d/_hoverlabel.py +++ b/plotly/graph_objects/mesh3d/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.mesh3d.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.mesh3d.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/mesh3d/_legendgrouptitle.py b/plotly/graph_objects/mesh3d/_legendgrouptitle.py index 05509de216..6bc516546e 100644 --- a/plotly/graph_objects/mesh3d/_legendgrouptitle.py +++ b/plotly/graph_objects/mesh3d/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.mesh3d.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.mesh3d.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/mesh3d/colorbar/_tickfont.py b/plotly/graph_objects/mesh3d/colorbar/_tickfont.py index 6286daaf84..831a9b6dd2 100644 --- a/plotly/graph_objects/mesh3d/colorbar/_tickfont.py +++ b/plotly/graph_objects/mesh3d/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/mesh3d/colorbar/_title.py b/plotly/graph_objects/mesh3d/colorbar/_title.py index 7d9ce1abc1..0b7a6b0fbd 100644 --- a/plotly/graph_objects/mesh3d/colorbar/_title.py +++ b/plotly/graph_objects/mesh3d/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.mesh3d.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.mesh3d.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/mesh3d/colorbar/title/_font.py b/plotly/graph_objects/mesh3d/colorbar/title/_font.py index 6437ddc6f9..b49ef5cf49 100644 --- a/plotly/graph_objects/mesh3d/colorbar/title/_font.py +++ b/plotly/graph_objects/mesh3d/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/mesh3d/hoverlabel/_font.py b/plotly/graph_objects/mesh3d/hoverlabel/_font.py index 3da740b442..417127a622 100644 --- a/plotly/graph_objects/mesh3d/hoverlabel/_font.py +++ b/plotly/graph_objects/mesh3d/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py b/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py index ef79f51734..5962b2b407 100644 --- a/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/ohlc/_decreasing.py b/plotly/graph_objects/ohlc/_decreasing.py index c2b4db2021..d9c8699221 100644 --- a/plotly/graph_objects/ohlc/_decreasing.py +++ b/plotly/graph_objects/ohlc/_decreasing.py @@ -15,9 +15,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.ohlc.decreasing.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.ohlc.decreasing.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/ohlc/_hoverlabel.py b/plotly/graph_objects/ohlc/_hoverlabel.py index cb4cf5c261..59929bb12c 100644 --- a/plotly/graph_objects/ohlc/_hoverlabel.py +++ b/plotly/graph_objects/ohlc/_hoverlabel.py @@ -70,12 +70,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -111,12 +112,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -154,9 +156,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.ohlc.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.ohlc.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/ohlc/_increasing.py b/plotly/graph_objects/ohlc/_increasing.py index f334837aa0..8d426b32f1 100644 --- a/plotly/graph_objects/ohlc/_increasing.py +++ b/plotly/graph_objects/ohlc/_increasing.py @@ -15,9 +15,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.ohlc.increasing.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.ohlc.increasing.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/ohlc/_legendgrouptitle.py b/plotly/graph_objects/ohlc/_legendgrouptitle.py index 08d63da8c3..3c2c92602c 100644 --- a/plotly/graph_objects/ohlc/_legendgrouptitle.py +++ b/plotly/graph_objects/ohlc/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.ohlc.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.ohlc.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/ohlc/decreasing/_line.py b/plotly/graph_objects/ohlc/decreasing/_line.py index 1257d7b9dd..eb93b5e198 100644 --- a/plotly/graph_objects/ohlc/decreasing/_line.py +++ b/plotly/graph_objects/ohlc/decreasing/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/ohlc/hoverlabel/_font.py b/plotly/graph_objects/ohlc/hoverlabel/_font.py index 0bda019973..ffb3a8807a 100644 --- a/plotly/graph_objects/ohlc/hoverlabel/_font.py +++ b/plotly/graph_objects/ohlc/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/ohlc/increasing/_line.py b/plotly/graph_objects/ohlc/increasing/_line.py index f2e9be1cc7..f1aabacd7f 100644 --- a/plotly/graph_objects/ohlc/increasing/_line.py +++ b/plotly/graph_objects/ohlc/increasing/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/ohlc/legendgrouptitle/_font.py b/plotly/graph_objects/ohlc/legendgrouptitle/_font.py index 49a6ca59c4..5b10a3f255 100644 --- a/plotly/graph_objects/ohlc/legendgrouptitle/_font.py +++ b/plotly/graph_objects/ohlc/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/parcats/_labelfont.py b/plotly/graph_objects/parcats/_labelfont.py index a9152ba64e..3861a10c2d 100644 --- a/plotly/graph_objects/parcats/_labelfont.py +++ b/plotly/graph_objects/parcats/_labelfont.py @@ -24,11 +24,12 @@ class Labelfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/parcats/_legendgrouptitle.py b/plotly/graph_objects/parcats/_legendgrouptitle.py index 0dd11f8475..fe11c9b5c6 100644 --- a/plotly/graph_objects/parcats/_legendgrouptitle.py +++ b/plotly/graph_objects/parcats/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.parcats.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.parcats.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/parcats/_line.py b/plotly/graph_objects/parcats/_line.py index c9a1fe501d..8f966a2b58 100644 --- a/plotly/graph_objects/parcats/_line.py +++ b/plotly/graph_objects/parcats/_line.py @@ -147,14 +147,14 @@ def color(self): and `line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to parcats.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to parcats.line.colorscale + - A list or array of any of the above Returns ------- @@ -196,9 +196,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.parcats.line.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.parcats.line.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- diff --git a/plotly/graph_objects/parcats/_tickfont.py b/plotly/graph_objects/parcats/_tickfont.py index aa8c254463..e861dcd062 100644 --- a/plotly/graph_objects/parcats/_tickfont.py +++ b/plotly/graph_objects/parcats/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/parcats/legendgrouptitle/_font.py b/plotly/graph_objects/parcats/legendgrouptitle/_font.py index 8373ad3c5f..5ca7d0aa29 100644 --- a/plotly/graph_objects/parcats/legendgrouptitle/_font.py +++ b/plotly/graph_objects/parcats/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/parcats/line/_colorbar.py b/plotly/graph_objects/parcats/line/_colorbar.py index 4e4cd56f63..a96e3f0801 100644 --- a/plotly/graph_objects/parcats/line/_colorbar.py +++ b/plotly/graph_objects/parcats/line/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.parcats.line.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.parcats.line.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.parcats.line.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.parcats.line.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.parcats.line.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.parcats.line.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/parcats/line/colorbar/_tickfont.py b/plotly/graph_objects/parcats/line/colorbar/_tickfont.py index 69ab8119aa..29ab365c9a 100644 --- a/plotly/graph_objects/parcats/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/parcats/line/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/parcats/line/colorbar/_title.py b/plotly/graph_objects/parcats/line/colorbar/_title.py index 21191d934f..878a3c0a86 100644 --- a/plotly/graph_objects/parcats/line/colorbar/_title.py +++ b/plotly/graph_objects/parcats/line/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.parcats.line.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.parcats.line.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/parcats/line/colorbar/title/_font.py b/plotly/graph_objects/parcats/line/colorbar/title/_font.py index 6a4f34fd06..10cee6ce7a 100644 --- a/plotly/graph_objects/parcats/line/colorbar/title/_font.py +++ b/plotly/graph_objects/parcats/line/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/parcoords/_labelfont.py b/plotly/graph_objects/parcoords/_labelfont.py index a6cfde93f5..00cc750144 100644 --- a/plotly/graph_objects/parcoords/_labelfont.py +++ b/plotly/graph_objects/parcoords/_labelfont.py @@ -24,11 +24,12 @@ class Labelfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/parcoords/_legendgrouptitle.py b/plotly/graph_objects/parcoords/_legendgrouptitle.py index 125f8a51d6..734ec69ac2 100644 --- a/plotly/graph_objects/parcoords/_legendgrouptitle.py +++ b/plotly/graph_objects/parcoords/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.parcoords.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/parcoords/_line.py b/plotly/graph_objects/parcoords/_line.py index 48f9fb9a0d..02712376fa 100644 --- a/plotly/graph_objects/parcoords/_line.py +++ b/plotly/graph_objects/parcoords/_line.py @@ -145,14 +145,14 @@ def color(self): and `line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to parcoords.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to parcoords.line.colorscale + - A list or array of any of the above Returns ------- @@ -194,9 +194,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.line.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.parcoords.line.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- diff --git a/plotly/graph_objects/parcoords/_rangefont.py b/plotly/graph_objects/parcoords/_rangefont.py index 6190676bcb..023b96b425 100644 --- a/plotly/graph_objects/parcoords/_rangefont.py +++ b/plotly/graph_objects/parcoords/_rangefont.py @@ -24,11 +24,12 @@ class Rangefont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/parcoords/_tickfont.py b/plotly/graph_objects/parcoords/_tickfont.py index cc7822f9f7..dbdebc0eb8 100644 --- a/plotly/graph_objects/parcoords/_tickfont.py +++ b/plotly/graph_objects/parcoords/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/parcoords/_unselected.py b/plotly/graph_objects/parcoords/_unselected.py index 6848af0b56..0d31b779a4 100644 --- a/plotly/graph_objects/parcoords/_unselected.py +++ b/plotly/graph_objects/parcoords/_unselected.py @@ -15,9 +15,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.unselected.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.parcoords.unselected.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/parcoords/legendgrouptitle/_font.py b/plotly/graph_objects/parcoords/legendgrouptitle/_font.py index eddde206a7..2598ce923b 100644 --- a/plotly/graph_objects/parcoords/legendgrouptitle/_font.py +++ b/plotly/graph_objects/parcoords/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/parcoords/line/_colorbar.py b/plotly/graph_objects/parcoords/line/_colorbar.py index 6a35abe730..83e21a2d47 100644 --- a/plotly/graph_objects/parcoords/line/_colorbar.py +++ b/plotly/graph_objects/parcoords/line/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.line.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.parcoords.line.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.line.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.parcoords.line.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.line.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.parcoords.line.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py b/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py index 5a9ab8f6ee..868c1a3364 100644 --- a/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/parcoords/line/colorbar/_title.py b/plotly/graph_objects/parcoords/line/colorbar/_title.py index 5827aea7bf..e508c1f264 100644 --- a/plotly/graph_objects/parcoords/line/colorbar/_title.py +++ b/plotly/graph_objects/parcoords/line/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.parcoords.line.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.parcoords.line.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/parcoords/line/colorbar/title/_font.py b/plotly/graph_objects/parcoords/line/colorbar/title/_font.py index 0c6c7f7c70..6483ea4690 100644 --- a/plotly/graph_objects/parcoords/line/colorbar/title/_font.py +++ b/plotly/graph_objects/parcoords/line/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/parcoords/unselected/_line.py b/plotly/graph_objects/parcoords/unselected/_line.py index 6206137ce3..7440122f34 100644 --- a/plotly/graph_objects/parcoords/unselected/_line.py +++ b/plotly/graph_objects/parcoords/unselected/_line.py @@ -17,11 +17,12 @@ def color(self): `unselected.line.opacity`. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/pie/_hoverlabel.py b/plotly/graph_objects/pie/_hoverlabel.py index 7a1aa88698..8ec1d18766 100644 --- a/plotly/graph_objects/pie/_hoverlabel.py +++ b/plotly/graph_objects/pie/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.pie.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.pie.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/pie/_insidetextfont.py b/plotly/graph_objects/pie/_insidetextfont.py index 40f8f8f43f..54e29f92ea 100644 --- a/plotly/graph_objects/pie/_insidetextfont.py +++ b/plotly/graph_objects/pie/_insidetextfont.py @@ -33,12 +33,13 @@ class Insidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/pie/_legendgrouptitle.py b/plotly/graph_objects/pie/_legendgrouptitle.py index 37747e88ae..6fe994fadc 100644 --- a/plotly/graph_objects/pie/_legendgrouptitle.py +++ b/plotly/graph_objects/pie/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.pie.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.pie.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/pie/_marker.py b/plotly/graph_objects/pie/_marker.py index 19ea6c61fd..baf8ed17ed 100644 --- a/plotly/graph_objects/pie/_marker.py +++ b/plotly/graph_objects/pie/_marker.py @@ -52,9 +52,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.pie.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.pie.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -73,9 +73,9 @@ def pattern(self): The 'pattern' property is an instance of Pattern that may be specified as: - - An instance of :class:`plotly.graph_objects.pie.marker.Pattern` - - A dict of string/value properties that will be passed - to the Pattern constructor + + - An instance of :class:`plotly.graph_objects.pie.marker.Pattern` + - A dict of string/value properties that will be passed to the Pattern constructor Returns ------- diff --git a/plotly/graph_objects/pie/_outsidetextfont.py b/plotly/graph_objects/pie/_outsidetextfont.py index 8fd45b9941..9276bfacb0 100644 --- a/plotly/graph_objects/pie/_outsidetextfont.py +++ b/plotly/graph_objects/pie/_outsidetextfont.py @@ -33,12 +33,13 @@ class Outsidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/pie/_textfont.py b/plotly/graph_objects/pie/_textfont.py index 1bdd01b46a..41989a2f83 100644 --- a/plotly/graph_objects/pie/_textfont.py +++ b/plotly/graph_objects/pie/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/pie/_title.py b/plotly/graph_objects/pie/_title.py index cb503ab88a..d47c2adbb1 100644 --- a/plotly/graph_objects/pie/_title.py +++ b/plotly/graph_objects/pie/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.pie.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.pie.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/pie/hoverlabel/_font.py b/plotly/graph_objects/pie/hoverlabel/_font.py index 546a1cd08f..dc718bdb7c 100644 --- a/plotly/graph_objects/pie/hoverlabel/_font.py +++ b/plotly/graph_objects/pie/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/pie/legendgrouptitle/_font.py b/plotly/graph_objects/pie/legendgrouptitle/_font.py index 1ade71ed23..1ae0bf24ae 100644 --- a/plotly/graph_objects/pie/legendgrouptitle/_font.py +++ b/plotly/graph_objects/pie/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/pie/marker/_line.py b/plotly/graph_objects/pie/marker/_line.py index 2b600363af..c47117cd65 100644 --- a/plotly/graph_objects/pie/marker/_line.py +++ b/plotly/graph_objects/pie/marker/_line.py @@ -16,12 +16,13 @@ def color(self): Sets the color of the line enclosing each sector. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/pie/marker/_pattern.py b/plotly/graph_objects/pie/marker/_pattern.py index 8bffef3f70..d5bac5a19a 100644 --- a/plotly/graph_objects/pie/marker/_pattern.py +++ b/plotly/graph_objects/pie/marker/_pattern.py @@ -34,12 +34,13 @@ def bgcolor(self): background. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -78,12 +79,13 @@ def fgcolor(self): white to increase contrast with the `bgcolor`. The 'fgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/pie/title/_font.py b/plotly/graph_objects/pie/title/_font.py index 8ad832a4f2..3abc499644 100644 --- a/plotly/graph_objects/pie/title/_font.py +++ b/plotly/graph_objects/pie/title/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/sankey/_hoverlabel.py b/plotly/graph_objects/sankey/_hoverlabel.py index cda79ddb0f..0560d41c5f 100644 --- a/plotly/graph_objects/sankey/_hoverlabel.py +++ b/plotly/graph_objects/sankey/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.sankey.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/sankey/_legendgrouptitle.py b/plotly/graph_objects/sankey/_legendgrouptitle.py index 1c584cb432..e1c017dac0 100644 --- a/plotly/graph_objects/sankey/_legendgrouptitle.py +++ b/plotly/graph_objects/sankey/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.sankey.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/sankey/_link.py b/plotly/graph_objects/sankey/_link.py index e7178fe262..ccb07f0181 100644 --- a/plotly/graph_objects/sankey/_link.py +++ b/plotly/graph_objects/sankey/_link.py @@ -61,12 +61,13 @@ def color(self): omitted, then by default, a translucent grey link will be used. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -107,9 +108,9 @@ def colorscaledefaults(self): The 'colorscaledefaults' property is an instance of Colorscale that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.link.Colorscale` - - A dict of string/value properties that will be passed - to the Colorscale constructor + + - An instance of :class:`plotly.graph_objects.sankey.link.Colorscale` + - A dict of string/value properties that will be passed to the Colorscale constructor Returns ------- @@ -185,12 +186,13 @@ def hovercolor(self): become slightly more opaque when hovered over. The 'hovercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -250,9 +252,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.link.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.sankey.link.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -371,9 +373,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.link.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.sankey.link.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/sankey/_node.py b/plotly/graph_objects/sankey/_node.py index 79064a5174..9d0da90ce4 100644 --- a/plotly/graph_objects/sankey/_node.py +++ b/plotly/graph_objects/sankey/_node.py @@ -63,12 +63,13 @@ def color(self): node. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -189,9 +190,9 @@ def hoverlabel(self): """ The 'hoverlabel' property is an instance of Hoverlabel that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.node.Hoverlabel` - - A dict of string/value properties that will be passed - to the Hoverlabel constructor + + - An instance of :class:`plotly.graph_objects.sankey.node.Hoverlabel` + - A dict of string/value properties that will be passed to the Hoverlabel constructor Returns ------- @@ -311,9 +312,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.node.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.sankey.node.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/sankey/_textfont.py b/plotly/graph_objects/sankey/_textfont.py index f437b14ed0..921b8f0dea 100644 --- a/plotly/graph_objects/sankey/_textfont.py +++ b/plotly/graph_objects/sankey/_textfont.py @@ -24,11 +24,12 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/sankey/hoverlabel/_font.py b/plotly/graph_objects/sankey/hoverlabel/_font.py index 962686ac6b..115cc42f12 100644 --- a/plotly/graph_objects/sankey/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/sankey/legendgrouptitle/_font.py b/plotly/graph_objects/sankey/legendgrouptitle/_font.py index 9e61c7c989..bfb977c6ea 100644 --- a/plotly/graph_objects/sankey/legendgrouptitle/_font.py +++ b/plotly/graph_objects/sankey/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/sankey/link/_hoverlabel.py b/plotly/graph_objects/sankey/link/_hoverlabel.py index cc843191a3..d4d36d2ba8 100644 --- a/plotly/graph_objects/sankey/link/_hoverlabel.py +++ b/plotly/graph_objects/sankey/link/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.link.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.sankey.link.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/sankey/link/_line.py b/plotly/graph_objects/sankey/link/_line.py index 24fac53534..339f7ba875 100644 --- a/plotly/graph_objects/sankey/link/_line.py +++ b/plotly/graph_objects/sankey/link/_line.py @@ -16,12 +16,13 @@ def color(self): Sets the color of the `line` around each `link`. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/sankey/link/hoverlabel/_font.py b/plotly/graph_objects/sankey/link/hoverlabel/_font.py index 2e3a5edb0c..cfd1af640f 100644 --- a/plotly/graph_objects/sankey/link/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/link/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/sankey/node/_hoverlabel.py b/plotly/graph_objects/sankey/node/_hoverlabel.py index 6761d9dc75..4c5290b987 100644 --- a/plotly/graph_objects/sankey/node/_hoverlabel.py +++ b/plotly/graph_objects/sankey/node/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.sankey.node.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.sankey.node.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/sankey/node/_line.py b/plotly/graph_objects/sankey/node/_line.py index 90e41eec17..6028138faa 100644 --- a/plotly/graph_objects/sankey/node/_line.py +++ b/plotly/graph_objects/sankey/node/_line.py @@ -16,12 +16,13 @@ def color(self): Sets the color of the `line` around each `node`. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/sankey/node/hoverlabel/_font.py b/plotly/graph_objects/sankey/node/hoverlabel/_font.py index 6021e9ae50..12174d46c9 100644 --- a/plotly/graph_objects/sankey/node/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/node/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatter/_error_x.py b/plotly/graph_objects/scatter/_error_x.py index 8a8a5a3979..2dd2e931c8 100644 --- a/plotly/graph_objects/scatter/_error_x.py +++ b/plotly/graph_objects/scatter/_error_x.py @@ -108,11 +108,12 @@ def color(self): Sets the stroke color of the error bars. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter/_error_y.py b/plotly/graph_objects/scatter/_error_y.py index 0cbce3d8b0..61e47f89f3 100644 --- a/plotly/graph_objects/scatter/_error_y.py +++ b/plotly/graph_objects/scatter/_error_y.py @@ -107,11 +107,12 @@ def color(self): Sets the stroke color of the error bars. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter/_fillpattern.py b/plotly/graph_objects/scatter/_fillpattern.py index f44798aa9a..b26d02d1a6 100644 --- a/plotly/graph_objects/scatter/_fillpattern.py +++ b/plotly/graph_objects/scatter/_fillpattern.py @@ -34,12 +34,13 @@ def bgcolor(self): background. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -78,12 +79,13 @@ def fgcolor(self): white to increase contrast with the `bgcolor`. The 'fgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatter/_hoverlabel.py b/plotly/graph_objects/scatter/_hoverlabel.py index ff50567cea..e9ab500a99 100644 --- a/plotly/graph_objects/scatter/_hoverlabel.py +++ b/plotly/graph_objects/scatter/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatter.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatter/_legendgrouptitle.py b/plotly/graph_objects/scatter/_legendgrouptitle.py index 54b9249d4f..7a34410520 100644 --- a/plotly/graph_objects/scatter/_legendgrouptitle.py +++ b/plotly/graph_objects/scatter/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatter.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatter/_line.py b/plotly/graph_objects/scatter/_line.py index 54deda63d5..12ccd5f539 100644 --- a/plotly/graph_objects/scatter/_line.py +++ b/plotly/graph_objects/scatter/_line.py @@ -67,11 +67,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter/_marker.py b/plotly/graph_objects/scatter/_marker.py index d171d916b1..d024adbe1e 100644 --- a/plotly/graph_objects/scatter/_marker.py +++ b/plotly/graph_objects/scatter/_marker.py @@ -224,14 +224,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scatter.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scatter.marker.colorscale + - A list or array of any of the above Returns ------- @@ -273,9 +273,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.scatter.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -362,9 +362,9 @@ def gradient(self): """ The 'gradient' property is an instance of Gradient that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.marker.Gradient` - - A dict of string/value properties that will be passed - to the Gradient constructor + + - An instance of :class:`plotly.graph_objects.scatter.marker.Gradient` + - A dict of string/value properties that will be passed to the Gradient constructor Returns ------- @@ -381,9 +381,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scatter.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/scatter/_selected.py b/plotly/graph_objects/scatter/_selected.py index 90119b46f6..0ab503e8a8 100644 --- a/plotly/graph_objects/scatter/_selected.py +++ b/plotly/graph_objects/scatter/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scatter.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.selected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scatter.selected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scatter/_textfont.py b/plotly/graph_objects/scatter/_textfont.py index 4a86efef91..3c0b735a89 100644 --- a/plotly/graph_objects/scatter/_textfont.py +++ b/plotly/graph_objects/scatter/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatter/_unselected.py b/plotly/graph_objects/scatter/_unselected.py index 3708f71b7d..44864c67d9 100644 --- a/plotly/graph_objects/scatter/_unselected.py +++ b/plotly/graph_objects/scatter/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scatter.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.unselected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scatter.unselected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scatter/hoverlabel/_font.py b/plotly/graph_objects/scatter/hoverlabel/_font.py index fa75f024f1..f8b7231347 100644 --- a/plotly/graph_objects/scatter/hoverlabel/_font.py +++ b/plotly/graph_objects/scatter/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatter/legendgrouptitle/_font.py b/plotly/graph_objects/scatter/legendgrouptitle/_font.py index 8e27abcc17..1c5d77a077 100644 --- a/plotly/graph_objects/scatter/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatter/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter/marker/_colorbar.py b/plotly/graph_objects/scatter/marker/_colorbar.py index f04294d707..33d3bc4db1 100644 --- a/plotly/graph_objects/scatter/marker/_colorbar.py +++ b/plotly/graph_objects/scatter/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.scatter.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.scatter.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.scatter.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/scatter/marker/_gradient.py b/plotly/graph_objects/scatter/marker/_gradient.py index a91124890f..23549592d5 100644 --- a/plotly/graph_objects/scatter/marker/_gradient.py +++ b/plotly/graph_objects/scatter/marker/_gradient.py @@ -17,12 +17,13 @@ def color(self): radial, the right for horizontal, or the bottom for vertical. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatter/marker/_line.py b/plotly/graph_objects/scatter/marker/_line.py index 3b076f6d6b..fe7aba6c4d 100644 --- a/plotly/graph_objects/scatter/marker/_line.py +++ b/plotly/graph_objects/scatter/marker/_line.py @@ -147,14 +147,14 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scatter.marker.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scatter.marker.line.colorscale + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py index 45a1257ecc..80dddf8947 100644 --- a/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter/marker/colorbar/_title.py b/plotly/graph_objects/scatter/marker/colorbar/_title.py index 7f01a8292e..5b7b5394f2 100644 --- a/plotly/graph_objects/scatter/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatter/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatter.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatter/marker/colorbar/title/_font.py b/plotly/graph_objects/scatter/marker/colorbar/title/_font.py index a75561a66f..9d2f3a5c87 100644 --- a/plotly/graph_objects/scatter/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter/selected/_marker.py b/plotly/graph_objects/scatter/selected/_marker.py index 8ca0bc09ca..f4f3d669d4 100644 --- a/plotly/graph_objects/scatter/selected/_marker.py +++ b/plotly/graph_objects/scatter/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter/selected/_textfont.py b/plotly/graph_objects/scatter/selected/_textfont.py index 225caa3cda..9a022b4076 100644 --- a/plotly/graph_objects/scatter/selected/_textfont.py +++ b/plotly/graph_objects/scatter/selected/_textfont.py @@ -16,11 +16,12 @@ def color(self): Sets the text font color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter/unselected/_marker.py b/plotly/graph_objects/scatter/unselected/_marker.py index 2c84702779..94566338c4 100644 --- a/plotly/graph_objects/scatter/unselected/_marker.py +++ b/plotly/graph_objects/scatter/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter/unselected/_textfont.py b/plotly/graph_objects/scatter/unselected/_textfont.py index 2c3abef2e8..0fdb83ff50 100644 --- a/plotly/graph_objects/scatter/unselected/_textfont.py +++ b/plotly/graph_objects/scatter/unselected/_textfont.py @@ -17,11 +17,12 @@ def color(self): when a selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter3d/_error_x.py b/plotly/graph_objects/scatter3d/_error_x.py index 64935bda10..b8b60edfd2 100644 --- a/plotly/graph_objects/scatter3d/_error_x.py +++ b/plotly/graph_objects/scatter3d/_error_x.py @@ -108,11 +108,12 @@ def color(self): Sets the stroke color of the error bars. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter3d/_error_y.py b/plotly/graph_objects/scatter3d/_error_y.py index fb927af982..8ff5d85669 100644 --- a/plotly/graph_objects/scatter3d/_error_y.py +++ b/plotly/graph_objects/scatter3d/_error_y.py @@ -108,11 +108,12 @@ def color(self): Sets the stroke color of the error bars. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter3d/_error_z.py b/plotly/graph_objects/scatter3d/_error_z.py index 8dfe45b8bf..8d55dead6c 100644 --- a/plotly/graph_objects/scatter3d/_error_z.py +++ b/plotly/graph_objects/scatter3d/_error_z.py @@ -107,11 +107,12 @@ def color(self): Sets the stroke color of the error bars. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter3d/_hoverlabel.py b/plotly/graph_objects/scatter3d/_hoverlabel.py index ef2e5abd9b..dc6debc96e 100644 --- a/plotly/graph_objects/scatter3d/_hoverlabel.py +++ b/plotly/graph_objects/scatter3d/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatter3d/_legendgrouptitle.py b/plotly/graph_objects/scatter3d/_legendgrouptitle.py index b481d827df..aab35a9647 100644 --- a/plotly/graph_objects/scatter3d/_legendgrouptitle.py +++ b/plotly/graph_objects/scatter3d/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatter3d/_line.py b/plotly/graph_objects/scatter3d/_line.py index 6cddfaf17d..7e5d07db8a 100644 --- a/plotly/graph_objects/scatter3d/_line.py +++ b/plotly/graph_objects/scatter3d/_line.py @@ -147,14 +147,14 @@ def color(self): and `line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scatter3d.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scatter3d.line.colorscale + - A list or array of any of the above Returns ------- @@ -196,9 +196,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.line.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.line.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- diff --git a/plotly/graph_objects/scatter3d/_marker.py b/plotly/graph_objects/scatter3d/_marker.py index 45eb87ff45..ad434a1eaf 100644 --- a/plotly/graph_objects/scatter3d/_marker.py +++ b/plotly/graph_objects/scatter3d/_marker.py @@ -155,14 +155,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scatter3d.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scatter3d.marker.colorscale + - A list or array of any of the above Returns ------- @@ -204,9 +204,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -293,9 +293,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/scatter3d/_projection.py b/plotly/graph_objects/scatter3d/_projection.py index b9829f4972..6ea1267fde 100644 --- a/plotly/graph_objects/scatter3d/_projection.py +++ b/plotly/graph_objects/scatter3d/_projection.py @@ -15,9 +15,9 @@ def x(self): """ The 'x' property is an instance of X that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.projection.X` - - A dict of string/value properties that will be passed - to the X constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.projection.X` + - A dict of string/value properties that will be passed to the X constructor Returns ------- @@ -34,9 +34,9 @@ def y(self): """ The 'y' property is an instance of Y that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.projection.Y` - - A dict of string/value properties that will be passed - to the Y constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.projection.Y` + - A dict of string/value properties that will be passed to the Y constructor Returns ------- @@ -53,9 +53,9 @@ def z(self): """ The 'z' property is an instance of Z that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.projection.Z` - - A dict of string/value properties that will be passed - to the Z constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.projection.Z` + - A dict of string/value properties that will be passed to the Z constructor Returns ------- diff --git a/plotly/graph_objects/scatter3d/_textfont.py b/plotly/graph_objects/scatter3d/_textfont.py index 9ef933306a..c1431bf683 100644 --- a/plotly/graph_objects/scatter3d/_textfont.py +++ b/plotly/graph_objects/scatter3d/_textfont.py @@ -27,12 +27,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatter3d/hoverlabel/_font.py b/plotly/graph_objects/scatter3d/hoverlabel/_font.py index ca7b574544..2f048d0f74 100644 --- a/plotly/graph_objects/scatter3d/hoverlabel/_font.py +++ b/plotly/graph_objects/scatter3d/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py b/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py index 8e18638505..333062ebfe 100644 --- a/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter3d/line/_colorbar.py b/plotly/graph_objects/scatter3d/line/_colorbar.py index b431646006..4a4f8672c1 100644 --- a/plotly/graph_objects/scatter3d/line/_colorbar.py +++ b/plotly/graph_objects/scatter3d/line/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.line.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.line.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.line.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.line.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.line.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.line.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py b/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py index 4e4caba860..bc63c0ead1 100644 --- a/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter3d/line/colorbar/_title.py b/plotly/graph_objects/scatter3d/line/colorbar/_title.py index 30e967c807..a62a9acd59 100644 --- a/plotly/graph_objects/scatter3d/line/colorbar/_title.py +++ b/plotly/graph_objects/scatter3d/line/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.line.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.line.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py b/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py index a4f3fabecd..15cae5b481 100644 --- a/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/_colorbar.py b/plotly/graph_objects/scatter3d/marker/_colorbar.py index 9796a4af54..76611b9864 100644 --- a/plotly/graph_objects/scatter3d/marker/_colorbar.py +++ b/plotly/graph_objects/scatter3d/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/_line.py b/plotly/graph_objects/scatter3d/marker/_line.py index e7d58be95c..a6a7a203fe 100644 --- a/plotly/graph_objects/scatter3d/marker/_line.py +++ b/plotly/graph_objects/scatter3d/marker/_line.py @@ -146,14 +146,14 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scatter3d.marker.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scatter3d.marker.line.colorscale + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py index 85bb1e0dd6..7f087282ee 100644 --- a/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/colorbar/_title.py b/plotly/graph_objects/scatter3d/marker/colorbar/_title.py index de1362af33..d9abf03d1c 100644 --- a/plotly/graph_objects/scatter3d/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatter3d/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatter3d.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatter3d.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py b/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py index 577584ac09..bb7c147ebb 100644 --- a/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_hoverlabel.py b/plotly/graph_objects/scattercarpet/_hoverlabel.py index cce26bf64e..3576b89e61 100644 --- a/plotly/graph_objects/scattercarpet/_hoverlabel.py +++ b/plotly/graph_objects/scattercarpet/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_legendgrouptitle.py b/plotly/graph_objects/scattercarpet/_legendgrouptitle.py index 43b6b72701..608fc65378 100644 --- a/plotly/graph_objects/scattercarpet/_legendgrouptitle.py +++ b/plotly/graph_objects/scattercarpet/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_line.py b/plotly/graph_objects/scattercarpet/_line.py index 58d152b1e9..a7f7ab5e93 100644 --- a/plotly/graph_objects/scattercarpet/_line.py +++ b/plotly/graph_objects/scattercarpet/_line.py @@ -66,11 +66,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_marker.py b/plotly/graph_objects/scattercarpet/_marker.py index d6ce908362..e4d4c97b6f 100644 --- a/plotly/graph_objects/scattercarpet/_marker.py +++ b/plotly/graph_objects/scattercarpet/_marker.py @@ -224,14 +224,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scattercarpet.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scattercarpet.marker.colorscale + - A list or array of any of the above Returns ------- @@ -273,9 +273,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -362,9 +362,9 @@ def gradient(self): """ The 'gradient' property is an instance of Gradient that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.marker.Gradient` - - A dict of string/value properties that will be passed - to the Gradient constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.marker.Gradient` + - A dict of string/value properties that will be passed to the Gradient constructor Returns ------- @@ -381,9 +381,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_selected.py b/plotly/graph_objects/scattercarpet/_selected.py index 36bbd3a30b..ac88743450 100644 --- a/plotly/graph_objects/scattercarpet/_selected.py +++ b/plotly/graph_objects/scattercarpet/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.selected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.selected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_textfont.py b/plotly/graph_objects/scattercarpet/_textfont.py index 900c2624d8..b8bb9c700e 100644 --- a/plotly/graph_objects/scattercarpet/_textfont.py +++ b/plotly/graph_objects/scattercarpet/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_unselected.py b/plotly/graph_objects/scattercarpet/_unselected.py index c6a965d89a..3ce57213d1 100644 --- a/plotly/graph_objects/scattercarpet/_unselected.py +++ b/plotly/graph_objects/scattercarpet/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.unselected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.unselected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scattercarpet/hoverlabel/_font.py b/plotly/graph_objects/scattercarpet/hoverlabel/_font.py index 35ddb95e3e..aca1360645 100644 --- a/plotly/graph_objects/scattercarpet/hoverlabel/_font.py +++ b/plotly/graph_objects/scattercarpet/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py b/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py index f9039cfdb3..65fb3e4160 100644 --- a/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/_colorbar.py b/plotly/graph_objects/scattercarpet/marker/_colorbar.py index ce5a3100a0..79491b3272 100644 --- a/plotly/graph_objects/scattercarpet/marker/_colorbar.py +++ b/plotly/graph_objects/scattercarpet/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/_gradient.py b/plotly/graph_objects/scattercarpet/marker/_gradient.py index af467ddf43..310b65dd50 100644 --- a/plotly/graph_objects/scattercarpet/marker/_gradient.py +++ b/plotly/graph_objects/scattercarpet/marker/_gradient.py @@ -17,12 +17,13 @@ def color(self): radial, the right for horizontal, or the bottom for vertical. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/_line.py b/plotly/graph_objects/scattercarpet/marker/_line.py index 2fda84820c..b5371841d0 100644 --- a/plotly/graph_objects/scattercarpet/marker/_line.py +++ b/plotly/graph_objects/scattercarpet/marker/_line.py @@ -147,14 +147,14 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scattercarpet.marker.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scattercarpet.marker.line.colorscale + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py index 2fb19495fc..d8bffbe833 100644 --- a/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/colorbar/_title.py b/plotly/graph_objects/scattercarpet/marker/colorbar/_title.py index 7f906b86f3..664edb0c59 100644 --- a/plotly/graph_objects/scattercarpet/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattercarpet/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattercarpet.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattercarpet.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py b/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py index 95aa151b7d..552705a535 100644 --- a/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattercarpet/selected/_marker.py b/plotly/graph_objects/scattercarpet/selected/_marker.py index 31d551d4c2..3fe19679fd 100644 --- a/plotly/graph_objects/scattercarpet/selected/_marker.py +++ b/plotly/graph_objects/scattercarpet/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattercarpet/selected/_textfont.py b/plotly/graph_objects/scattercarpet/selected/_textfont.py index 92b51b3408..d5dff347f7 100644 --- a/plotly/graph_objects/scattercarpet/selected/_textfont.py +++ b/plotly/graph_objects/scattercarpet/selected/_textfont.py @@ -16,11 +16,12 @@ def color(self): Sets the text font color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattercarpet/unselected/_marker.py b/plotly/graph_objects/scattercarpet/unselected/_marker.py index f5ee45cc50..f27e864125 100644 --- a/plotly/graph_objects/scattercarpet/unselected/_marker.py +++ b/plotly/graph_objects/scattercarpet/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattercarpet/unselected/_textfont.py b/plotly/graph_objects/scattercarpet/unselected/_textfont.py index 7590202630..536db9eda7 100644 --- a/plotly/graph_objects/scattercarpet/unselected/_textfont.py +++ b/plotly/graph_objects/scattercarpet/unselected/_textfont.py @@ -17,11 +17,12 @@ def color(self): when a selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergeo/_hoverlabel.py b/plotly/graph_objects/scattergeo/_hoverlabel.py index 66cb713df3..71125ad5a4 100644 --- a/plotly/graph_objects/scattergeo/_hoverlabel.py +++ b/plotly/graph_objects/scattergeo/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattergeo/_legendgrouptitle.py b/plotly/graph_objects/scattergeo/_legendgrouptitle.py index ad8396e61b..cbfa9c6907 100644 --- a/plotly/graph_objects/scattergeo/_legendgrouptitle.py +++ b/plotly/graph_objects/scattergeo/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattergeo/_line.py b/plotly/graph_objects/scattergeo/_line.py index a048a2c292..c3a191e21c 100644 --- a/plotly/graph_objects/scattergeo/_line.py +++ b/plotly/graph_objects/scattergeo/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergeo/_marker.py b/plotly/graph_objects/scattergeo/_marker.py index 8bf9e5514c..e014cbff12 100644 --- a/plotly/graph_objects/scattergeo/_marker.py +++ b/plotly/graph_objects/scattergeo/_marker.py @@ -225,14 +225,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scattergeo.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scattergeo.marker.colorscale + - A list or array of any of the above Returns ------- @@ -274,9 +274,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -363,9 +363,9 @@ def gradient(self): """ The 'gradient' property is an instance of Gradient that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.marker.Gradient` - - A dict of string/value properties that will be passed - to the Gradient constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.marker.Gradient` + - A dict of string/value properties that will be passed to the Gradient constructor Returns ------- @@ -382,9 +382,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/scattergeo/_selected.py b/plotly/graph_objects/scattergeo/_selected.py index 1ec18837bf..ee94739457 100644 --- a/plotly/graph_objects/scattergeo/_selected.py +++ b/plotly/graph_objects/scattergeo/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.selected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.selected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scattergeo/_textfont.py b/plotly/graph_objects/scattergeo/_textfont.py index eea90af814..25c984ff42 100644 --- a/plotly/graph_objects/scattergeo/_textfont.py +++ b/plotly/graph_objects/scattergeo/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattergeo/_unselected.py b/plotly/graph_objects/scattergeo/_unselected.py index 4c36d81de3..addc8be3e2 100644 --- a/plotly/graph_objects/scattergeo/_unselected.py +++ b/plotly/graph_objects/scattergeo/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.unselected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.unselected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scattergeo/hoverlabel/_font.py b/plotly/graph_objects/scattergeo/hoverlabel/_font.py index 35fdd59c04..8ec7418a01 100644 --- a/plotly/graph_objects/scattergeo/hoverlabel/_font.py +++ b/plotly/graph_objects/scattergeo/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py b/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py index 6f345d10db..a582dd9f4e 100644 --- a/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/_colorbar.py b/plotly/graph_objects/scattergeo/marker/_colorbar.py index a96d4f9578..2840a3025e 100644 --- a/plotly/graph_objects/scattergeo/marker/_colorbar.py +++ b/plotly/graph_objects/scattergeo/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/_gradient.py b/plotly/graph_objects/scattergeo/marker/_gradient.py index b96be444b5..36ccf4f7b1 100644 --- a/plotly/graph_objects/scattergeo/marker/_gradient.py +++ b/plotly/graph_objects/scattergeo/marker/_gradient.py @@ -17,12 +17,13 @@ def color(self): radial, the right for horizontal, or the bottom for vertical. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/_line.py b/plotly/graph_objects/scattergeo/marker/_line.py index da390d2a8f..162fb156e3 100644 --- a/plotly/graph_objects/scattergeo/marker/_line.py +++ b/plotly/graph_objects/scattergeo/marker/_line.py @@ -147,14 +147,14 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scattergeo.marker.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scattergeo.marker.line.colorscale + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py index a5eca30920..fd1cdf8dd4 100644 --- a/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/colorbar/_title.py b/plotly/graph_objects/scattergeo/marker/colorbar/_title.py index 2eead75e7c..4b61ab50d9 100644 --- a/plotly/graph_objects/scattergeo/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattergeo/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergeo.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattergeo.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py b/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py index 87227e89f1..c319a41853 100644 --- a/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergeo/selected/_marker.py b/plotly/graph_objects/scattergeo/selected/_marker.py index 10a4e3d5f8..6f0e5c8cee 100644 --- a/plotly/graph_objects/scattergeo/selected/_marker.py +++ b/plotly/graph_objects/scattergeo/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergeo/selected/_textfont.py b/plotly/graph_objects/scattergeo/selected/_textfont.py index 11fcea24e7..c9e5306f3d 100644 --- a/plotly/graph_objects/scattergeo/selected/_textfont.py +++ b/plotly/graph_objects/scattergeo/selected/_textfont.py @@ -16,11 +16,12 @@ def color(self): Sets the text font color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergeo/unselected/_marker.py b/plotly/graph_objects/scattergeo/unselected/_marker.py index bf723d7ba5..da20c7617d 100644 --- a/plotly/graph_objects/scattergeo/unselected/_marker.py +++ b/plotly/graph_objects/scattergeo/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergeo/unselected/_textfont.py b/plotly/graph_objects/scattergeo/unselected/_textfont.py index 2f950f7fde..c71e95726c 100644 --- a/plotly/graph_objects/scattergeo/unselected/_textfont.py +++ b/plotly/graph_objects/scattergeo/unselected/_textfont.py @@ -17,11 +17,12 @@ def color(self): when a selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergl/_error_x.py b/plotly/graph_objects/scattergl/_error_x.py index 50bc2391e3..5ce262145c 100644 --- a/plotly/graph_objects/scattergl/_error_x.py +++ b/plotly/graph_objects/scattergl/_error_x.py @@ -108,11 +108,12 @@ def color(self): Sets the stroke color of the error bars. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergl/_error_y.py b/plotly/graph_objects/scattergl/_error_y.py index 62522f6d19..7fd278ca45 100644 --- a/plotly/graph_objects/scattergl/_error_y.py +++ b/plotly/graph_objects/scattergl/_error_y.py @@ -107,11 +107,12 @@ def color(self): Sets the stroke color of the error bars. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergl/_hoverlabel.py b/plotly/graph_objects/scattergl/_hoverlabel.py index 24e9e3d42d..b4651af8a7 100644 --- a/plotly/graph_objects/scattergl/_hoverlabel.py +++ b/plotly/graph_objects/scattergl/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattergl.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattergl/_legendgrouptitle.py b/plotly/graph_objects/scattergl/_legendgrouptitle.py index 74922331a3..f732218bd5 100644 --- a/plotly/graph_objects/scattergl/_legendgrouptitle.py +++ b/plotly/graph_objects/scattergl/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattergl.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattergl/_line.py b/plotly/graph_objects/scattergl/_line.py index 0d65a081dd..e94f4ef791 100644 --- a/plotly/graph_objects/scattergl/_line.py +++ b/plotly/graph_objects/scattergl/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergl/_marker.py b/plotly/graph_objects/scattergl/_marker.py index 65acb6dcab..e8ea55c424 100644 --- a/plotly/graph_objects/scattergl/_marker.py +++ b/plotly/graph_objects/scattergl/_marker.py @@ -196,14 +196,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scattergl.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scattergl.marker.colorscale + - A list or array of any of the above Returns ------- @@ -245,9 +245,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.scattergl.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -334,9 +334,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scattergl.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/scattergl/_selected.py b/plotly/graph_objects/scattergl/_selected.py index 19e54580ce..2d21eb371f 100644 --- a/plotly/graph_objects/scattergl/_selected.py +++ b/plotly/graph_objects/scattergl/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattergl.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.selected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scattergl.selected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scattergl/_textfont.py b/plotly/graph_objects/scattergl/_textfont.py index 0149a472f4..2c0b2a3c25 100644 --- a/plotly/graph_objects/scattergl/_textfont.py +++ b/plotly/graph_objects/scattergl/_textfont.py @@ -27,12 +27,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattergl/_unselected.py b/plotly/graph_objects/scattergl/_unselected.py index 69fe5cb1bd..6f17e45c7b 100644 --- a/plotly/graph_objects/scattergl/_unselected.py +++ b/plotly/graph_objects/scattergl/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattergl.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.unselected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scattergl.unselected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scattergl/hoverlabel/_font.py b/plotly/graph_objects/scattergl/hoverlabel/_font.py index b8abc904e7..8355751419 100644 --- a/plotly/graph_objects/scattergl/hoverlabel/_font.py +++ b/plotly/graph_objects/scattergl/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattergl/legendgrouptitle/_font.py b/plotly/graph_objects/scattergl/legendgrouptitle/_font.py index 0790551d8c..3576c30767 100644 --- a/plotly/graph_objects/scattergl/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattergl/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/_colorbar.py b/plotly/graph_objects/scattergl/marker/_colorbar.py index cd4440cb1c..7834c349e1 100644 --- a/plotly/graph_objects/scattergl/marker/_colorbar.py +++ b/plotly/graph_objects/scattergl/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.scattergl.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.scattergl.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.scattergl.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/_line.py b/plotly/graph_objects/scattergl/marker/_line.py index 8d8d26f047..a6b7c120b4 100644 --- a/plotly/graph_objects/scattergl/marker/_line.py +++ b/plotly/graph_objects/scattergl/marker/_line.py @@ -147,14 +147,14 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scattergl.marker.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scattergl.marker.line.colorscale + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py index b4df3a6c44..8560cf684a 100644 --- a/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/colorbar/_title.py b/plotly/graph_objects/scattergl/marker/colorbar/_title.py index c4aa33723e..296f32d335 100644 --- a/plotly/graph_objects/scattergl/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattergl/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattergl.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattergl.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py b/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py index 11840f63fc..527334eccd 100644 --- a/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergl/selected/_marker.py b/plotly/graph_objects/scattergl/selected/_marker.py index 8ec87e4136..3fca5c6cc5 100644 --- a/plotly/graph_objects/scattergl/selected/_marker.py +++ b/plotly/graph_objects/scattergl/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergl/selected/_textfont.py b/plotly/graph_objects/scattergl/selected/_textfont.py index d4965adb65..3e89dedee4 100644 --- a/plotly/graph_objects/scattergl/selected/_textfont.py +++ b/plotly/graph_objects/scattergl/selected/_textfont.py @@ -16,11 +16,12 @@ def color(self): Sets the text font color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergl/unselected/_marker.py b/plotly/graph_objects/scattergl/unselected/_marker.py index 032656e45f..48f5f089d6 100644 --- a/plotly/graph_objects/scattergl/unselected/_marker.py +++ b/plotly/graph_objects/scattergl/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattergl/unselected/_textfont.py b/plotly/graph_objects/scattergl/unselected/_textfont.py index 4b5b6af3ff..a7b7cb7324 100644 --- a/plotly/graph_objects/scattergl/unselected/_textfont.py +++ b/plotly/graph_objects/scattergl/unselected/_textfont.py @@ -17,11 +17,12 @@ def color(self): when a selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattermap/_cluster.py b/plotly/graph_objects/scattermap/_cluster.py index 3c1e25ac6e..316e908b0b 100644 --- a/plotly/graph_objects/scattermap/_cluster.py +++ b/plotly/graph_objects/scattermap/_cluster.py @@ -27,12 +27,13 @@ def color(self): Sets the color for each cluster step. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattermap/_hoverlabel.py b/plotly/graph_objects/scattermap/_hoverlabel.py index d8fd20ca8f..32bf74cdb7 100644 --- a/plotly/graph_objects/scattermap/_hoverlabel.py +++ b/plotly/graph_objects/scattermap/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattermap.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattermap/_legendgrouptitle.py b/plotly/graph_objects/scattermap/_legendgrouptitle.py index 4e23560c2e..1911a9876e 100644 --- a/plotly/graph_objects/scattermap/_legendgrouptitle.py +++ b/plotly/graph_objects/scattermap/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattermap.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattermap/_line.py b/plotly/graph_objects/scattermap/_line.py index 0bbd514241..b5bceb691b 100644 --- a/plotly/graph_objects/scattermap/_line.py +++ b/plotly/graph_objects/scattermap/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattermap/_marker.py b/plotly/graph_objects/scattermap/_marker.py index 61b118caa1..96066e70d0 100644 --- a/plotly/graph_objects/scattermap/_marker.py +++ b/plotly/graph_objects/scattermap/_marker.py @@ -218,14 +218,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scattermap.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scattermap.marker.colorscale + - A list or array of any of the above Returns ------- @@ -267,9 +267,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.scattermap.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- diff --git a/plotly/graph_objects/scattermap/_selected.py b/plotly/graph_objects/scattermap/_selected.py index 71970ef4c3..7a6b435b9b 100644 --- a/plotly/graph_objects/scattermap/_selected.py +++ b/plotly/graph_objects/scattermap/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattermap.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/scattermap/_textfont.py b/plotly/graph_objects/scattermap/_textfont.py index 3d189eeae2..26ce7c49f5 100644 --- a/plotly/graph_objects/scattermap/_textfont.py +++ b/plotly/graph_objects/scattermap/_textfont.py @@ -14,11 +14,12 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattermap/_unselected.py b/plotly/graph_objects/scattermap/_unselected.py index 0ffe3fedf6..4441e9d69c 100644 --- a/plotly/graph_objects/scattermap/_unselected.py +++ b/plotly/graph_objects/scattermap/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattermap.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/scattermap/hoverlabel/_font.py b/plotly/graph_objects/scattermap/hoverlabel/_font.py index f3fcd5f7ba..bfc1344aba 100644 --- a/plotly/graph_objects/scattermap/hoverlabel/_font.py +++ b/plotly/graph_objects/scattermap/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattermap/legendgrouptitle/_font.py b/plotly/graph_objects/scattermap/legendgrouptitle/_font.py index 9ef0880f43..153377c6af 100644 --- a/plotly/graph_objects/scattermap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattermap/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattermap/marker/_colorbar.py b/plotly/graph_objects/scattermap/marker/_colorbar.py index 6fd1e6bf38..661eb98246 100644 --- a/plotly/graph_objects/scattermap/marker/_colorbar.py +++ b/plotly/graph_objects/scattermap/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.scattermap.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.scattermap.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.scattermap.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py index cc5b4f2a70..cdd0d26795 100644 --- a/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattermap/marker/colorbar/_title.py b/plotly/graph_objects/scattermap/marker/colorbar/_title.py index 20ebc12214..4e87c3782a 100644 --- a/plotly/graph_objects/scattermap/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattermap/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermap.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattermap.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py b/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py index da5cf3ee03..434af4cde7 100644 --- a/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattermap/selected/_marker.py b/plotly/graph_objects/scattermap/selected/_marker.py index 6945bd1958..a9d780488f 100644 --- a/plotly/graph_objects/scattermap/selected/_marker.py +++ b/plotly/graph_objects/scattermap/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattermap/unselected/_marker.py b/plotly/graph_objects/scattermap/unselected/_marker.py index b41fb9750e..4a3fb8ed08 100644 --- a/plotly/graph_objects/scattermap/unselected/_marker.py +++ b/plotly/graph_objects/scattermap/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_cluster.py b/plotly/graph_objects/scattermapbox/_cluster.py index 80475eeb04..d1e58f023e 100644 --- a/plotly/graph_objects/scattermapbox/_cluster.py +++ b/plotly/graph_objects/scattermapbox/_cluster.py @@ -27,12 +27,13 @@ def color(self): Sets the color for each cluster step. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_hoverlabel.py b/plotly/graph_objects/scattermapbox/_hoverlabel.py index 61bc88dd33..ed37e19d76 100644 --- a/plotly/graph_objects/scattermapbox/_hoverlabel.py +++ b/plotly/graph_objects/scattermapbox/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_legendgrouptitle.py b/plotly/graph_objects/scattermapbox/_legendgrouptitle.py index 294494f394..19c61f48e7 100644 --- a/plotly/graph_objects/scattermapbox/_legendgrouptitle.py +++ b/plotly/graph_objects/scattermapbox/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_line.py b/plotly/graph_objects/scattermapbox/_line.py index 19a107bd44..01d5d230b2 100644 --- a/plotly/graph_objects/scattermapbox/_line.py +++ b/plotly/graph_objects/scattermapbox/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_marker.py b/plotly/graph_objects/scattermapbox/_marker.py index 71a00be084..b04903c85b 100644 --- a/plotly/graph_objects/scattermapbox/_marker.py +++ b/plotly/graph_objects/scattermapbox/_marker.py @@ -218,14 +218,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scattermapbox.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scattermapbox.marker.colorscale + - A list or array of any of the above Returns ------- @@ -267,9 +267,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_selected.py b/plotly/graph_objects/scattermapbox/_selected.py index 0e204dab8f..eed417f948 100644 --- a/plotly/graph_objects/scattermapbox/_selected.py +++ b/plotly/graph_objects/scattermapbox/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_textfont.py b/plotly/graph_objects/scattermapbox/_textfont.py index 57996a6f94..5bca6e6803 100644 --- a/plotly/graph_objects/scattermapbox/_textfont.py +++ b/plotly/graph_objects/scattermapbox/_textfont.py @@ -14,11 +14,12 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattermapbox/_unselected.py b/plotly/graph_objects/scattermapbox/_unselected.py index b08bce0ddf..17b23c821a 100644 --- a/plotly/graph_objects/scattermapbox/_unselected.py +++ b/plotly/graph_objects/scattermapbox/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/scattermapbox/hoverlabel/_font.py b/plotly/graph_objects/scattermapbox/hoverlabel/_font.py index 22dad81c24..a2a9818016 100644 --- a/plotly/graph_objects/scattermapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/scattermapbox/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py b/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py index 85520052f9..5cafcc5c29 100644 --- a/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattermapbox/marker/_colorbar.py b/plotly/graph_objects/scattermapbox/marker/_colorbar.py index 4dc32bcf05..2e5cfa1055 100644 --- a/plotly/graph_objects/scattermapbox/marker/_colorbar.py +++ b/plotly/graph_objects/scattermapbox/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py index 86bb860294..b2469bbbfe 100644 --- a/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattermapbox/marker/colorbar/_title.py b/plotly/graph_objects/scattermapbox/marker/colorbar/_title.py index 3406a91f1a..5d3b6b43df 100644 --- a/plotly/graph_objects/scattermapbox/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattermapbox/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattermapbox.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattermapbox.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py b/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py index 4fc848d7a0..3984c2cf6e 100644 --- a/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattermapbox/selected/_marker.py b/plotly/graph_objects/scattermapbox/selected/_marker.py index bf84db600e..f3198e1146 100644 --- a/plotly/graph_objects/scattermapbox/selected/_marker.py +++ b/plotly/graph_objects/scattermapbox/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattermapbox/unselected/_marker.py b/plotly/graph_objects/scattermapbox/unselected/_marker.py index b092c1f99b..ea69efd057 100644 --- a/plotly/graph_objects/scattermapbox/unselected/_marker.py +++ b/plotly/graph_objects/scattermapbox/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_hoverlabel.py b/plotly/graph_objects/scatterpolar/_hoverlabel.py index ff7256c04b..b899a36346 100644 --- a/plotly/graph_objects/scatterpolar/_hoverlabel.py +++ b/plotly/graph_objects/scatterpolar/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_legendgrouptitle.py b/plotly/graph_objects/scatterpolar/_legendgrouptitle.py index 34bc8e0755..4461696576 100644 --- a/plotly/graph_objects/scatterpolar/_legendgrouptitle.py +++ b/plotly/graph_objects/scatterpolar/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_line.py b/plotly/graph_objects/scatterpolar/_line.py index 142dab54f5..d7ebce92c1 100644 --- a/plotly/graph_objects/scatterpolar/_line.py +++ b/plotly/graph_objects/scatterpolar/_line.py @@ -66,11 +66,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_marker.py b/plotly/graph_objects/scatterpolar/_marker.py index 823bce72a1..b21da28229 100644 --- a/plotly/graph_objects/scatterpolar/_marker.py +++ b/plotly/graph_objects/scatterpolar/_marker.py @@ -224,14 +224,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scatterpolar.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scatterpolar.marker.colorscale + - A list or array of any of the above Returns ------- @@ -273,9 +273,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -362,9 +362,9 @@ def gradient(self): """ The 'gradient' property is an instance of Gradient that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.marker.Gradient` - - A dict of string/value properties that will be passed - to the Gradient constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.marker.Gradient` + - A dict of string/value properties that will be passed to the Gradient constructor Returns ------- @@ -381,9 +381,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_selected.py b/plotly/graph_objects/scatterpolar/_selected.py index 919fd075de..e5125dd646 100644 --- a/plotly/graph_objects/scatterpolar/_selected.py +++ b/plotly/graph_objects/scatterpolar/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.selected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.selected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_textfont.py b/plotly/graph_objects/scatterpolar/_textfont.py index a539d7d216..33a7ae3e78 100644 --- a/plotly/graph_objects/scatterpolar/_textfont.py +++ b/plotly/graph_objects/scatterpolar/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_unselected.py b/plotly/graph_objects/scatterpolar/_unselected.py index 770c201291..594e797d91 100644 --- a/plotly/graph_objects/scatterpolar/_unselected.py +++ b/plotly/graph_objects/scatterpolar/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.unselected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.unselected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scatterpolar/hoverlabel/_font.py b/plotly/graph_objects/scatterpolar/hoverlabel/_font.py index 0147dccce2..7accc916d5 100644 --- a/plotly/graph_objects/scatterpolar/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterpolar/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py b/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py index 91c65bd16c..9aa43b41a2 100644 --- a/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/_colorbar.py b/plotly/graph_objects/scatterpolar/marker/_colorbar.py index fefcbbb0c7..7661a5bc0e 100644 --- a/plotly/graph_objects/scatterpolar/marker/_colorbar.py +++ b/plotly/graph_objects/scatterpolar/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/_gradient.py b/plotly/graph_objects/scatterpolar/marker/_gradient.py index 3d2c6376ed..6b30a0bd40 100644 --- a/plotly/graph_objects/scatterpolar/marker/_gradient.py +++ b/plotly/graph_objects/scatterpolar/marker/_gradient.py @@ -17,12 +17,13 @@ def color(self): radial, the right for horizontal, or the bottom for vertical. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/_line.py b/plotly/graph_objects/scatterpolar/marker/_line.py index 80fef42b00..574d185fef 100644 --- a/plotly/graph_objects/scatterpolar/marker/_line.py +++ b/plotly/graph_objects/scatterpolar/marker/_line.py @@ -147,14 +147,14 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scatterpolar.marker.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scatterpolar.marker.line.colorscale + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py index 248162160b..bd77e3cd43 100644 --- a/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/colorbar/_title.py b/plotly/graph_objects/scatterpolar/marker/colorbar/_title.py index fb11c39076..ec2e825cd2 100644 --- a/plotly/graph_objects/scatterpolar/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatterpolar/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolar.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatterpolar.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py index 61f9efdeb5..ec9ab3f69a 100644 --- a/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolar/selected/_marker.py b/plotly/graph_objects/scatterpolar/selected/_marker.py index 41a9c314c9..536db525ad 100644 --- a/plotly/graph_objects/scatterpolar/selected/_marker.py +++ b/plotly/graph_objects/scatterpolar/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolar/selected/_textfont.py b/plotly/graph_objects/scatterpolar/selected/_textfont.py index fe59dd4e25..09db14ce63 100644 --- a/plotly/graph_objects/scatterpolar/selected/_textfont.py +++ b/plotly/graph_objects/scatterpolar/selected/_textfont.py @@ -16,11 +16,12 @@ def color(self): Sets the text font color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolar/unselected/_marker.py b/plotly/graph_objects/scatterpolar/unselected/_marker.py index c0a840fada..48c285584d 100644 --- a/plotly/graph_objects/scatterpolar/unselected/_marker.py +++ b/plotly/graph_objects/scatterpolar/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolar/unselected/_textfont.py b/plotly/graph_objects/scatterpolar/unselected/_textfont.py index fff1df8a41..5ab77563d0 100644 --- a/plotly/graph_objects/scatterpolar/unselected/_textfont.py +++ b/plotly/graph_objects/scatterpolar/unselected/_textfont.py @@ -17,11 +17,12 @@ def color(self): when a selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_hoverlabel.py b/plotly/graph_objects/scatterpolargl/_hoverlabel.py index 25cfa18c88..59eee05582 100644 --- a/plotly/graph_objects/scatterpolargl/_hoverlabel.py +++ b/plotly/graph_objects/scatterpolargl/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_legendgrouptitle.py b/plotly/graph_objects/scatterpolargl/_legendgrouptitle.py index 41332f303d..ef8298fa90 100644 --- a/plotly/graph_objects/scatterpolargl/_legendgrouptitle.py +++ b/plotly/graph_objects/scatterpolargl/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_line.py b/plotly/graph_objects/scatterpolargl/_line.py index 5fd0e48ceb..f0fa16949d 100644 --- a/plotly/graph_objects/scatterpolargl/_line.py +++ b/plotly/graph_objects/scatterpolargl/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_marker.py b/plotly/graph_objects/scatterpolargl/_marker.py index ed48d4bc82..d90f39da0b 100644 --- a/plotly/graph_objects/scatterpolargl/_marker.py +++ b/plotly/graph_objects/scatterpolargl/_marker.py @@ -196,14 +196,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scatterpolargl.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scatterpolargl.marker.colorscale + - A list or array of any of the above Returns ------- @@ -245,9 +245,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -334,9 +334,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_selected.py b/plotly/graph_objects/scatterpolargl/_selected.py index bff3960e0b..bc1e7202e0 100644 --- a/plotly/graph_objects/scatterpolargl/_selected.py +++ b/plotly/graph_objects/scatterpolargl/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.selected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.selected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_textfont.py b/plotly/graph_objects/scatterpolargl/_textfont.py index a435ba798a..5073e5f054 100644 --- a/plotly/graph_objects/scatterpolargl/_textfont.py +++ b/plotly/graph_objects/scatterpolargl/_textfont.py @@ -27,12 +27,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/_unselected.py b/plotly/graph_objects/scatterpolargl/_unselected.py index 3c19d279a5..0e21056cd5 100644 --- a/plotly/graph_objects/scatterpolargl/_unselected.py +++ b/plotly/graph_objects/scatterpolargl/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.unselected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.unselected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py b/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py index 1737a9fb60..2229796938 100644 --- a/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py b/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py index afcb498f32..cd3b5ac89d 100644 --- a/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/_colorbar.py b/plotly/graph_objects/scatterpolargl/marker/_colorbar.py index 62f4404ad8..17bb76fd53 100644 --- a/plotly/graph_objects/scatterpolargl/marker/_colorbar.py +++ b/plotly/graph_objects/scatterpolargl/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/_line.py b/plotly/graph_objects/scatterpolargl/marker/_line.py index b4ad47132b..01c565433d 100644 --- a/plotly/graph_objects/scatterpolargl/marker/_line.py +++ b/plotly/graph_objects/scatterpolargl/marker/_line.py @@ -147,14 +147,14 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scatterpolargl.marker.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scatterpolargl.marker.line.colorscale + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py index 620254b908..0d5937dcf1 100644 --- a/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/colorbar/_title.py b/plotly/graph_objects/scatterpolargl/marker/colorbar/_title.py index 0128ef650d..eff1af270b 100644 --- a/plotly/graph_objects/scatterpolargl/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatterpolargl/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterpolargl.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatterpolargl.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py index d76646c5e1..a586772ee4 100644 --- a/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/selected/_marker.py b/plotly/graph_objects/scatterpolargl/selected/_marker.py index 8a73e7fd34..ee66b05774 100644 --- a/plotly/graph_objects/scatterpolargl/selected/_marker.py +++ b/plotly/graph_objects/scatterpolargl/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/selected/_textfont.py b/plotly/graph_objects/scatterpolargl/selected/_textfont.py index 5ac9f17b3d..149768c9d9 100644 --- a/plotly/graph_objects/scatterpolargl/selected/_textfont.py +++ b/plotly/graph_objects/scatterpolargl/selected/_textfont.py @@ -16,11 +16,12 @@ def color(self): Sets the text font color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/unselected/_marker.py b/plotly/graph_objects/scatterpolargl/unselected/_marker.py index 747df61b82..d645c10dc8 100644 --- a/plotly/graph_objects/scatterpolargl/unselected/_marker.py +++ b/plotly/graph_objects/scatterpolargl/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/unselected/_textfont.py b/plotly/graph_objects/scatterpolargl/unselected/_textfont.py index fd4b9d7c8d..462a0ac3b3 100644 --- a/plotly/graph_objects/scatterpolargl/unselected/_textfont.py +++ b/plotly/graph_objects/scatterpolargl/unselected/_textfont.py @@ -17,11 +17,12 @@ def color(self): when a selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattersmith/_hoverlabel.py b/plotly/graph_objects/scattersmith/_hoverlabel.py index d44b0d84dc..88418687a9 100644 --- a/plotly/graph_objects/scattersmith/_hoverlabel.py +++ b/plotly/graph_objects/scattersmith/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattersmith/_legendgrouptitle.py b/plotly/graph_objects/scattersmith/_legendgrouptitle.py index 022f3f820f..e902dab169 100644 --- a/plotly/graph_objects/scattersmith/_legendgrouptitle.py +++ b/plotly/graph_objects/scattersmith/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattersmith/_line.py b/plotly/graph_objects/scattersmith/_line.py index d89b9930e2..51d8498fb4 100644 --- a/plotly/graph_objects/scattersmith/_line.py +++ b/plotly/graph_objects/scattersmith/_line.py @@ -66,11 +66,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattersmith/_marker.py b/plotly/graph_objects/scattersmith/_marker.py index 2c6d07372b..e0810e3e54 100644 --- a/plotly/graph_objects/scattersmith/_marker.py +++ b/plotly/graph_objects/scattersmith/_marker.py @@ -224,14 +224,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scattersmith.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scattersmith.marker.colorscale + - A list or array of any of the above Returns ------- @@ -273,9 +273,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -362,9 +362,9 @@ def gradient(self): """ The 'gradient' property is an instance of Gradient that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.marker.Gradient` - - A dict of string/value properties that will be passed - to the Gradient constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.marker.Gradient` + - A dict of string/value properties that will be passed to the Gradient constructor Returns ------- @@ -381,9 +381,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/scattersmith/_selected.py b/plotly/graph_objects/scattersmith/_selected.py index 02eed6f105..cdcf9e4829 100644 --- a/plotly/graph_objects/scattersmith/_selected.py +++ b/plotly/graph_objects/scattersmith/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.selected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.selected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scattersmith/_textfont.py b/plotly/graph_objects/scattersmith/_textfont.py index 10f13d8f38..6e8716bf46 100644 --- a/plotly/graph_objects/scattersmith/_textfont.py +++ b/plotly/graph_objects/scattersmith/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattersmith/_unselected.py b/plotly/graph_objects/scattersmith/_unselected.py index fff36df3f6..2b3664c66a 100644 --- a/plotly/graph_objects/scattersmith/_unselected.py +++ b/plotly/graph_objects/scattersmith/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.unselected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.unselected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scattersmith/hoverlabel/_font.py b/plotly/graph_objects/scattersmith/hoverlabel/_font.py index 6e8bbc252b..514a1da51c 100644 --- a/plotly/graph_objects/scattersmith/hoverlabel/_font.py +++ b/plotly/graph_objects/scattersmith/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py b/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py index 36d91c9c9a..9706ed328a 100644 --- a/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/_colorbar.py b/plotly/graph_objects/scattersmith/marker/_colorbar.py index eecb16f781..13ae0180f2 100644 --- a/plotly/graph_objects/scattersmith/marker/_colorbar.py +++ b/plotly/graph_objects/scattersmith/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/_gradient.py b/plotly/graph_objects/scattersmith/marker/_gradient.py index c796edb82e..585c11c9ae 100644 --- a/plotly/graph_objects/scattersmith/marker/_gradient.py +++ b/plotly/graph_objects/scattersmith/marker/_gradient.py @@ -17,12 +17,13 @@ def color(self): radial, the right for horizontal, or the bottom for vertical. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/_line.py b/plotly/graph_objects/scattersmith/marker/_line.py index 9f406709fb..751d6ba7e9 100644 --- a/plotly/graph_objects/scattersmith/marker/_line.py +++ b/plotly/graph_objects/scattersmith/marker/_line.py @@ -147,14 +147,14 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scattersmith.marker.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scattersmith.marker.line.colorscale + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py index 1a5ad4a50e..45bf2b88fd 100644 --- a/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/colorbar/_title.py b/plotly/graph_objects/scattersmith/marker/colorbar/_title.py index 49b25208c2..c3e0f1d06d 100644 --- a/plotly/graph_objects/scattersmith/marker/colorbar/_title.py +++ b/plotly/graph_objects/scattersmith/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scattersmith.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scattersmith.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py b/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py index 7f39f80e78..fb56359f01 100644 --- a/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattersmith/selected/_marker.py b/plotly/graph_objects/scattersmith/selected/_marker.py index a00976f7f1..500188042d 100644 --- a/plotly/graph_objects/scattersmith/selected/_marker.py +++ b/plotly/graph_objects/scattersmith/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattersmith/selected/_textfont.py b/plotly/graph_objects/scattersmith/selected/_textfont.py index 101bea0a4b..1b6a383782 100644 --- a/plotly/graph_objects/scattersmith/selected/_textfont.py +++ b/plotly/graph_objects/scattersmith/selected/_textfont.py @@ -16,11 +16,12 @@ def color(self): Sets the text font color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattersmith/unselected/_marker.py b/plotly/graph_objects/scattersmith/unselected/_marker.py index 565d4d84aa..28d4ef0b2a 100644 --- a/plotly/graph_objects/scattersmith/unselected/_marker.py +++ b/plotly/graph_objects/scattersmith/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scattersmith/unselected/_textfont.py b/plotly/graph_objects/scattersmith/unselected/_textfont.py index c2cb81cef6..c13166fc6c 100644 --- a/plotly/graph_objects/scattersmith/unselected/_textfont.py +++ b/plotly/graph_objects/scattersmith/unselected/_textfont.py @@ -17,11 +17,12 @@ def color(self): when a selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterternary/_hoverlabel.py b/plotly/graph_objects/scatterternary/_hoverlabel.py index 49b737467b..2f6f58447a 100644 --- a/plotly/graph_objects/scatterternary/_hoverlabel.py +++ b/plotly/graph_objects/scatterternary/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatterternary/_legendgrouptitle.py b/plotly/graph_objects/scatterternary/_legendgrouptitle.py index c67e958bbe..ecff5c45f7 100644 --- a/plotly/graph_objects/scatterternary/_legendgrouptitle.py +++ b/plotly/graph_objects/scatterternary/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatterternary/_line.py b/plotly/graph_objects/scatterternary/_line.py index 103557288e..618b48b4c9 100644 --- a/plotly/graph_objects/scatterternary/_line.py +++ b/plotly/graph_objects/scatterternary/_line.py @@ -66,11 +66,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterternary/_marker.py b/plotly/graph_objects/scatterternary/_marker.py index fe0c279e61..ff134db8e8 100644 --- a/plotly/graph_objects/scatterternary/_marker.py +++ b/plotly/graph_objects/scatterternary/_marker.py @@ -224,14 +224,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scatterternary.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scatterternary.marker.colorscale + - A list or array of any of the above Returns ------- @@ -273,9 +273,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -362,9 +362,9 @@ def gradient(self): """ The 'gradient' property is an instance of Gradient that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.marker.Gradient` - - A dict of string/value properties that will be passed - to the Gradient constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.marker.Gradient` + - A dict of string/value properties that will be passed to the Gradient constructor Returns ------- @@ -381,9 +381,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/scatterternary/_selected.py b/plotly/graph_objects/scatterternary/_selected.py index aa9cf4dd5b..049e2b66e0 100644 --- a/plotly/graph_objects/scatterternary/_selected.py +++ b/plotly/graph_objects/scatterternary/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.selected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.selected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scatterternary/_textfont.py b/plotly/graph_objects/scatterternary/_textfont.py index 8942501a4f..893baadacc 100644 --- a/plotly/graph_objects/scatterternary/_textfont.py +++ b/plotly/graph_objects/scatterternary/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatterternary/_unselected.py b/plotly/graph_objects/scatterternary/_unselected.py index 4667f9dfd3..eee96ff549 100644 --- a/plotly/graph_objects/scatterternary/_unselected.py +++ b/plotly/graph_objects/scatterternary/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- @@ -34,9 +34,9 @@ def textfont(self): """ The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.unselected.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.unselected.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/scatterternary/hoverlabel/_font.py b/plotly/graph_objects/scatterternary/hoverlabel/_font.py index 8b437b4e5c..832631cd7e 100644 --- a/plotly/graph_objects/scatterternary/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterternary/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py b/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py index bd2932fb51..8854cc9a0c 100644 --- a/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/_colorbar.py b/plotly/graph_objects/scatterternary/marker/_colorbar.py index e8c4017753..90833db549 100644 --- a/plotly/graph_objects/scatterternary/marker/_colorbar.py +++ b/plotly/graph_objects/scatterternary/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/_gradient.py b/plotly/graph_objects/scatterternary/marker/_gradient.py index 97a476d3cc..e0afc79f70 100644 --- a/plotly/graph_objects/scatterternary/marker/_gradient.py +++ b/plotly/graph_objects/scatterternary/marker/_gradient.py @@ -17,12 +17,13 @@ def color(self): radial, the right for horizontal, or the bottom for vertical. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/_line.py b/plotly/graph_objects/scatterternary/marker/_line.py index bb8b8e5dc1..de054c7ed4 100644 --- a/plotly/graph_objects/scatterternary/marker/_line.py +++ b/plotly/graph_objects/scatterternary/marker/_line.py @@ -147,14 +147,14 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to scatterternary.marker.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to scatterternary.marker.line.colorscale + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py index 01764a4ead..271f4fb954 100644 --- a/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/colorbar/_title.py b/plotly/graph_objects/scatterternary/marker/colorbar/_title.py index 4f76a9be5f..5f95fc787e 100644 --- a/plotly/graph_objects/scatterternary/marker/colorbar/_title.py +++ b/plotly/graph_objects/scatterternary/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.scatterternary.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.scatterternary.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py index 6cbfc3c93f..3e658665f6 100644 --- a/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterternary/selected/_marker.py b/plotly/graph_objects/scatterternary/selected/_marker.py index 9178137141..446184a675 100644 --- a/plotly/graph_objects/scatterternary/selected/_marker.py +++ b/plotly/graph_objects/scatterternary/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterternary/selected/_textfont.py b/plotly/graph_objects/scatterternary/selected/_textfont.py index 42847c2475..4d7fa6fa92 100644 --- a/plotly/graph_objects/scatterternary/selected/_textfont.py +++ b/plotly/graph_objects/scatterternary/selected/_textfont.py @@ -16,11 +16,12 @@ def color(self): Sets the text font color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterternary/unselected/_marker.py b/plotly/graph_objects/scatterternary/unselected/_marker.py index 3c7cf938c4..c6d3580cf8 100644 --- a/plotly/graph_objects/scatterternary/unselected/_marker.py +++ b/plotly/graph_objects/scatterternary/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/scatterternary/unselected/_textfont.py b/plotly/graph_objects/scatterternary/unselected/_textfont.py index aab5b94a5d..28000ef2a6 100644 --- a/plotly/graph_objects/scatterternary/unselected/_textfont.py +++ b/plotly/graph_objects/scatterternary/unselected/_textfont.py @@ -17,11 +17,12 @@ def color(self): when a selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/splom/_dimension.py b/plotly/graph_objects/splom/_dimension.py index c74a0bf502..ad40737058 100644 --- a/plotly/graph_objects/splom/_dimension.py +++ b/plotly/graph_objects/splom/_dimension.py @@ -23,9 +23,9 @@ def axis(self): """ The 'axis' property is an instance of Axis that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.dimension.Axis` - - A dict of string/value properties that will be passed - to the Axis constructor + + - An instance of :class:`plotly.graph_objects.splom.dimension.Axis` + - A dict of string/value properties that will be passed to the Axis constructor Returns ------- diff --git a/plotly/graph_objects/splom/_hoverlabel.py b/plotly/graph_objects/splom/_hoverlabel.py index 2334a23d94..38b5b5198c 100644 --- a/plotly/graph_objects/splom/_hoverlabel.py +++ b/plotly/graph_objects/splom/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.splom.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/splom/_legendgrouptitle.py b/plotly/graph_objects/splom/_legendgrouptitle.py index b3b8206270..f347ac14ac 100644 --- a/plotly/graph_objects/splom/_legendgrouptitle.py +++ b/plotly/graph_objects/splom/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.splom.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/splom/_marker.py b/plotly/graph_objects/splom/_marker.py index 9badc1b81a..698b8ee7ee 100644 --- a/plotly/graph_objects/splom/_marker.py +++ b/plotly/graph_objects/splom/_marker.py @@ -196,14 +196,14 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to splom.marker.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to splom.marker.colorscale + - A list or array of any of the above Returns ------- @@ -245,9 +245,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.splom.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -334,9 +334,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.splom.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/splom/_selected.py b/plotly/graph_objects/splom/_selected.py index 99d2879577..e9c8b2e2ca 100644 --- a/plotly/graph_objects/splom/_selected.py +++ b/plotly/graph_objects/splom/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.splom.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/splom/_unselected.py b/plotly/graph_objects/splom/_unselected.py index 7d6b2da042..3b33b9e4b7 100644 --- a/plotly/graph_objects/splom/_unselected.py +++ b/plotly/graph_objects/splom/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.splom.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/splom/hoverlabel/_font.py b/plotly/graph_objects/splom/hoverlabel/_font.py index a88e42378c..307a86b89b 100644 --- a/plotly/graph_objects/splom/hoverlabel/_font.py +++ b/plotly/graph_objects/splom/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/splom/legendgrouptitle/_font.py b/plotly/graph_objects/splom/legendgrouptitle/_font.py index dc0135d008..c571aeb2f7 100644 --- a/plotly/graph_objects/splom/legendgrouptitle/_font.py +++ b/plotly/graph_objects/splom/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/splom/marker/_colorbar.py b/plotly/graph_objects/splom/marker/_colorbar.py index 245774dc56..e82997c147 100644 --- a/plotly/graph_objects/splom/marker/_colorbar.py +++ b/plotly/graph_objects/splom/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.splom.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.splom.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.splom.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/splom/marker/_line.py b/plotly/graph_objects/splom/marker/_line.py index 88ca0295e9..66a8c5d18c 100644 --- a/plotly/graph_objects/splom/marker/_line.py +++ b/plotly/graph_objects/splom/marker/_line.py @@ -147,14 +147,14 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A number that will be interpreted as a color - according to splom.marker.line.colorscale - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A number that will be interpreted as a color according to splom.marker.line.colorscale + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/splom/marker/colorbar/_tickfont.py b/plotly/graph_objects/splom/marker/colorbar/_tickfont.py index 3eabec3905..d8fa5ebe59 100644 --- a/plotly/graph_objects/splom/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/splom/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/splom/marker/colorbar/_title.py b/plotly/graph_objects/splom/marker/colorbar/_title.py index e1859ceafc..d2d6871420 100644 --- a/plotly/graph_objects/splom/marker/colorbar/_title.py +++ b/plotly/graph_objects/splom/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.splom.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.splom.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/splom/marker/colorbar/title/_font.py b/plotly/graph_objects/splom/marker/colorbar/title/_font.py index ef67d8b1d5..ddf305771a 100644 --- a/plotly/graph_objects/splom/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/splom/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/splom/selected/_marker.py b/plotly/graph_objects/splom/selected/_marker.py index abd1dd9452..4ed4e7472f 100644 --- a/plotly/graph_objects/splom/selected/_marker.py +++ b/plotly/graph_objects/splom/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/splom/unselected/_marker.py b/plotly/graph_objects/splom/unselected/_marker.py index f977ec96d5..efdd1a2624 100644 --- a/plotly/graph_objects/splom/unselected/_marker.py +++ b/plotly/graph_objects/splom/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/streamtube/_colorbar.py b/plotly/graph_objects/streamtube/_colorbar.py index 9a7b71fb61..9e3622947f 100644 --- a/plotly/graph_objects/streamtube/_colorbar.py +++ b/plotly/graph_objects/streamtube/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.streamtube.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.streamtube.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -653,9 +657,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.streamtube.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.streamtube.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -950,9 +954,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.streamtube.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.streamtube.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/streamtube/_hoverlabel.py b/plotly/graph_objects/streamtube/_hoverlabel.py index d8820ae4b6..7e05d66294 100644 --- a/plotly/graph_objects/streamtube/_hoverlabel.py +++ b/plotly/graph_objects/streamtube/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.streamtube.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.streamtube.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/streamtube/_legendgrouptitle.py b/plotly/graph_objects/streamtube/_legendgrouptitle.py index 5af36910f4..fff4b1b666 100644 --- a/plotly/graph_objects/streamtube/_legendgrouptitle.py +++ b/plotly/graph_objects/streamtube/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.streamtube.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.streamtube.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/streamtube/colorbar/_tickfont.py b/plotly/graph_objects/streamtube/colorbar/_tickfont.py index 9d9ea55f77..aede288d32 100644 --- a/plotly/graph_objects/streamtube/colorbar/_tickfont.py +++ b/plotly/graph_objects/streamtube/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/streamtube/colorbar/_title.py b/plotly/graph_objects/streamtube/colorbar/_title.py index b1749f25f4..2adf98dead 100644 --- a/plotly/graph_objects/streamtube/colorbar/_title.py +++ b/plotly/graph_objects/streamtube/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.streamtube.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.streamtube.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/streamtube/colorbar/title/_font.py b/plotly/graph_objects/streamtube/colorbar/title/_font.py index 5716ab477d..0eb1cb3158 100644 --- a/plotly/graph_objects/streamtube/colorbar/title/_font.py +++ b/plotly/graph_objects/streamtube/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/streamtube/hoverlabel/_font.py b/plotly/graph_objects/streamtube/hoverlabel/_font.py index e14a98f34a..195925c272 100644 --- a/plotly/graph_objects/streamtube/hoverlabel/_font.py +++ b/plotly/graph_objects/streamtube/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/streamtube/legendgrouptitle/_font.py b/plotly/graph_objects/streamtube/legendgrouptitle/_font.py index f8f9eb9132..0c39c42165 100644 --- a/plotly/graph_objects/streamtube/legendgrouptitle/_font.py +++ b/plotly/graph_objects/streamtube/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/sunburst/_hoverlabel.py b/plotly/graph_objects/sunburst/_hoverlabel.py index a73aa02212..b3870fb79a 100644 --- a/plotly/graph_objects/sunburst/_hoverlabel.py +++ b/plotly/graph_objects/sunburst/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.sunburst.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/sunburst/_insidetextfont.py b/plotly/graph_objects/sunburst/_insidetextfont.py index 0740d5630d..0f1e9324b9 100644 --- a/plotly/graph_objects/sunburst/_insidetextfont.py +++ b/plotly/graph_objects/sunburst/_insidetextfont.py @@ -33,12 +33,13 @@ class Insidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/_legendgrouptitle.py b/plotly/graph_objects/sunburst/_legendgrouptitle.py index f134bb23ba..4ecc4da283 100644 --- a/plotly/graph_objects/sunburst/_legendgrouptitle.py +++ b/plotly/graph_objects/sunburst/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.sunburst.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/sunburst/_marker.py b/plotly/graph_objects/sunburst/_marker.py index a4c6ac8080..eb89b6172b 100644 --- a/plotly/graph_objects/sunburst/_marker.py +++ b/plotly/graph_objects/sunburst/_marker.py @@ -166,9 +166,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.sunburst.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -274,9 +274,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.sunburst.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -295,9 +295,9 @@ def pattern(self): The 'pattern' property is an instance of Pattern that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.marker.Pattern` - - A dict of string/value properties that will be passed - to the Pattern constructor + + - An instance of :class:`plotly.graph_objects.sunburst.marker.Pattern` + - A dict of string/value properties that will be passed to the Pattern constructor Returns ------- diff --git a/plotly/graph_objects/sunburst/_outsidetextfont.py b/plotly/graph_objects/sunburst/_outsidetextfont.py index fe34cffab9..f45e97ca78 100644 --- a/plotly/graph_objects/sunburst/_outsidetextfont.py +++ b/plotly/graph_objects/sunburst/_outsidetextfont.py @@ -33,12 +33,13 @@ class Outsidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/_root.py b/plotly/graph_objects/sunburst/_root.py index ad0032618d..afdee22ac8 100644 --- a/plotly/graph_objects/sunburst/_root.py +++ b/plotly/graph_objects/sunburst/_root.py @@ -18,11 +18,12 @@ def color(self): markers. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/sunburst/_textfont.py b/plotly/graph_objects/sunburst/_textfont.py index 11a5a765ca..046d15ce51 100644 --- a/plotly/graph_objects/sunburst/_textfont.py +++ b/plotly/graph_objects/sunburst/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/hoverlabel/_font.py b/plotly/graph_objects/sunburst/hoverlabel/_font.py index 8cc50138f1..c1d0a58b1c 100644 --- a/plotly/graph_objects/sunburst/hoverlabel/_font.py +++ b/plotly/graph_objects/sunburst/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/legendgrouptitle/_font.py b/plotly/graph_objects/sunburst/legendgrouptitle/_font.py index d60839b195..e8b8796885 100644 --- a/plotly/graph_objects/sunburst/legendgrouptitle/_font.py +++ b/plotly/graph_objects/sunburst/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/_colorbar.py b/plotly/graph_objects/sunburst/marker/_colorbar.py index 53d311d425..47aea339e6 100644 --- a/plotly/graph_objects/sunburst/marker/_colorbar.py +++ b/plotly/graph_objects/sunburst/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.sunburst.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.sunburst.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.sunburst.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/_line.py b/plotly/graph_objects/sunburst/marker/_line.py index 5a73d42e1e..8985af5512 100644 --- a/plotly/graph_objects/sunburst/marker/_line.py +++ b/plotly/graph_objects/sunburst/marker/_line.py @@ -17,12 +17,13 @@ def color(self): the `paper_bgcolor` value. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/_pattern.py b/plotly/graph_objects/sunburst/marker/_pattern.py index 3a9857d9e8..06ea47023f 100644 --- a/plotly/graph_objects/sunburst/marker/_pattern.py +++ b/plotly/graph_objects/sunburst/marker/_pattern.py @@ -34,12 +34,13 @@ def bgcolor(self): background. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -78,12 +79,13 @@ def fgcolor(self): white to increase contrast with the `bgcolor`. The 'fgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py b/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py index 8816a2bef4..845c907383 100644 --- a/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/colorbar/_title.py b/plotly/graph_objects/sunburst/marker/colorbar/_title.py index 5dd3f1ce96..834abf69db 100644 --- a/plotly/graph_objects/sunburst/marker/colorbar/_title.py +++ b/plotly/graph_objects/sunburst/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.sunburst.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.sunburst.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py b/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py index 12156cacff..9ef726362b 100644 --- a/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/surface/_colorbar.py b/plotly/graph_objects/surface/_colorbar.py index 8ed67b9af8..bc5fad0c48 100644 --- a/plotly/graph_objects/surface/_colorbar.py +++ b/plotly/graph_objects/surface/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.surface.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.surface.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.surface.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/surface/_contours.py b/plotly/graph_objects/surface/_contours.py index 26ebf6ed47..c541d24881 100644 --- a/plotly/graph_objects/surface/_contours.py +++ b/plotly/graph_objects/surface/_contours.py @@ -15,9 +15,9 @@ def x(self): """ The 'x' property is an instance of X that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.contours.X` - - A dict of string/value properties that will be passed - to the X constructor + + - An instance of :class:`plotly.graph_objects.surface.contours.X` + - A dict of string/value properties that will be passed to the X constructor Returns ------- @@ -34,9 +34,9 @@ def y(self): """ The 'y' property is an instance of Y that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.contours.Y` - - A dict of string/value properties that will be passed - to the Y constructor + + - An instance of :class:`plotly.graph_objects.surface.contours.Y` + - A dict of string/value properties that will be passed to the Y constructor Returns ------- @@ -53,9 +53,9 @@ def z(self): """ The 'z' property is an instance of Z that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.contours.Z` - - A dict of string/value properties that will be passed - to the Z constructor + + - An instance of :class:`plotly.graph_objects.surface.contours.Z` + - A dict of string/value properties that will be passed to the Z constructor Returns ------- diff --git a/plotly/graph_objects/surface/_hoverlabel.py b/plotly/graph_objects/surface/_hoverlabel.py index 1762e5d834..3acc06d7d5 100644 --- a/plotly/graph_objects/surface/_hoverlabel.py +++ b/plotly/graph_objects/surface/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.surface.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/surface/_legendgrouptitle.py b/plotly/graph_objects/surface/_legendgrouptitle.py index 59ecb74ba3..c05a325883 100644 --- a/plotly/graph_objects/surface/_legendgrouptitle.py +++ b/plotly/graph_objects/surface/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.surface.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/surface/colorbar/_tickfont.py b/plotly/graph_objects/surface/colorbar/_tickfont.py index d71b9d8d1b..d9db78cb8f 100644 --- a/plotly/graph_objects/surface/colorbar/_tickfont.py +++ b/plotly/graph_objects/surface/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/surface/colorbar/_title.py b/plotly/graph_objects/surface/colorbar/_title.py index 82cfb3a691..2c50921271 100644 --- a/plotly/graph_objects/surface/colorbar/_title.py +++ b/plotly/graph_objects/surface/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.surface.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/surface/colorbar/title/_font.py b/plotly/graph_objects/surface/colorbar/title/_font.py index 1ed0578c80..509b61b847 100644 --- a/plotly/graph_objects/surface/colorbar/title/_font.py +++ b/plotly/graph_objects/surface/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/surface/contours/_x.py b/plotly/graph_objects/surface/contours/_x.py index 585a3311e4..5a03d385c9 100644 --- a/plotly/graph_objects/surface/contours/_x.py +++ b/plotly/graph_objects/surface/contours/_x.py @@ -28,11 +28,12 @@ def color(self): Sets the color of the contour lines. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -89,11 +90,12 @@ def highlightcolor(self): Sets the color of the highlighted contour lines. The 'highlightcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -129,9 +131,9 @@ def project(self): """ The 'project' property is an instance of Project that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.contours.x.Project` - - A dict of string/value properties that will be passed - to the Project constructor + + - An instance of :class:`plotly.graph_objects.surface.contours.x.Project` + - A dict of string/value properties that will be passed to the Project constructor Returns ------- diff --git a/plotly/graph_objects/surface/contours/_y.py b/plotly/graph_objects/surface/contours/_y.py index 97e3d2f12e..92693c4b14 100644 --- a/plotly/graph_objects/surface/contours/_y.py +++ b/plotly/graph_objects/surface/contours/_y.py @@ -28,11 +28,12 @@ def color(self): Sets the color of the contour lines. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -89,11 +90,12 @@ def highlightcolor(self): Sets the color of the highlighted contour lines. The 'highlightcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -129,9 +131,9 @@ def project(self): """ The 'project' property is an instance of Project that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.contours.y.Project` - - A dict of string/value properties that will be passed - to the Project constructor + + - An instance of :class:`plotly.graph_objects.surface.contours.y.Project` + - A dict of string/value properties that will be passed to the Project constructor Returns ------- diff --git a/plotly/graph_objects/surface/contours/_z.py b/plotly/graph_objects/surface/contours/_z.py index e809ce179b..997df6747b 100644 --- a/plotly/graph_objects/surface/contours/_z.py +++ b/plotly/graph_objects/surface/contours/_z.py @@ -28,11 +28,12 @@ def color(self): Sets the color of the contour lines. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -89,11 +90,12 @@ def highlightcolor(self): Sets the color of the highlighted contour lines. The 'highlightcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -129,9 +131,9 @@ def project(self): """ The 'project' property is an instance of Project that may be specified as: - - An instance of :class:`plotly.graph_objects.surface.contours.z.Project` - - A dict of string/value properties that will be passed - to the Project constructor + + - An instance of :class:`plotly.graph_objects.surface.contours.z.Project` + - A dict of string/value properties that will be passed to the Project constructor Returns ------- diff --git a/plotly/graph_objects/surface/hoverlabel/_font.py b/plotly/graph_objects/surface/hoverlabel/_font.py index 0745356b55..bd4175e8a5 100644 --- a/plotly/graph_objects/surface/hoverlabel/_font.py +++ b/plotly/graph_objects/surface/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/surface/legendgrouptitle/_font.py b/plotly/graph_objects/surface/legendgrouptitle/_font.py index ad5b7e31ae..6faf2e4fa2 100644 --- a/plotly/graph_objects/surface/legendgrouptitle/_font.py +++ b/plotly/graph_objects/surface/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/table/_cells.py b/plotly/graph_objects/table/_cells.py index 98c5319855..e58b681e69 100644 --- a/plotly/graph_objects/table/_cells.py +++ b/plotly/graph_objects/table/_cells.py @@ -74,9 +74,9 @@ def fill(self): """ The 'fill' property is an instance of Fill that may be specified as: - - An instance of :class:`plotly.graph_objects.table.cells.Fill` - - A dict of string/value properties that will be passed - to the Fill constructor + + - An instance of :class:`plotly.graph_objects.table.cells.Fill` + - A dict of string/value properties that will be passed to the Fill constructor Returns ------- @@ -93,9 +93,9 @@ def font(self): """ The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.table.cells.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.table.cells.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- @@ -170,9 +170,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.table.cells.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.table.cells.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/table/_header.py b/plotly/graph_objects/table/_header.py index 5b77983768..f6a8abae1b 100644 --- a/plotly/graph_objects/table/_header.py +++ b/plotly/graph_objects/table/_header.py @@ -74,9 +74,9 @@ def fill(self): """ The 'fill' property is an instance of Fill that may be specified as: - - An instance of :class:`plotly.graph_objects.table.header.Fill` - - A dict of string/value properties that will be passed - to the Fill constructor + + - An instance of :class:`plotly.graph_objects.table.header.Fill` + - A dict of string/value properties that will be passed to the Fill constructor Returns ------- @@ -93,9 +93,9 @@ def font(self): """ The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.table.header.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.table.header.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- @@ -170,9 +170,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.table.header.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.table.header.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/table/_hoverlabel.py b/plotly/graph_objects/table/_hoverlabel.py index 46d3bc8050..b870bd7cb5 100644 --- a/plotly/graph_objects/table/_hoverlabel.py +++ b/plotly/graph_objects/table/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.table.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.table.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/table/_legendgrouptitle.py b/plotly/graph_objects/table/_legendgrouptitle.py index 67f631fcab..9b444104db 100644 --- a/plotly/graph_objects/table/_legendgrouptitle.py +++ b/plotly/graph_objects/table/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.table.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.table.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/table/cells/_fill.py b/plotly/graph_objects/table/cells/_fill.py index 3dd81d5b9a..a1197a2a2d 100644 --- a/plotly/graph_objects/table/cells/_fill.py +++ b/plotly/graph_objects/table/cells/_fill.py @@ -17,12 +17,13 @@ def color(self): an array of colors or a 2D array of colors. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/table/cells/_font.py b/plotly/graph_objects/table/cells/_font.py index 770aaffb15..d333e1456c 100644 --- a/plotly/graph_objects/table/cells/_font.py +++ b/plotly/graph_objects/table/cells/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/table/cells/_line.py b/plotly/graph_objects/table/cells/_line.py index 9ee5cc01bc..b7f4650f49 100644 --- a/plotly/graph_objects/table/cells/_line.py +++ b/plotly/graph_objects/table/cells/_line.py @@ -14,12 +14,13 @@ class Line(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/table/header/_fill.py b/plotly/graph_objects/table/header/_fill.py index dd5ca5a55c..b9d60eb0bd 100644 --- a/plotly/graph_objects/table/header/_fill.py +++ b/plotly/graph_objects/table/header/_fill.py @@ -17,12 +17,13 @@ def color(self): an array of colors or a 2D array of colors. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/table/header/_font.py b/plotly/graph_objects/table/header/_font.py index 56ed7fe0fb..349a6c0ef9 100644 --- a/plotly/graph_objects/table/header/_font.py +++ b/plotly/graph_objects/table/header/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/table/header/_line.py b/plotly/graph_objects/table/header/_line.py index 7834b18247..b7a0b62919 100644 --- a/plotly/graph_objects/table/header/_line.py +++ b/plotly/graph_objects/table/header/_line.py @@ -14,12 +14,13 @@ class Line(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/table/hoverlabel/_font.py b/plotly/graph_objects/table/hoverlabel/_font.py index 8757c5cef3..75e467e14d 100644 --- a/plotly/graph_objects/table/hoverlabel/_font.py +++ b/plotly/graph_objects/table/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/table/legendgrouptitle/_font.py b/plotly/graph_objects/table/legendgrouptitle/_font.py index 7cc30607e4..1f502db2d0 100644 --- a/plotly/graph_objects/table/legendgrouptitle/_font.py +++ b/plotly/graph_objects/table/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/treemap/_hoverlabel.py b/plotly/graph_objects/treemap/_hoverlabel.py index 91d9cadf92..66e45256eb 100644 --- a/plotly/graph_objects/treemap/_hoverlabel.py +++ b/plotly/graph_objects/treemap/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.treemap.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/treemap/_insidetextfont.py b/plotly/graph_objects/treemap/_insidetextfont.py index e2a5e2444c..06333328d2 100644 --- a/plotly/graph_objects/treemap/_insidetextfont.py +++ b/plotly/graph_objects/treemap/_insidetextfont.py @@ -33,12 +33,13 @@ class Insidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/treemap/_legendgrouptitle.py b/plotly/graph_objects/treemap/_legendgrouptitle.py index 819bfb3ca8..3420dd6660 100644 --- a/plotly/graph_objects/treemap/_legendgrouptitle.py +++ b/plotly/graph_objects/treemap/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.treemap.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/treemap/_marker.py b/plotly/graph_objects/treemap/_marker.py index a742f93de9..3c9499a2d2 100644 --- a/plotly/graph_objects/treemap/_marker.py +++ b/plotly/graph_objects/treemap/_marker.py @@ -169,9 +169,9 @@ def colorbar(self): """ The 'colorbar' property is an instance of ColorBar that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.marker.ColorBar` - - A dict of string/value properties that will be passed - to the ColorBar constructor + + - An instance of :class:`plotly.graph_objects.treemap.marker.ColorBar` + - A dict of string/value properties that will be passed to the ColorBar constructor Returns ------- @@ -324,9 +324,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.treemap.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -343,9 +343,9 @@ def pad(self): """ The 'pad' property is an instance of Pad that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.marker.Pad` - - A dict of string/value properties that will be passed - to the Pad constructor + + - An instance of :class:`plotly.graph_objects.treemap.marker.Pad` + - A dict of string/value properties that will be passed to the Pad constructor Returns ------- @@ -364,9 +364,9 @@ def pattern(self): The 'pattern' property is an instance of Pattern that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.marker.Pattern` - - A dict of string/value properties that will be passed - to the Pattern constructor + + - An instance of :class:`plotly.graph_objects.treemap.marker.Pattern` + - A dict of string/value properties that will be passed to the Pattern constructor Returns ------- diff --git a/plotly/graph_objects/treemap/_outsidetextfont.py b/plotly/graph_objects/treemap/_outsidetextfont.py index fdf4f86f71..8e8d352267 100644 --- a/plotly/graph_objects/treemap/_outsidetextfont.py +++ b/plotly/graph_objects/treemap/_outsidetextfont.py @@ -33,12 +33,13 @@ class Outsidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/treemap/_pathbar.py b/plotly/graph_objects/treemap/_pathbar.py index edc4b525ee..44e5ae6c28 100644 --- a/plotly/graph_objects/treemap/_pathbar.py +++ b/plotly/graph_objects/treemap/_pathbar.py @@ -61,9 +61,9 @@ def textfont(self): The 'textfont' property is an instance of Textfont that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.pathbar.Textfont` - - A dict of string/value properties that will be passed - to the Textfont constructor + + - An instance of :class:`plotly.graph_objects.treemap.pathbar.Textfont` + - A dict of string/value properties that will be passed to the Textfont constructor Returns ------- diff --git a/plotly/graph_objects/treemap/_root.py b/plotly/graph_objects/treemap/_root.py index 4caaddd68e..3c6d30cfc8 100644 --- a/plotly/graph_objects/treemap/_root.py +++ b/plotly/graph_objects/treemap/_root.py @@ -18,11 +18,12 @@ def color(self): markers. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/treemap/_textfont.py b/plotly/graph_objects/treemap/_textfont.py index caeea45a58..3fab7306f3 100644 --- a/plotly/graph_objects/treemap/_textfont.py +++ b/plotly/graph_objects/treemap/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/treemap/hoverlabel/_font.py b/plotly/graph_objects/treemap/hoverlabel/_font.py index 55ceb220c6..7ad3f96200 100644 --- a/plotly/graph_objects/treemap/hoverlabel/_font.py +++ b/plotly/graph_objects/treemap/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/treemap/legendgrouptitle/_font.py b/plotly/graph_objects/treemap/legendgrouptitle/_font.py index 5731e37670..ae1bf48bd2 100644 --- a/plotly/graph_objects/treemap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/treemap/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/treemap/marker/_colorbar.py b/plotly/graph_objects/treemap/marker/_colorbar.py index 3ec07f6cd9..0601123f50 100644 --- a/plotly/graph_objects/treemap/marker/_colorbar.py +++ b/plotly/graph_objects/treemap/marker/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.marker.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.treemap.marker.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.marker.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.treemap.marker.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.marker.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.treemap.marker.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/treemap/marker/_line.py b/plotly/graph_objects/treemap/marker/_line.py index 95428ec64b..4ad7832c9f 100644 --- a/plotly/graph_objects/treemap/marker/_line.py +++ b/plotly/graph_objects/treemap/marker/_line.py @@ -17,12 +17,13 @@ def color(self): the `paper_bgcolor` value. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/treemap/marker/_pattern.py b/plotly/graph_objects/treemap/marker/_pattern.py index 6b95f164ef..000fd8ec96 100644 --- a/plotly/graph_objects/treemap/marker/_pattern.py +++ b/plotly/graph_objects/treemap/marker/_pattern.py @@ -34,12 +34,13 @@ def bgcolor(self): background. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -78,12 +79,13 @@ def fgcolor(self): white to increase contrast with the `bgcolor`. The 'fgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py b/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py index ed2aef143f..cc566c3f03 100644 --- a/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/treemap/marker/colorbar/_title.py b/plotly/graph_objects/treemap/marker/colorbar/_title.py index 142a639394..557c2daa25 100644 --- a/plotly/graph_objects/treemap/marker/colorbar/_title.py +++ b/plotly/graph_objects/treemap/marker/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.treemap.marker.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.treemap.marker.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/treemap/marker/colorbar/title/_font.py b/plotly/graph_objects/treemap/marker/colorbar/title/_font.py index 17037951f1..ed936ee391 100644 --- a/plotly/graph_objects/treemap/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/treemap/marker/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/treemap/pathbar/_textfont.py b/plotly/graph_objects/treemap/pathbar/_textfont.py index 7aeeaa1cd6..4468ca3084 100644 --- a/plotly/graph_objects/treemap/pathbar/_textfont.py +++ b/plotly/graph_objects/treemap/pathbar/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/violin/_box.py b/plotly/graph_objects/violin/_box.py index 9a3a352ed1..04c839a3bf 100644 --- a/plotly/graph_objects/violin/_box.py +++ b/plotly/graph_objects/violin/_box.py @@ -16,11 +16,12 @@ def fillcolor(self): Sets the inner box plot fill color. The 'fillcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -37,9 +38,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.box.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.violin.box.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/violin/_hoverlabel.py b/plotly/graph_objects/violin/_hoverlabel.py index 8c5460a6cb..ef39dfec8e 100644 --- a/plotly/graph_objects/violin/_hoverlabel.py +++ b/plotly/graph_objects/violin/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.violin.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/violin/_legendgrouptitle.py b/plotly/graph_objects/violin/_legendgrouptitle.py index 17e6b266f8..ff10e0c0f2 100644 --- a/plotly/graph_objects/violin/_legendgrouptitle.py +++ b/plotly/graph_objects/violin/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.violin.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/violin/_line.py b/plotly/graph_objects/violin/_line.py index 4b197432a6..493ebb11d0 100644 --- a/plotly/graph_objects/violin/_line.py +++ b/plotly/graph_objects/violin/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the color of line bounding the violin(s). The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/violin/_marker.py b/plotly/graph_objects/violin/_marker.py index 6351572be8..6b471029f1 100644 --- a/plotly/graph_objects/violin/_marker.py +++ b/plotly/graph_objects/violin/_marker.py @@ -47,11 +47,12 @@ def color(self): `marker.cmin` and `marker.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -68,9 +69,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.violin.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- @@ -107,11 +108,12 @@ def outliercolor(self): Sets the color of the outlier sample points. The 'outliercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/violin/_meanline.py b/plotly/graph_objects/violin/_meanline.py index 579c3cbeb1..466676b22b 100644 --- a/plotly/graph_objects/violin/_meanline.py +++ b/plotly/graph_objects/violin/_meanline.py @@ -16,11 +16,12 @@ def color(self): Sets the mean line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/violin/_selected.py b/plotly/graph_objects/violin/_selected.py index 10112cb6dc..a5eb58cd81 100644 --- a/plotly/graph_objects/violin/_selected.py +++ b/plotly/graph_objects/violin/_selected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.selected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.violin.selected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/violin/_unselected.py b/plotly/graph_objects/violin/_unselected.py index 28b587e3ae..21400fd4de 100644 --- a/plotly/graph_objects/violin/_unselected.py +++ b/plotly/graph_objects/violin/_unselected.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.violin.unselected.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.violin.unselected.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/violin/box/_line.py b/plotly/graph_objects/violin/box/_line.py index d8d47a5606..6a369beac7 100644 --- a/plotly/graph_objects/violin/box/_line.py +++ b/plotly/graph_objects/violin/box/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the inner box plot bounding line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/violin/hoverlabel/_font.py b/plotly/graph_objects/violin/hoverlabel/_font.py index a4892a14bc..5a157b3cb3 100644 --- a/plotly/graph_objects/violin/hoverlabel/_font.py +++ b/plotly/graph_objects/violin/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/violin/legendgrouptitle/_font.py b/plotly/graph_objects/violin/legendgrouptitle/_font.py index a015fc005a..8fa227d64e 100644 --- a/plotly/graph_objects/violin/legendgrouptitle/_font.py +++ b/plotly/graph_objects/violin/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/violin/marker/_line.py b/plotly/graph_objects/violin/marker/_line.py index f77fbfadad..7342ad7547 100644 --- a/plotly/graph_objects/violin/marker/_line.py +++ b/plotly/graph_objects/violin/marker/_line.py @@ -19,11 +19,12 @@ def color(self): `marker.line.cmin` and `marker.line.cmax` if set. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -42,11 +43,12 @@ def outliercolor(self): Defaults to marker.color The 'outliercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/violin/selected/_marker.py b/plotly/graph_objects/violin/selected/_marker.py index 27b9706bc5..7f4d3418c7 100644 --- a/plotly/graph_objects/violin/selected/_marker.py +++ b/plotly/graph_objects/violin/selected/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of selected points. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/violin/unselected/_marker.py b/plotly/graph_objects/violin/unselected/_marker.py index d8d086a226..0b8a8bfa59 100644 --- a/plotly/graph_objects/violin/unselected/_marker.py +++ b/plotly/graph_objects/violin/unselected/_marker.py @@ -17,11 +17,12 @@ def color(self): selection exists. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/volume/_caps.py b/plotly/graph_objects/volume/_caps.py index f0cbb6296c..07e3429562 100644 --- a/plotly/graph_objects/volume/_caps.py +++ b/plotly/graph_objects/volume/_caps.py @@ -15,9 +15,9 @@ def x(self): """ The 'x' property is an instance of X that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.caps.X` - - A dict of string/value properties that will be passed - to the X constructor + + - An instance of :class:`plotly.graph_objects.volume.caps.X` + - A dict of string/value properties that will be passed to the X constructor Returns ------- @@ -34,9 +34,9 @@ def y(self): """ The 'y' property is an instance of Y that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.caps.Y` - - A dict of string/value properties that will be passed - to the Y constructor + + - An instance of :class:`plotly.graph_objects.volume.caps.Y` + - A dict of string/value properties that will be passed to the Y constructor Returns ------- @@ -53,9 +53,9 @@ def z(self): """ The 'z' property is an instance of Z that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.caps.Z` - - A dict of string/value properties that will be passed - to the Z constructor + + - An instance of :class:`plotly.graph_objects.volume.caps.Z` + - A dict of string/value properties that will be passed to the Z constructor Returns ------- diff --git a/plotly/graph_objects/volume/_colorbar.py b/plotly/graph_objects/volume/_colorbar.py index 87d9af210f..1c47af6c37 100644 --- a/plotly/graph_objects/volume/_colorbar.py +++ b/plotly/graph_objects/volume/_colorbar.py @@ -66,11 +66,12 @@ def bgcolor(self): Sets the color of padded area. The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -88,11 +89,12 @@ def bordercolor(self): Sets the axis line color. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -322,11 +324,12 @@ def outlinecolor(self): Sets the axis line color. The 'outlinecolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -558,11 +561,12 @@ def tickcolor(self): Sets the tick color. The 'tickcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -581,9 +585,9 @@ def tickfont(self): The 'tickfont' property is an instance of Tickfont that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.colorbar.Tickfont` - - A dict of string/value properties that will be passed - to the Tickfont constructor + + - An instance of :class:`plotly.graph_objects.volume.colorbar.Tickfont` + - A dict of string/value properties that will be passed to the Tickfont constructor Returns ------- @@ -654,9 +658,9 @@ def tickformatstopdefaults(self): The 'tickformatstopdefaults' property is an instance of Tickformatstop that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.colorbar.Tickformatstop` - - A dict of string/value properties that will be passed - to the Tickformatstop constructor + + - An instance of :class:`plotly.graph_objects.volume.colorbar.Tickformatstop` + - A dict of string/value properties that will be passed to the Tickformatstop constructor Returns ------- @@ -951,9 +955,9 @@ def title(self): """ The 'title' property is an instance of Title that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.colorbar.Title` - - A dict of string/value properties that will be passed - to the Title constructor + + - An instance of :class:`plotly.graph_objects.volume.colorbar.Title` + - A dict of string/value properties that will be passed to the Title constructor Returns ------- diff --git a/plotly/graph_objects/volume/_contour.py b/plotly/graph_objects/volume/_contour.py index ec36c1144b..2a83a7b113 100644 --- a/plotly/graph_objects/volume/_contour.py +++ b/plotly/graph_objects/volume/_contour.py @@ -16,11 +16,12 @@ def color(self): Sets the color of the contour lines. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/volume/_hoverlabel.py b/plotly/graph_objects/volume/_hoverlabel.py index 83f83a3b5f..b97cc7bfed 100644 --- a/plotly/graph_objects/volume/_hoverlabel.py +++ b/plotly/graph_objects/volume/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.volume.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/volume/_legendgrouptitle.py b/plotly/graph_objects/volume/_legendgrouptitle.py index c3c3e83653..0bec542894 100644 --- a/plotly/graph_objects/volume/_legendgrouptitle.py +++ b/plotly/graph_objects/volume/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.volume.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/volume/_slices.py b/plotly/graph_objects/volume/_slices.py index a6d58c36da..bc80c0a74a 100644 --- a/plotly/graph_objects/volume/_slices.py +++ b/plotly/graph_objects/volume/_slices.py @@ -15,9 +15,9 @@ def x(self): """ The 'x' property is an instance of X that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.slices.X` - - A dict of string/value properties that will be passed - to the X constructor + + - An instance of :class:`plotly.graph_objects.volume.slices.X` + - A dict of string/value properties that will be passed to the X constructor Returns ------- @@ -34,9 +34,9 @@ def y(self): """ The 'y' property is an instance of Y that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.slices.Y` - - A dict of string/value properties that will be passed - to the Y constructor + + - An instance of :class:`plotly.graph_objects.volume.slices.Y` + - A dict of string/value properties that will be passed to the Y constructor Returns ------- @@ -53,9 +53,9 @@ def z(self): """ The 'z' property is an instance of Z that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.slices.Z` - - A dict of string/value properties that will be passed - to the Z constructor + + - An instance of :class:`plotly.graph_objects.volume.slices.Z` + - A dict of string/value properties that will be passed to the Z constructor Returns ------- diff --git a/plotly/graph_objects/volume/colorbar/_tickfont.py b/plotly/graph_objects/volume/colorbar/_tickfont.py index e4269ed8bf..3d510d6dd0 100644 --- a/plotly/graph_objects/volume/colorbar/_tickfont.py +++ b/plotly/graph_objects/volume/colorbar/_tickfont.py @@ -24,11 +24,12 @@ class Tickfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/volume/colorbar/_title.py b/plotly/graph_objects/volume/colorbar/_title.py index 779c1bed8a..4c64da503d 100644 --- a/plotly/graph_objects/volume/colorbar/_title.py +++ b/plotly/graph_objects/volume/colorbar/_title.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.volume.colorbar.title.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.volume.colorbar.title.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/volume/colorbar/title/_font.py b/plotly/graph_objects/volume/colorbar/title/_font.py index 00a59cc652..02de3c328b 100644 --- a/plotly/graph_objects/volume/colorbar/title/_font.py +++ b/plotly/graph_objects/volume/colorbar/title/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/volume/hoverlabel/_font.py b/plotly/graph_objects/volume/hoverlabel/_font.py index 53fbc10834..d9fac4b2f8 100644 --- a/plotly/graph_objects/volume/hoverlabel/_font.py +++ b/plotly/graph_objects/volume/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/volume/legendgrouptitle/_font.py b/plotly/graph_objects/volume/legendgrouptitle/_font.py index 65ce710350..0c6a035d6e 100644 --- a/plotly/graph_objects/volume/legendgrouptitle/_font.py +++ b/plotly/graph_objects/volume/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/waterfall/_connector.py b/plotly/graph_objects/waterfall/_connector.py index 6c0795012e..5995a15dc3 100644 --- a/plotly/graph_objects/waterfall/_connector.py +++ b/plotly/graph_objects/waterfall/_connector.py @@ -15,9 +15,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.connector.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.waterfall.connector.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/waterfall/_decreasing.py b/plotly/graph_objects/waterfall/_decreasing.py index b1445a3b84..bb32f3c4c3 100644 --- a/plotly/graph_objects/waterfall/_decreasing.py +++ b/plotly/graph_objects/waterfall/_decreasing.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.decreasing.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.waterfall.decreasing.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/waterfall/_hoverlabel.py b/plotly/graph_objects/waterfall/_hoverlabel.py index 636ca43867..4943ae3a9f 100644 --- a/plotly/graph_objects/waterfall/_hoverlabel.py +++ b/plotly/graph_objects/waterfall/_hoverlabel.py @@ -69,12 +69,13 @@ def bgcolor(self): Sets the background color of the hover labels for this trace The 'bgcolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -110,12 +111,13 @@ def bordercolor(self): Sets the border color of the hover labels for this trace. The 'bordercolor' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- @@ -153,9 +155,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.hoverlabel.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.waterfall.hoverlabel.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/waterfall/_increasing.py b/plotly/graph_objects/waterfall/_increasing.py index 9fc7a4c58b..1f6ef912c4 100644 --- a/plotly/graph_objects/waterfall/_increasing.py +++ b/plotly/graph_objects/waterfall/_increasing.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.increasing.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.waterfall.increasing.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/waterfall/_insidetextfont.py b/plotly/graph_objects/waterfall/_insidetextfont.py index ae6d5e7e1c..41e3c1b75d 100644 --- a/plotly/graph_objects/waterfall/_insidetextfont.py +++ b/plotly/graph_objects/waterfall/_insidetextfont.py @@ -33,12 +33,13 @@ class Insidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/_legendgrouptitle.py b/plotly/graph_objects/waterfall/_legendgrouptitle.py index dd202aae96..c7c5c7d747 100644 --- a/plotly/graph_objects/waterfall/_legendgrouptitle.py +++ b/plotly/graph_objects/waterfall/_legendgrouptitle.py @@ -17,9 +17,9 @@ def font(self): The 'font' property is an instance of Font that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.legendgrouptitle.Font` - - A dict of string/value properties that will be passed - to the Font constructor + + - An instance of :class:`plotly.graph_objects.waterfall.legendgrouptitle.Font` + - A dict of string/value properties that will be passed to the Font constructor Returns ------- diff --git a/plotly/graph_objects/waterfall/_outsidetextfont.py b/plotly/graph_objects/waterfall/_outsidetextfont.py index 4601327183..2c8ed10e91 100644 --- a/plotly/graph_objects/waterfall/_outsidetextfont.py +++ b/plotly/graph_objects/waterfall/_outsidetextfont.py @@ -33,12 +33,13 @@ class Outsidetextfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/_textfont.py b/plotly/graph_objects/waterfall/_textfont.py index 96963db3f9..dc0d1880a3 100644 --- a/plotly/graph_objects/waterfall/_textfont.py +++ b/plotly/graph_objects/waterfall/_textfont.py @@ -33,12 +33,13 @@ class Textfont(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/_totals.py b/plotly/graph_objects/waterfall/_totals.py index bc4acf2728..2bc105ce16 100644 --- a/plotly/graph_objects/waterfall/_totals.py +++ b/plotly/graph_objects/waterfall/_totals.py @@ -15,9 +15,9 @@ def marker(self): """ The 'marker' property is an instance of Marker that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.totals.Marker` - - A dict of string/value properties that will be passed - to the Marker constructor + + - An instance of :class:`plotly.graph_objects.waterfall.totals.Marker` + - A dict of string/value properties that will be passed to the Marker constructor Returns ------- diff --git a/plotly/graph_objects/waterfall/connector/_line.py b/plotly/graph_objects/waterfall/connector/_line.py index 9bac36b045..fae63dc902 100644 --- a/plotly/graph_objects/waterfall/connector/_line.py +++ b/plotly/graph_objects/waterfall/connector/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the line color. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/waterfall/decreasing/_marker.py b/plotly/graph_objects/waterfall/decreasing/_marker.py index 2ae5a15aa9..ef78c4f2e7 100644 --- a/plotly/graph_objects/waterfall/decreasing/_marker.py +++ b/plotly/graph_objects/waterfall/decreasing/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of all decreasing values. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -37,9 +38,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.decreasing.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.waterfall.decreasing.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/waterfall/decreasing/marker/_line.py b/plotly/graph_objects/waterfall/decreasing/marker/_line.py index b00dcd5024..9109918ba8 100644 --- a/plotly/graph_objects/waterfall/decreasing/marker/_line.py +++ b/plotly/graph_objects/waterfall/decreasing/marker/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the line color of all decreasing values. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/waterfall/hoverlabel/_font.py b/plotly/graph_objects/waterfall/hoverlabel/_font.py index 4b27978d5f..7852a7cc4b 100644 --- a/plotly/graph_objects/waterfall/hoverlabel/_font.py +++ b/plotly/graph_objects/waterfall/hoverlabel/_font.py @@ -33,12 +33,13 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list - - A list or array of any of the above + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list + - A list or array of any of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/increasing/_marker.py b/plotly/graph_objects/waterfall/increasing/_marker.py index f48182701b..76f1444ad1 100644 --- a/plotly/graph_objects/waterfall/increasing/_marker.py +++ b/plotly/graph_objects/waterfall/increasing/_marker.py @@ -16,11 +16,12 @@ def color(self): Sets the marker color of all increasing values. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -37,9 +38,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.increasing.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.waterfall.increasing.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/waterfall/increasing/marker/_line.py b/plotly/graph_objects/waterfall/increasing/marker/_line.py index 9aa816b53e..3d73c752ca 100644 --- a/plotly/graph_objects/waterfall/increasing/marker/_line.py +++ b/plotly/graph_objects/waterfall/increasing/marker/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the line color of all increasing values. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/waterfall/legendgrouptitle/_font.py b/plotly/graph_objects/waterfall/legendgrouptitle/_font.py index b647672571..dd889419b4 100644 --- a/plotly/graph_objects/waterfall/legendgrouptitle/_font.py +++ b/plotly/graph_objects/waterfall/legendgrouptitle/_font.py @@ -24,11 +24,12 @@ class Font(_BaseTraceHierarchyType): def color(self): """ The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- diff --git a/plotly/graph_objects/waterfall/totals/_marker.py b/plotly/graph_objects/waterfall/totals/_marker.py index bd82f57b80..09c1b1183b 100644 --- a/plotly/graph_objects/waterfall/totals/_marker.py +++ b/plotly/graph_objects/waterfall/totals/_marker.py @@ -17,11 +17,12 @@ def color(self): values. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- @@ -38,9 +39,9 @@ def line(self): """ The 'line' property is an instance of Line that may be specified as: - - An instance of :class:`plotly.graph_objects.waterfall.totals.marker.Line` - - A dict of string/value properties that will be passed - to the Line constructor + + - An instance of :class:`plotly.graph_objects.waterfall.totals.marker.Line` + - A dict of string/value properties that will be passed to the Line constructor Returns ------- diff --git a/plotly/graph_objects/waterfall/totals/marker/_line.py b/plotly/graph_objects/waterfall/totals/marker/_line.py index 2e855cb20f..1f220a01ff 100644 --- a/plotly/graph_objects/waterfall/totals/marker/_line.py +++ b/plotly/graph_objects/waterfall/totals/marker/_line.py @@ -16,11 +16,12 @@ def color(self): Sets the line color of all intermediate sums and total values. The 'color' property is a color and may be specified as: - - A hex string (e.g. '#ff0000') - - An rgb/rgba string (e.g. 'rgb(255,0,0)') - - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') - - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') - - A named CSS color: see https://plotly.com/python/css-colors/ for a list + + - A hex string (e.g. '#ff0000') + - An rgb/rgba string (e.g. 'rgb(255,0,0)') + - An hsl/hsla string (e.g. 'hsl(0,100%,50%)') + - An hsv/hsva string (e.g. 'hsv(0,100%,100%)') + - A named CSS color: see https://plotly.com/python/css-colors/ for a list Returns ------- From 01da1c69871e9113e627d5b08a5c8c713389a925 Mon Sep 17 00:00:00 2001 From: daexs Date: Mon, 18 Aug 2025 15:28:00 -0400 Subject: [PATCH 11/18] Fixed formatting for 'Integer' types. --- _plotly_utils/basevalidators.py | 6 +++--- plotly/graph_objects/_bar.py | 3 ++- plotly/graph_objects/_box.py | 3 ++- plotly/graph_objects/_candlestick.py | 3 ++- plotly/graph_objects/_carpet.py | 3 ++- plotly/graph_objects/_contour.py | 6 ++++-- plotly/graph_objects/_contourcarpet.py | 6 ++++-- plotly/graph_objects/_funnel.py | 3 ++- plotly/graph_objects/_heatmap.py | 3 ++- plotly/graph_objects/_histogram.py | 9 ++++++--- plotly/graph_objects/_histogram2d.py | 6 ++++-- plotly/graph_objects/_histogram2dcontour.py | 9 ++++++--- plotly/graph_objects/_icicle.py | 3 ++- plotly/graph_objects/_image.py | 3 ++- plotly/graph_objects/_layout.py | 6 ++++-- plotly/graph_objects/_ohlc.py | 3 ++- plotly/graph_objects/_scatter.py | 3 ++- plotly/graph_objects/_scattercarpet.py | 3 ++- plotly/graph_objects/_streamtube.py | 3 ++- plotly/graph_objects/_sunburst.py | 3 ++- plotly/graph_objects/_treemap.py | 3 ++- plotly/graph_objects/_violin.py | 3 ++- plotly/graph_objects/_waterfall.py | 3 ++- plotly/graph_objects/bar/_error_x.py | 6 ++++-- plotly/graph_objects/bar/_error_y.py | 6 ++++-- plotly/graph_objects/bar/_hoverlabel.py | 3 ++- plotly/graph_objects/bar/_insidetextfont.py | 3 ++- plotly/graph_objects/bar/_outsidetextfont.py | 3 ++- plotly/graph_objects/bar/_textfont.py | 3 ++- plotly/graph_objects/bar/hoverlabel/_font.py | 3 ++- .../graph_objects/bar/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/bar/marker/_colorbar.py | 6 ++++-- .../bar/marker/colorbar/_tickfont.py | 3 ++- .../bar/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/barpolar/_hoverlabel.py | 3 ++- plotly/graph_objects/barpolar/hoverlabel/_font.py | 3 ++- .../barpolar/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/barpolar/marker/_colorbar.py | 6 ++++-- .../barpolar/marker/colorbar/_tickfont.py | 3 ++- .../barpolar/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/box/_hoverlabel.py | 3 ++- plotly/graph_objects/box/hoverlabel/_font.py | 3 ++- .../graph_objects/box/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/candlestick/_hoverlabel.py | 3 ++- .../graph_objects/candlestick/hoverlabel/_font.py | 3 ++- .../candlestick/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/carpet/_aaxis.py | 15 ++++++++++----- plotly/graph_objects/carpet/_baxis.py | 15 ++++++++++----- plotly/graph_objects/carpet/_font.py | 3 ++- plotly/graph_objects/carpet/aaxis/_tickfont.py | 3 ++- plotly/graph_objects/carpet/aaxis/title/_font.py | 3 ++- plotly/graph_objects/carpet/baxis/_tickfont.py | 3 ++- plotly/graph_objects/carpet/baxis/title/_font.py | 3 ++- .../carpet/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/choropleth/_colorbar.py | 6 ++++-- plotly/graph_objects/choropleth/_hoverlabel.py | 3 ++- .../choropleth/colorbar/_tickfont.py | 3 ++- .../choropleth/colorbar/title/_font.py | 3 ++- .../graph_objects/choropleth/hoverlabel/_font.py | 3 ++- .../choropleth/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/choroplethmap/_colorbar.py | 6 ++++-- plotly/graph_objects/choroplethmap/_hoverlabel.py | 3 ++- .../choroplethmap/colorbar/_tickfont.py | 3 ++- .../choroplethmap/colorbar/title/_font.py | 3 ++- .../choroplethmap/hoverlabel/_font.py | 3 ++- .../choroplethmap/legendgrouptitle/_font.py | 3 ++- .../graph_objects/choroplethmapbox/_colorbar.py | 6 ++++-- .../graph_objects/choroplethmapbox/_hoverlabel.py | 3 ++- .../choroplethmapbox/colorbar/_tickfont.py | 3 ++- .../choroplethmapbox/colorbar/title/_font.py | 3 ++- .../choroplethmapbox/hoverlabel/_font.py | 3 ++- .../choroplethmapbox/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/cone/_colorbar.py | 6 ++++-- plotly/graph_objects/cone/_hoverlabel.py | 3 ++- plotly/graph_objects/cone/colorbar/_tickfont.py | 3 ++- plotly/graph_objects/cone/colorbar/title/_font.py | 3 ++- plotly/graph_objects/cone/hoverlabel/_font.py | 3 ++- .../graph_objects/cone/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/contour/_colorbar.py | 6 ++++-- plotly/graph_objects/contour/_hoverlabel.py | 3 ++- plotly/graph_objects/contour/_textfont.py | 3 ++- .../graph_objects/contour/colorbar/_tickfont.py | 3 ++- .../graph_objects/contour/colorbar/title/_font.py | 3 ++- .../graph_objects/contour/contours/_labelfont.py | 3 ++- plotly/graph_objects/contour/hoverlabel/_font.py | 3 ++- .../contour/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/contourcarpet/_colorbar.py | 6 ++++-- .../contourcarpet/colorbar/_tickfont.py | 3 ++- .../contourcarpet/colorbar/title/_font.py | 3 ++- .../contourcarpet/contours/_labelfont.py | 3 ++- .../contourcarpet/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/densitymap/_colorbar.py | 6 ++++-- plotly/graph_objects/densitymap/_hoverlabel.py | 3 ++- .../densitymap/colorbar/_tickfont.py | 3 ++- .../densitymap/colorbar/title/_font.py | 3 ++- .../graph_objects/densitymap/hoverlabel/_font.py | 3 ++- .../densitymap/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/densitymapbox/_colorbar.py | 6 ++++-- plotly/graph_objects/densitymapbox/_hoverlabel.py | 3 ++- .../densitymapbox/colorbar/_tickfont.py | 3 ++- .../densitymapbox/colorbar/title/_font.py | 3 ++- .../densitymapbox/hoverlabel/_font.py | 3 ++- .../densitymapbox/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/funnel/_hoverlabel.py | 3 ++- plotly/graph_objects/funnel/_insidetextfont.py | 3 ++- plotly/graph_objects/funnel/_outsidetextfont.py | 3 ++- plotly/graph_objects/funnel/_textfont.py | 3 ++- plotly/graph_objects/funnel/hoverlabel/_font.py | 3 ++- .../funnel/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/funnel/marker/_colorbar.py | 6 ++++-- .../funnel/marker/colorbar/_tickfont.py | 3 ++- .../funnel/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/funnelarea/_domain.py | 6 ++++-- plotly/graph_objects/funnelarea/_hoverlabel.py | 3 ++- .../graph_objects/funnelarea/_insidetextfont.py | 3 ++- plotly/graph_objects/funnelarea/_textfont.py | 3 ++- .../graph_objects/funnelarea/hoverlabel/_font.py | 3 ++- .../funnelarea/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/funnelarea/title/_font.py | 3 ++- plotly/graph_objects/heatmap/_colorbar.py | 6 ++++-- plotly/graph_objects/heatmap/_hoverlabel.py | 3 ++- plotly/graph_objects/heatmap/_textfont.py | 3 ++- .../graph_objects/heatmap/colorbar/_tickfont.py | 3 ++- .../graph_objects/heatmap/colorbar/title/_font.py | 3 ++- plotly/graph_objects/heatmap/hoverlabel/_font.py | 3 ++- .../heatmap/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/histogram/_error_x.py | 6 ++++-- plotly/graph_objects/histogram/_error_y.py | 6 ++++-- plotly/graph_objects/histogram/_hoverlabel.py | 3 ++- plotly/graph_objects/histogram/_insidetextfont.py | 3 ++- .../graph_objects/histogram/_outsidetextfont.py | 3 ++- plotly/graph_objects/histogram/_textfont.py | 3 ++- .../graph_objects/histogram/hoverlabel/_font.py | 3 ++- .../histogram/legendgrouptitle/_font.py | 3 ++- .../graph_objects/histogram/marker/_colorbar.py | 6 ++++-- .../histogram/marker/colorbar/_tickfont.py | 3 ++- .../histogram/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/histogram2d/_colorbar.py | 6 ++++-- plotly/graph_objects/histogram2d/_hoverlabel.py | 3 ++- plotly/graph_objects/histogram2d/_textfont.py | 3 ++- .../histogram2d/colorbar/_tickfont.py | 3 ++- .../histogram2d/colorbar/title/_font.py | 3 ++- .../graph_objects/histogram2d/hoverlabel/_font.py | 3 ++- .../histogram2d/legendgrouptitle/_font.py | 3 ++- .../graph_objects/histogram2dcontour/_colorbar.py | 6 ++++-- .../histogram2dcontour/_hoverlabel.py | 3 ++- .../graph_objects/histogram2dcontour/_textfont.py | 3 ++- .../histogram2dcontour/colorbar/_tickfont.py | 3 ++- .../histogram2dcontour/colorbar/title/_font.py | 3 ++- .../histogram2dcontour/contours/_labelfont.py | 3 ++- .../histogram2dcontour/hoverlabel/_font.py | 3 ++- .../histogram2dcontour/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/icicle/_domain.py | 6 ++++-- plotly/graph_objects/icicle/_hoverlabel.py | 3 ++- plotly/graph_objects/icicle/_insidetextfont.py | 3 ++- plotly/graph_objects/icicle/_outsidetextfont.py | 3 ++- plotly/graph_objects/icicle/_textfont.py | 3 ++- plotly/graph_objects/icicle/hoverlabel/_font.py | 3 ++- .../icicle/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/icicle/marker/_colorbar.py | 6 ++++-- .../icicle/marker/colorbar/_tickfont.py | 3 ++- .../icicle/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/icicle/pathbar/_textfont.py | 3 ++- plotly/graph_objects/image/_hoverlabel.py | 3 ++- plotly/graph_objects/image/hoverlabel/_font.py | 3 ++- .../graph_objects/image/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/indicator/_domain.py | 6 ++++-- plotly/graph_objects/indicator/delta/_font.py | 3 ++- plotly/graph_objects/indicator/gauge/_axis.py | 6 ++++-- .../indicator/gauge/axis/_tickfont.py | 3 ++- .../indicator/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/indicator/number/_font.py | 3 ++- plotly/graph_objects/indicator/title/_font.py | 3 ++- plotly/graph_objects/isosurface/_colorbar.py | 6 ++++-- plotly/graph_objects/isosurface/_hoverlabel.py | 3 ++- plotly/graph_objects/isosurface/_surface.py | 3 ++- .../isosurface/colorbar/_tickfont.py | 3 ++- .../isosurface/colorbar/title/_font.py | 3 ++- .../graph_objects/isosurface/hoverlabel/_font.py | 3 ++- .../isosurface/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/layout/_annotation.py | 6 ++++-- plotly/graph_objects/layout/_font.py | 3 ++- plotly/graph_objects/layout/_grid.py | 6 ++++-- plotly/graph_objects/layout/_hoverlabel.py | 3 ++- plotly/graph_objects/layout/_updatemenu.py | 3 ++- plotly/graph_objects/layout/_xaxis.py | 15 ++++++++++----- plotly/graph_objects/layout/_yaxis.py | 15 ++++++++++----- plotly/graph_objects/layout/annotation/_font.py | 3 ++- .../layout/annotation/hoverlabel/_font.py | 3 ++- .../graph_objects/layout/coloraxis/_colorbar.py | 6 ++++-- .../layout/coloraxis/colorbar/_tickfont.py | 3 ++- .../layout/coloraxis/colorbar/title/_font.py | 3 ++- plotly/graph_objects/layout/geo/_domain.py | 6 ++++-- plotly/graph_objects/layout/hoverlabel/_font.py | 3 ++- .../layout/hoverlabel/_grouptitlefont.py | 3 ++- plotly/graph_objects/layout/legend/_font.py | 3 ++- .../layout/legend/_grouptitlefont.py | 3 ++- plotly/graph_objects/layout/legend/title/_font.py | 3 ++- plotly/graph_objects/layout/map/_domain.py | 6 ++++-- .../layout/map/layer/symbol/_textfont.py | 3 ++- plotly/graph_objects/layout/mapbox/_domain.py | 6 ++++-- .../layout/mapbox/layer/symbol/_textfont.py | 3 ++- .../graph_objects/layout/newshape/label/_font.py | 3 ++- .../layout/newshape/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/layout/polar/_angularaxis.py | 6 ++++-- plotly/graph_objects/layout/polar/_domain.py | 6 ++++-- plotly/graph_objects/layout/polar/_radialaxis.py | 6 ++++-- .../layout/polar/angularaxis/_tickfont.py | 3 ++- .../layout/polar/radialaxis/_tickfont.py | 3 ++- .../layout/polar/radialaxis/title/_font.py | 3 ++- plotly/graph_objects/layout/scene/_annotation.py | 6 ++++-- plotly/graph_objects/layout/scene/_domain.py | 6 ++++-- plotly/graph_objects/layout/scene/_xaxis.py | 3 ++- plotly/graph_objects/layout/scene/_yaxis.py | 3 ++- plotly/graph_objects/layout/scene/_zaxis.py | 3 ++- .../layout/scene/annotation/_font.py | 3 ++- .../layout/scene/annotation/hoverlabel/_font.py | 3 ++- .../graph_objects/layout/scene/xaxis/_tickfont.py | 3 ++- .../layout/scene/xaxis/title/_font.py | 3 ++- .../graph_objects/layout/scene/yaxis/_tickfont.py | 3 ++- .../layout/scene/yaxis/title/_font.py | 3 ++- .../graph_objects/layout/scene/zaxis/_tickfont.py | 3 ++- .../layout/scene/zaxis/title/_font.py | 3 ++- plotly/graph_objects/layout/shape/label/_font.py | 3 ++- .../layout/shape/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/layout/slider/_font.py | 3 ++- .../layout/slider/currentvalue/_font.py | 3 ++- plotly/graph_objects/layout/smith/_domain.py | 6 ++++-- .../layout/smith/imaginaryaxis/_tickfont.py | 3 ++- .../layout/smith/realaxis/_tickfont.py | 3 ++- plotly/graph_objects/layout/ternary/_aaxis.py | 6 ++++-- plotly/graph_objects/layout/ternary/_baxis.py | 6 ++++-- plotly/graph_objects/layout/ternary/_caxis.py | 6 ++++-- plotly/graph_objects/layout/ternary/_domain.py | 6 ++++-- .../layout/ternary/aaxis/_tickfont.py | 3 ++- .../layout/ternary/aaxis/title/_font.py | 3 ++- .../layout/ternary/baxis/_tickfont.py | 3 ++- .../layout/ternary/baxis/title/_font.py | 3 ++- .../layout/ternary/caxis/_tickfont.py | 3 ++- .../layout/ternary/caxis/title/_font.py | 3 ++- plotly/graph_objects/layout/title/_font.py | 3 ++- .../graph_objects/layout/title/subtitle/_font.py | 3 ++- plotly/graph_objects/layout/updatemenu/_font.py | 3 ++- plotly/graph_objects/layout/xaxis/_minor.py | 3 ++- plotly/graph_objects/layout/xaxis/_rangeslider.py | 3 ++- plotly/graph_objects/layout/xaxis/_tickfont.py | 3 ++- .../layout/xaxis/rangeselector/_font.py | 3 ++- plotly/graph_objects/layout/xaxis/title/_font.py | 3 ++- plotly/graph_objects/layout/yaxis/_minor.py | 3 ++- plotly/graph_objects/layout/yaxis/_tickfont.py | 3 ++- plotly/graph_objects/layout/yaxis/title/_font.py | 3 ++- plotly/graph_objects/mesh3d/_colorbar.py | 6 ++++-- plotly/graph_objects/mesh3d/_hoverlabel.py | 3 ++- plotly/graph_objects/mesh3d/colorbar/_tickfont.py | 3 ++- .../graph_objects/mesh3d/colorbar/title/_font.py | 3 ++- plotly/graph_objects/mesh3d/hoverlabel/_font.py | 3 ++- .../mesh3d/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/ohlc/_hoverlabel.py | 3 ++- plotly/graph_objects/ohlc/hoverlabel/_font.py | 3 ++- .../graph_objects/ohlc/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/parcats/_dimension.py | 3 ++- plotly/graph_objects/parcats/_domain.py | 6 ++++-- plotly/graph_objects/parcats/_labelfont.py | 3 ++- plotly/graph_objects/parcats/_tickfont.py | 3 ++- .../parcats/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/parcats/line/_colorbar.py | 6 ++++-- .../parcats/line/colorbar/_tickfont.py | 3 ++- .../parcats/line/colorbar/title/_font.py | 3 ++- plotly/graph_objects/parcoords/_domain.py | 6 ++++-- plotly/graph_objects/parcoords/_labelfont.py | 3 ++- plotly/graph_objects/parcoords/_rangefont.py | 3 ++- plotly/graph_objects/parcoords/_tickfont.py | 3 ++- .../parcoords/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/parcoords/line/_colorbar.py | 6 ++++-- .../parcoords/line/colorbar/_tickfont.py | 3 ++- .../parcoords/line/colorbar/title/_font.py | 3 ++- plotly/graph_objects/pie/_domain.py | 6 ++++-- plotly/graph_objects/pie/_hoverlabel.py | 3 ++- plotly/graph_objects/pie/_insidetextfont.py | 3 ++- plotly/graph_objects/pie/_outsidetextfont.py | 3 ++- plotly/graph_objects/pie/_textfont.py | 3 ++- plotly/graph_objects/pie/hoverlabel/_font.py | 3 ++- .../graph_objects/pie/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/pie/title/_font.py | 3 ++- plotly/graph_objects/sankey/_domain.py | 6 ++++-- plotly/graph_objects/sankey/_hoverlabel.py | 3 ++- plotly/graph_objects/sankey/_textfont.py | 3 ++- plotly/graph_objects/sankey/hoverlabel/_font.py | 3 ++- .../sankey/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/sankey/link/_hoverlabel.py | 3 ++- .../graph_objects/sankey/link/hoverlabel/_font.py | 3 ++- plotly/graph_objects/sankey/node/_hoverlabel.py | 3 ++- .../graph_objects/sankey/node/hoverlabel/_font.py | 3 ++- plotly/graph_objects/scatter/_error_x.py | 6 ++++-- plotly/graph_objects/scatter/_error_y.py | 6 ++++-- plotly/graph_objects/scatter/_hoverlabel.py | 3 ++- plotly/graph_objects/scatter/_textfont.py | 3 ++- plotly/graph_objects/scatter/hoverlabel/_font.py | 3 ++- .../scatter/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/scatter/marker/_colorbar.py | 6 ++++-- .../scatter/marker/colorbar/_tickfont.py | 3 ++- .../scatter/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/scatter3d/_error_x.py | 6 ++++-- plotly/graph_objects/scatter3d/_error_y.py | 6 ++++-- plotly/graph_objects/scatter3d/_error_z.py | 6 ++++-- plotly/graph_objects/scatter3d/_hoverlabel.py | 3 ++- plotly/graph_objects/scatter3d/_textfont.py | 3 ++- .../graph_objects/scatter3d/hoverlabel/_font.py | 3 ++- .../scatter3d/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/scatter3d/line/_colorbar.py | 6 ++++-- .../scatter3d/line/colorbar/_tickfont.py | 3 ++- .../scatter3d/line/colorbar/title/_font.py | 3 ++- .../graph_objects/scatter3d/marker/_colorbar.py | 6 ++++-- .../scatter3d/marker/colorbar/_tickfont.py | 3 ++- .../scatter3d/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/scattercarpet/_hoverlabel.py | 3 ++- plotly/graph_objects/scattercarpet/_textfont.py | 3 ++- .../scattercarpet/hoverlabel/_font.py | 3 ++- .../scattercarpet/legendgrouptitle/_font.py | 3 ++- .../scattercarpet/marker/_colorbar.py | 6 ++++-- .../scattercarpet/marker/colorbar/_tickfont.py | 3 ++- .../scattercarpet/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/scattergeo/_hoverlabel.py | 3 ++- plotly/graph_objects/scattergeo/_textfont.py | 3 ++- .../graph_objects/scattergeo/hoverlabel/_font.py | 3 ++- .../scattergeo/legendgrouptitle/_font.py | 3 ++- .../graph_objects/scattergeo/marker/_colorbar.py | 6 ++++-- .../scattergeo/marker/colorbar/_tickfont.py | 3 ++- .../scattergeo/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/scattergl/_error_x.py | 6 ++++-- plotly/graph_objects/scattergl/_error_y.py | 6 ++++-- plotly/graph_objects/scattergl/_hoverlabel.py | 3 ++- .../graph_objects/scattergl/hoverlabel/_font.py | 3 ++- .../scattergl/legendgrouptitle/_font.py | 3 ++- .../graph_objects/scattergl/marker/_colorbar.py | 6 ++++-- .../scattergl/marker/colorbar/_tickfont.py | 3 ++- .../scattergl/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/scattermap/_hoverlabel.py | 3 ++- plotly/graph_objects/scattermap/_textfont.py | 3 ++- .../graph_objects/scattermap/hoverlabel/_font.py | 3 ++- .../scattermap/legendgrouptitle/_font.py | 3 ++- .../graph_objects/scattermap/marker/_colorbar.py | 6 ++++-- .../scattermap/marker/colorbar/_tickfont.py | 3 ++- .../scattermap/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/scattermapbox/_hoverlabel.py | 3 ++- plotly/graph_objects/scattermapbox/_textfont.py | 3 ++- .../scattermapbox/hoverlabel/_font.py | 3 ++- .../scattermapbox/legendgrouptitle/_font.py | 3 ++- .../scattermapbox/marker/_colorbar.py | 6 ++++-- .../scattermapbox/marker/colorbar/_tickfont.py | 3 ++- .../scattermapbox/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/scatterpolar/_hoverlabel.py | 3 ++- plotly/graph_objects/scatterpolar/_textfont.py | 3 ++- .../scatterpolar/hoverlabel/_font.py | 3 ++- .../scatterpolar/legendgrouptitle/_font.py | 3 ++- .../scatterpolar/marker/_colorbar.py | 6 ++++-- .../scatterpolar/marker/colorbar/_tickfont.py | 3 ++- .../scatterpolar/marker/colorbar/title/_font.py | 3 ++- .../graph_objects/scatterpolargl/_hoverlabel.py | 3 ++- .../scatterpolargl/hoverlabel/_font.py | 3 ++- .../scatterpolargl/legendgrouptitle/_font.py | 3 ++- .../scatterpolargl/marker/_colorbar.py | 6 ++++-- .../scatterpolargl/marker/colorbar/_tickfont.py | 3 ++- .../scatterpolargl/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/scattersmith/_hoverlabel.py | 3 ++- plotly/graph_objects/scattersmith/_textfont.py | 3 ++- .../scattersmith/hoverlabel/_font.py | 3 ++- .../scattersmith/legendgrouptitle/_font.py | 3 ++- .../scattersmith/marker/_colorbar.py | 6 ++++-- .../scattersmith/marker/colorbar/_tickfont.py | 3 ++- .../scattersmith/marker/colorbar/title/_font.py | 3 ++- .../graph_objects/scatterternary/_hoverlabel.py | 3 ++- plotly/graph_objects/scatterternary/_textfont.py | 3 ++- .../scatterternary/hoverlabel/_font.py | 3 ++- .../scatterternary/legendgrouptitle/_font.py | 3 ++- .../scatterternary/marker/_colorbar.py | 6 ++++-- .../scatterternary/marker/colorbar/_tickfont.py | 3 ++- .../scatterternary/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/splom/_hoverlabel.py | 3 ++- plotly/graph_objects/splom/hoverlabel/_font.py | 3 ++- .../graph_objects/splom/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/splom/marker/_colorbar.py | 6 ++++-- .../splom/marker/colorbar/_tickfont.py | 3 ++- .../splom/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/streamtube/_colorbar.py | 6 ++++-- plotly/graph_objects/streamtube/_hoverlabel.py | 3 ++- .../streamtube/colorbar/_tickfont.py | 3 ++- .../streamtube/colorbar/title/_font.py | 3 ++- .../graph_objects/streamtube/hoverlabel/_font.py | 3 ++- .../streamtube/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/sunburst/_domain.py | 6 ++++-- plotly/graph_objects/sunburst/_hoverlabel.py | 3 ++- plotly/graph_objects/sunburst/_insidetextfont.py | 3 ++- plotly/graph_objects/sunburst/_outsidetextfont.py | 3 ++- plotly/graph_objects/sunburst/_textfont.py | 3 ++- plotly/graph_objects/sunburst/hoverlabel/_font.py | 3 ++- .../sunburst/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/sunburst/marker/_colorbar.py | 6 ++++-- .../sunburst/marker/colorbar/_tickfont.py | 3 ++- .../sunburst/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/surface/_colorbar.py | 6 ++++-- plotly/graph_objects/surface/_hoverlabel.py | 3 ++- .../graph_objects/surface/colorbar/_tickfont.py | 3 ++- .../graph_objects/surface/colorbar/title/_font.py | 3 ++- plotly/graph_objects/surface/hoverlabel/_font.py | 3 ++- .../surface/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/table/_domain.py | 6 ++++-- plotly/graph_objects/table/_hoverlabel.py | 3 ++- plotly/graph_objects/table/cells/_font.py | 3 ++- plotly/graph_objects/table/header/_font.py | 3 ++- plotly/graph_objects/table/hoverlabel/_font.py | 3 ++- .../graph_objects/table/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/treemap/_domain.py | 6 ++++-- plotly/graph_objects/treemap/_hoverlabel.py | 3 ++- plotly/graph_objects/treemap/_insidetextfont.py | 3 ++- plotly/graph_objects/treemap/_outsidetextfont.py | 3 ++- plotly/graph_objects/treemap/_textfont.py | 3 ++- plotly/graph_objects/treemap/hoverlabel/_font.py | 3 ++- .../treemap/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/treemap/marker/_colorbar.py | 6 ++++-- .../treemap/marker/colorbar/_tickfont.py | 3 ++- .../treemap/marker/colorbar/title/_font.py | 3 ++- plotly/graph_objects/treemap/pathbar/_textfont.py | 3 ++- plotly/graph_objects/violin/_hoverlabel.py | 3 ++- plotly/graph_objects/violin/hoverlabel/_font.py | 3 ++- .../violin/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/volume/_colorbar.py | 6 ++++-- plotly/graph_objects/volume/_hoverlabel.py | 3 ++- plotly/graph_objects/volume/_surface.py | 3 ++- plotly/graph_objects/volume/colorbar/_tickfont.py | 3 ++- .../graph_objects/volume/colorbar/title/_font.py | 3 ++- plotly/graph_objects/volume/hoverlabel/_font.py | 3 ++- .../volume/legendgrouptitle/_font.py | 3 ++- plotly/graph_objects/waterfall/_hoverlabel.py | 3 ++- plotly/graph_objects/waterfall/_insidetextfont.py | 3 ++- .../graph_objects/waterfall/_outsidetextfont.py | 3 ++- plotly/graph_objects/waterfall/_textfont.py | 3 ++- .../graph_objects/waterfall/hoverlabel/_font.py | 3 ++- .../waterfall/legendgrouptitle/_font.py | 3 ++- 439 files changed, 1079 insertions(+), 541 deletions(-) diff --git a/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py index 05b2933af8..9c6eccffab 100644 --- a/_plotly_utils/basevalidators.py +++ b/_plotly_utils/basevalidators.py @@ -859,7 +859,7 @@ def __init__( def description(self): desc = """\ - The '{plotly_name}' property is a integer and may be specified as:""".format( + The '{plotly_name}' property is a integer and may be specified as:\n""".format( plotly_name=self.plotly_name ) @@ -867,12 +867,12 @@ def description(self): desc = ( desc + """ - - An int (or float that will be cast to an int)""" + - An int (or float that will be cast to an int)""" ) else: desc = desc + ( """ - - An int (or float that will be cast to an int) + - An int (or float that will be cast to an int) in the interval [{min_val}, {max_val}]""".format( min_val=self.min_val, max_val=self.max_val ) diff --git a/plotly/graph_objects/_bar.py b/plotly/graph_objects/_bar.py index 93d31f4210..a8abf3c7c4 100644 --- a/plotly/graph_objects/_bar.py +++ b/plotly/graph_objects/_bar.py @@ -1689,7 +1689,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_box.py b/plotly/graph_objects/_box.py index 99cbd6d880..a9be7ff414 100644 --- a/plotly/graph_objects/_box.py +++ b/plotly/graph_objects/_box.py @@ -1952,7 +1952,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_candlestick.py b/plotly/graph_objects/_candlestick.py index 3bba39b5e1..1c8b368519 100644 --- a/plotly/graph_objects/_candlestick.py +++ b/plotly/graph_objects/_candlestick.py @@ -1080,7 +1080,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_carpet.py b/plotly/graph_objects/_carpet.py index eb13dbeb29..b7e989474a 100644 --- a/plotly/graph_objects/_carpet.py +++ b/plotly/graph_objects/_carpet.py @@ -803,7 +803,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_contour.py b/plotly/graph_objects/_contour.py index 3ed11fc24d..96f52ee94a 100644 --- a/plotly/graph_objects/_contour.py +++ b/plotly/graph_objects/_contour.py @@ -792,7 +792,8 @@ def ncontours(self): `autocontour` is True or if `contours.size` is missing. The 'ncontours' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns @@ -1661,7 +1662,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_contourcarpet.py b/plotly/graph_objects/_contourcarpet.py index 4bd2d3c31c..73663cedac 100644 --- a/plotly/graph_objects/_contourcarpet.py +++ b/plotly/graph_objects/_contourcarpet.py @@ -788,7 +788,8 @@ def ncontours(self): `autocontour` is True or if `contours.size` is missing. The 'ncontours' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns @@ -1181,7 +1182,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_funnel.py b/plotly/graph_objects/_funnel.py index 8790a0ba99..60f5a90015 100644 --- a/plotly/graph_objects/_funnel.py +++ b/plotly/graph_objects/_funnel.py @@ -1527,7 +1527,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_heatmap.py b/plotly/graph_objects/_heatmap.py index f6a80b2b1b..c6da89f276 100644 --- a/plotly/graph_objects/_heatmap.py +++ b/plotly/graph_objects/_heatmap.py @@ -1589,7 +1589,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_histogram.py b/plotly/graph_objects/_histogram.py index e16f465acd..70ea1462d1 100644 --- a/plotly/graph_objects/_histogram.py +++ b/plotly/graph_objects/_histogram.py @@ -825,7 +825,8 @@ def nbinsx(self): data. Ignored if `xbins.size` is provided. The 'nbinsx' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -847,7 +848,8 @@ def nbinsy(self): data. Ignored if `ybins.size` is provided. The 'nbinsy' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -1543,7 +1545,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_histogram2d.py b/plotly/graph_objects/_histogram2d.py index f7922a797f..827b090d81 100644 --- a/plotly/graph_objects/_histogram2d.py +++ b/plotly/graph_objects/_histogram2d.py @@ -728,7 +728,8 @@ def nbinsx(self): data. Ignored if `xbins.size` is provided. The 'nbinsx' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -750,7 +751,8 @@ def nbinsy(self): data. Ignored if `ybins.size` is provided. The 'nbinsy' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/_histogram2dcontour.py b/plotly/graph_objects/_histogram2dcontour.py index 6a4cf0c05b..706c290b14 100644 --- a/plotly/graph_objects/_histogram2dcontour.py +++ b/plotly/graph_objects/_histogram2dcontour.py @@ -788,7 +788,8 @@ def nbinsx(self): data. Ignored if `xbins.size` is provided. The 'nbinsx' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -810,7 +811,8 @@ def nbinsy(self): data. Ignored if `ybins.size` is provided. The 'nbinsy' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -832,7 +834,8 @@ def ncontours(self): `autocontour` is True or if `contours.size` is missing. The 'ncontours' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/_icicle.py b/plotly/graph_objects/_icicle.py index 933af83ab7..246aef7d85 100644 --- a/plotly/graph_objects/_icicle.py +++ b/plotly/graph_objects/_icicle.py @@ -591,7 +591,8 @@ def maxdepth(self): `maxdepth` to "-1" to render all the levels in the hierarchy. The 'maxdepth' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_image.py b/plotly/graph_objects/_image.py index ce6be2389f..0bcd013211 100644 --- a/plotly/graph_objects/_image.py +++ b/plotly/graph_objects/_image.py @@ -877,7 +877,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_layout.py b/plotly/graph_objects/_layout.py index 3286542985..1d6ed9a52a 100644 --- a/plotly/graph_objects/_layout.py +++ b/plotly/graph_objects/_layout.py @@ -1022,7 +1022,8 @@ def hoverdistance(self): like objects in case of conflict. The 'hoverdistance' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] Returns @@ -1788,7 +1789,8 @@ def spikedistance(self): will not generate spikelines, such as scatter fills. The 'spikedistance' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/_ohlc.py b/plotly/graph_objects/_ohlc.py index bbc0f7a7e8..752fad881f 100644 --- a/plotly/graph_objects/_ohlc.py +++ b/plotly/graph_objects/_ohlc.py @@ -1080,7 +1080,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_scatter.py b/plotly/graph_objects/_scatter.py index 5f7248fcc4..274c28cd92 100644 --- a/plotly/graph_objects/_scatter.py +++ b/plotly/graph_objects/_scatter.py @@ -1746,7 +1746,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_scattercarpet.py b/plotly/graph_objects/_scattercarpet.py index 08bb193e81..090ddda1c1 100644 --- a/plotly/graph_objects/_scattercarpet.py +++ b/plotly/graph_objects/_scattercarpet.py @@ -1158,7 +1158,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_streamtube.py b/plotly/graph_objects/_streamtube.py index 42c4cd8786..a76b267f24 100644 --- a/plotly/graph_objects/_streamtube.py +++ b/plotly/graph_objects/_streamtube.py @@ -657,7 +657,8 @@ def maxdisplayed(self): The maximum number of displayed segments in a streamtube. The 'maxdisplayed' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/_sunburst.py b/plotly/graph_objects/_sunburst.py index 21ce3a31ee..af269cf404 100644 --- a/plotly/graph_objects/_sunburst.py +++ b/plotly/graph_objects/_sunburst.py @@ -618,7 +618,8 @@ def maxdepth(self): `maxdepth` to "-1" to render all the levels in the hierarchy. The 'maxdepth' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_treemap.py b/plotly/graph_objects/_treemap.py index e9a4d01880..6ddcd80f80 100644 --- a/plotly/graph_objects/_treemap.py +++ b/plotly/graph_objects/_treemap.py @@ -571,7 +571,8 @@ def maxdepth(self): `maxdepth` to "-1" to render all the levels in the hierarchy. The 'maxdepth' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_violin.py b/plotly/graph_objects/_violin.py index bc410314bc..e930820784 100644 --- a/plotly/graph_objects/_violin.py +++ b/plotly/graph_objects/_violin.py @@ -1432,7 +1432,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/_waterfall.py b/plotly/graph_objects/_waterfall.py index 5945720f6d..f06284ad6d 100644 --- a/plotly/graph_objects/_waterfall.py +++ b/plotly/graph_objects/_waterfall.py @@ -1666,7 +1666,8 @@ def zorder(self): `zorder` appear in front of those with lower `zorder`. The 'zorder' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/bar/_error_x.py b/plotly/graph_objects/bar/_error_x.py index 838a47adfc..a666025439 100644 --- a/plotly/graph_objects/bar/_error_x.py +++ b/plotly/graph_objects/bar/_error_x.py @@ -184,7 +184,8 @@ def thickness(self, val): def traceref(self): """ The 'traceref' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -201,7 +202,8 @@ def traceref(self, val): def tracerefminus(self): """ The 'tracerefminus' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/bar/_error_y.py b/plotly/graph_objects/bar/_error_y.py index 877cc9298a..3f3aaefa38 100644 --- a/plotly/graph_objects/bar/_error_y.py +++ b/plotly/graph_objects/bar/_error_y.py @@ -167,7 +167,8 @@ def thickness(self, val): def traceref(self): """ The 'traceref' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -184,7 +185,8 @@ def traceref(self, val): def tracerefminus(self): """ The 'tracerefminus' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/bar/_hoverlabel.py b/plotly/graph_objects/bar/_hoverlabel.py index 09794f2a15..fe40bfddc3 100644 --- a/plotly/graph_objects/bar/_hoverlabel.py +++ b/plotly/graph_objects/bar/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/bar/_insidetextfont.py b/plotly/graph_objects/bar/_insidetextfont.py index d97fcc156e..bb3258fdf9 100644 --- a/plotly/graph_objects/bar/_insidetextfont.py +++ b/plotly/graph_objects/bar/_insidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/bar/_outsidetextfont.py b/plotly/graph_objects/bar/_outsidetextfont.py index f0f5f4b665..741650e6b0 100644 --- a/plotly/graph_objects/bar/_outsidetextfont.py +++ b/plotly/graph_objects/bar/_outsidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/bar/_textfont.py b/plotly/graph_objects/bar/_textfont.py index 988f5503da..0b8cc01972 100644 --- a/plotly/graph_objects/bar/_textfont.py +++ b/plotly/graph_objects/bar/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/bar/hoverlabel/_font.py b/plotly/graph_objects/bar/hoverlabel/_font.py index 52492ce85e..7e4030237f 100644 --- a/plotly/graph_objects/bar/hoverlabel/_font.py +++ b/plotly/graph_objects/bar/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/bar/legendgrouptitle/_font.py b/plotly/graph_objects/bar/legendgrouptitle/_font.py index 3896a5ecb5..fe9d255ab8 100644 --- a/plotly/graph_objects/bar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/bar/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/bar/marker/_colorbar.py b/plotly/graph_objects/bar/marker/_colorbar.py index 682c9f97c8..e4d4851b96 100644 --- a/plotly/graph_objects/bar/marker/_colorbar.py +++ b/plotly/graph_objects/bar/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -731,7 +732,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/bar/marker/colorbar/_tickfont.py b/plotly/graph_objects/bar/marker/colorbar/_tickfont.py index 050bf941b5..cf82198a37 100644 --- a/plotly/graph_objects/bar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/bar/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/bar/marker/colorbar/title/_font.py b/plotly/graph_objects/bar/marker/colorbar/title/_font.py index 9f01230a62..13b442df01 100644 --- a/plotly/graph_objects/bar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/bar/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/barpolar/_hoverlabel.py b/plotly/graph_objects/barpolar/_hoverlabel.py index 8420a9c59d..a3904e58f6 100644 --- a/plotly/graph_objects/barpolar/_hoverlabel.py +++ b/plotly/graph_objects/barpolar/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/barpolar/hoverlabel/_font.py b/plotly/graph_objects/barpolar/hoverlabel/_font.py index a4552d0937..e2c9f32737 100644 --- a/plotly/graph_objects/barpolar/hoverlabel/_font.py +++ b/plotly/graph_objects/barpolar/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/barpolar/legendgrouptitle/_font.py b/plotly/graph_objects/barpolar/legendgrouptitle/_font.py index 517717cd8e..8ead90d9a2 100644 --- a/plotly/graph_objects/barpolar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/barpolar/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/barpolar/marker/_colorbar.py b/plotly/graph_objects/barpolar/marker/_colorbar.py index 11fec6ba17..a12776d4a7 100644 --- a/plotly/graph_objects/barpolar/marker/_colorbar.py +++ b/plotly/graph_objects/barpolar/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py b/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py index 7b364271dc..7ed03c46d1 100644 --- a/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py b/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py index 0d3c788d33..06c419b014 100644 --- a/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/box/_hoverlabel.py b/plotly/graph_objects/box/_hoverlabel.py index d434c3bb6e..a3861966f6 100644 --- a/plotly/graph_objects/box/_hoverlabel.py +++ b/plotly/graph_objects/box/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/box/hoverlabel/_font.py b/plotly/graph_objects/box/hoverlabel/_font.py index ceb280377f..da1fe6ec56 100644 --- a/plotly/graph_objects/box/hoverlabel/_font.py +++ b/plotly/graph_objects/box/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/box/legendgrouptitle/_font.py b/plotly/graph_objects/box/legendgrouptitle/_font.py index 40d6b04b55..d30e2016a7 100644 --- a/plotly/graph_objects/box/legendgrouptitle/_font.py +++ b/plotly/graph_objects/box/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/candlestick/_hoverlabel.py b/plotly/graph_objects/candlestick/_hoverlabel.py index a8456fcafc..abcc2b06ba 100644 --- a/plotly/graph_objects/candlestick/_hoverlabel.py +++ b/plotly/graph_objects/candlestick/_hoverlabel.py @@ -181,7 +181,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/candlestick/hoverlabel/_font.py b/plotly/graph_objects/candlestick/hoverlabel/_font.py index 80e21243bb..3c7f440884 100644 --- a/plotly/graph_objects/candlestick/hoverlabel/_font.py +++ b/plotly/graph_objects/candlestick/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/candlestick/legendgrouptitle/_font.py b/plotly/graph_objects/candlestick/legendgrouptitle/_font.py index 766651d7d8..a37ecbb2ae 100644 --- a/plotly/graph_objects/candlestick/legendgrouptitle/_font.py +++ b/plotly/graph_objects/candlestick/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/carpet/_aaxis.py b/plotly/graph_objects/carpet/_aaxis.py index 95156c7a8f..99bb223678 100644 --- a/plotly/graph_objects/carpet/_aaxis.py +++ b/plotly/graph_objects/carpet/_aaxis.py @@ -75,7 +75,8 @@ def arraydtick(self): The stride between grid lines along the axis The 'arraydtick' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns @@ -94,7 +95,8 @@ def arraytick0(self): The starting index of grid lines along the axis The 'arraytick0' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -496,7 +498,8 @@ def labelpadding(self): Extra padding between label and the axis The 'labelpadding' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- @@ -640,7 +643,8 @@ def minorgridcount(self): Sets the number of minor grid ticks per major grid tick The 'minorgridcount' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -709,7 +713,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/carpet/_baxis.py b/plotly/graph_objects/carpet/_baxis.py index 13f35ba4dd..370970f582 100644 --- a/plotly/graph_objects/carpet/_baxis.py +++ b/plotly/graph_objects/carpet/_baxis.py @@ -75,7 +75,8 @@ def arraydtick(self): The stride between grid lines along the axis The 'arraydtick' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns @@ -94,7 +95,8 @@ def arraytick0(self): The starting index of grid lines along the axis The 'arraytick0' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -496,7 +498,8 @@ def labelpadding(self): Extra padding between label and the axis The 'labelpadding' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- @@ -640,7 +643,8 @@ def minorgridcount(self): Sets the number of minor grid ticks per major grid tick The 'minorgridcount' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -709,7 +713,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/carpet/_font.py b/plotly/graph_objects/carpet/_font.py index 7db94b6270..ed30f96c5b 100644 --- a/plotly/graph_objects/carpet/_font.py +++ b/plotly/graph_objects/carpet/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/carpet/aaxis/_tickfont.py b/plotly/graph_objects/carpet/aaxis/_tickfont.py index ddf370a307..f1a50b0208 100644 --- a/plotly/graph_objects/carpet/aaxis/_tickfont.py +++ b/plotly/graph_objects/carpet/aaxis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/carpet/aaxis/title/_font.py b/plotly/graph_objects/carpet/aaxis/title/_font.py index 7e2b34f29f..90d264253b 100644 --- a/plotly/graph_objects/carpet/aaxis/title/_font.py +++ b/plotly/graph_objects/carpet/aaxis/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/carpet/baxis/_tickfont.py b/plotly/graph_objects/carpet/baxis/_tickfont.py index 016b025600..af31499d6f 100644 --- a/plotly/graph_objects/carpet/baxis/_tickfont.py +++ b/plotly/graph_objects/carpet/baxis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/carpet/baxis/title/_font.py b/plotly/graph_objects/carpet/baxis/title/_font.py index 02f477d993..7843169d25 100644 --- a/plotly/graph_objects/carpet/baxis/title/_font.py +++ b/plotly/graph_objects/carpet/baxis/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/carpet/legendgrouptitle/_font.py b/plotly/graph_objects/carpet/legendgrouptitle/_font.py index 4cbb3bccc6..a68e362339 100644 --- a/plotly/graph_objects/carpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/carpet/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/choropleth/_colorbar.py b/plotly/graph_objects/choropleth/_colorbar.py index 2cd7f1338e..f646da472b 100644 --- a/plotly/graph_objects/choropleth/_colorbar.py +++ b/plotly/graph_objects/choropleth/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -731,7 +732,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/choropleth/_hoverlabel.py b/plotly/graph_objects/choropleth/_hoverlabel.py index 9d3652b8ce..fd1b750abe 100644 --- a/plotly/graph_objects/choropleth/_hoverlabel.py +++ b/plotly/graph_objects/choropleth/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/choropleth/colorbar/_tickfont.py b/plotly/graph_objects/choropleth/colorbar/_tickfont.py index 9f1121078f..6c18f24a50 100644 --- a/plotly/graph_objects/choropleth/colorbar/_tickfont.py +++ b/plotly/graph_objects/choropleth/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/choropleth/colorbar/title/_font.py b/plotly/graph_objects/choropleth/colorbar/title/_font.py index 75e3d00304..e932582adc 100644 --- a/plotly/graph_objects/choropleth/colorbar/title/_font.py +++ b/plotly/graph_objects/choropleth/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/choropleth/hoverlabel/_font.py b/plotly/graph_objects/choropleth/hoverlabel/_font.py index fbd691fe92..96821ca62f 100644 --- a/plotly/graph_objects/choropleth/hoverlabel/_font.py +++ b/plotly/graph_objects/choropleth/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/choropleth/legendgrouptitle/_font.py b/plotly/graph_objects/choropleth/legendgrouptitle/_font.py index 65a30348cf..774f7d8038 100644 --- a/plotly/graph_objects/choropleth/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choropleth/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/choroplethmap/_colorbar.py b/plotly/graph_objects/choroplethmap/_colorbar.py index acbdaaf5fb..d1ad1253d8 100644 --- a/plotly/graph_objects/choroplethmap/_colorbar.py +++ b/plotly/graph_objects/choroplethmap/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/choroplethmap/_hoverlabel.py b/plotly/graph_objects/choroplethmap/_hoverlabel.py index e7c37f5388..d8f8c8b872 100644 --- a/plotly/graph_objects/choroplethmap/_hoverlabel.py +++ b/plotly/graph_objects/choroplethmap/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py b/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py index 4c6ce8ff14..eefa987840 100644 --- a/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py +++ b/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/choroplethmap/colorbar/title/_font.py b/plotly/graph_objects/choroplethmap/colorbar/title/_font.py index e7911a7a94..d59aba1dd8 100644 --- a/plotly/graph_objects/choroplethmap/colorbar/title/_font.py +++ b/plotly/graph_objects/choroplethmap/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/choroplethmap/hoverlabel/_font.py b/plotly/graph_objects/choroplethmap/hoverlabel/_font.py index 09e15a0712..b5e4c1d36d 100644 --- a/plotly/graph_objects/choroplethmap/hoverlabel/_font.py +++ b/plotly/graph_objects/choroplethmap/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py b/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py index 1e838c5d23..e02764925a 100644 --- a/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/choroplethmapbox/_colorbar.py b/plotly/graph_objects/choroplethmapbox/_colorbar.py index 051f524a2d..bfb84e3749 100644 --- a/plotly/graph_objects/choroplethmapbox/_colorbar.py +++ b/plotly/graph_objects/choroplethmapbox/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/choroplethmapbox/_hoverlabel.py b/plotly/graph_objects/choroplethmapbox/_hoverlabel.py index 7c52cac4c2..2e6d69fafd 100644 --- a/plotly/graph_objects/choroplethmapbox/_hoverlabel.py +++ b/plotly/graph_objects/choroplethmapbox/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py b/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py index 09adcaa092..43e9b42a56 100644 --- a/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py +++ b/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py b/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py index be8fb31134..b2961416d0 100644 --- a/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py +++ b/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py b/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py index 74557b6333..5dd006f332 100644 --- a/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py b/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py index 05d8dc37d8..d7b94dd5d6 100644 --- a/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/cone/_colorbar.py b/plotly/graph_objects/cone/_colorbar.py index ce781a968e..aa0caffaf8 100644 --- a/plotly/graph_objects/cone/_colorbar.py +++ b/plotly/graph_objects/cone/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/cone/_hoverlabel.py b/plotly/graph_objects/cone/_hoverlabel.py index 334a3e2135..951d34c74b 100644 --- a/plotly/graph_objects/cone/_hoverlabel.py +++ b/plotly/graph_objects/cone/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/cone/colorbar/_tickfont.py b/plotly/graph_objects/cone/colorbar/_tickfont.py index 84c6836d26..8584dd81ed 100644 --- a/plotly/graph_objects/cone/colorbar/_tickfont.py +++ b/plotly/graph_objects/cone/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/cone/colorbar/title/_font.py b/plotly/graph_objects/cone/colorbar/title/_font.py index bc093087c0..68ddcf14a0 100644 --- a/plotly/graph_objects/cone/colorbar/title/_font.py +++ b/plotly/graph_objects/cone/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/cone/hoverlabel/_font.py b/plotly/graph_objects/cone/hoverlabel/_font.py index 292171bdae..dbd2649397 100644 --- a/plotly/graph_objects/cone/hoverlabel/_font.py +++ b/plotly/graph_objects/cone/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/cone/legendgrouptitle/_font.py b/plotly/graph_objects/cone/legendgrouptitle/_font.py index 59d78e4101..6ba77d62d5 100644 --- a/plotly/graph_objects/cone/legendgrouptitle/_font.py +++ b/plotly/graph_objects/cone/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/contour/_colorbar.py b/plotly/graph_objects/contour/_colorbar.py index b370470ae6..54ffc1c9f8 100644 --- a/plotly/graph_objects/contour/_colorbar.py +++ b/plotly/graph_objects/contour/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/contour/_hoverlabel.py b/plotly/graph_objects/contour/_hoverlabel.py index b723a28bfb..2a1f940bb8 100644 --- a/plotly/graph_objects/contour/_hoverlabel.py +++ b/plotly/graph_objects/contour/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/contour/_textfont.py b/plotly/graph_objects/contour/_textfont.py index 9964480b1f..f5e6289a95 100644 --- a/plotly/graph_objects/contour/_textfont.py +++ b/plotly/graph_objects/contour/_textfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/contour/colorbar/_tickfont.py b/plotly/graph_objects/contour/colorbar/_tickfont.py index 3e27d44487..1836988995 100644 --- a/plotly/graph_objects/contour/colorbar/_tickfont.py +++ b/plotly/graph_objects/contour/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/contour/colorbar/title/_font.py b/plotly/graph_objects/contour/colorbar/title/_font.py index e779a3ba6e..fff194a1c6 100644 --- a/plotly/graph_objects/contour/colorbar/title/_font.py +++ b/plotly/graph_objects/contour/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/contour/contours/_labelfont.py b/plotly/graph_objects/contour/contours/_labelfont.py index 7ed2deaef1..8312b7a39d 100644 --- a/plotly/graph_objects/contour/contours/_labelfont.py +++ b/plotly/graph_objects/contour/contours/_labelfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/contour/hoverlabel/_font.py b/plotly/graph_objects/contour/hoverlabel/_font.py index 3ba40290b6..6b5040a910 100644 --- a/plotly/graph_objects/contour/hoverlabel/_font.py +++ b/plotly/graph_objects/contour/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/contour/legendgrouptitle/_font.py b/plotly/graph_objects/contour/legendgrouptitle/_font.py index 74aef43ce9..e4bf27831f 100644 --- a/plotly/graph_objects/contour/legendgrouptitle/_font.py +++ b/plotly/graph_objects/contour/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/contourcarpet/_colorbar.py b/plotly/graph_objects/contourcarpet/_colorbar.py index b417dab686..9f139363b7 100644 --- a/plotly/graph_objects/contourcarpet/_colorbar.py +++ b/plotly/graph_objects/contourcarpet/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py b/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py index 6ff63bf455..76544c694f 100644 --- a/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py +++ b/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/contourcarpet/colorbar/title/_font.py b/plotly/graph_objects/contourcarpet/colorbar/title/_font.py index b5ae59d52b..e1fd2cf2b2 100644 --- a/plotly/graph_objects/contourcarpet/colorbar/title/_font.py +++ b/plotly/graph_objects/contourcarpet/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/contourcarpet/contours/_labelfont.py b/plotly/graph_objects/contourcarpet/contours/_labelfont.py index 86fb1212e7..b29ebc497f 100644 --- a/plotly/graph_objects/contourcarpet/contours/_labelfont.py +++ b/plotly/graph_objects/contourcarpet/contours/_labelfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py b/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py index cdfb7510bd..d47f15a41d 100644 --- a/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/densitymap/_colorbar.py b/plotly/graph_objects/densitymap/_colorbar.py index 825f69cd32..79353269a6 100644 --- a/plotly/graph_objects/densitymap/_colorbar.py +++ b/plotly/graph_objects/densitymap/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -731,7 +732,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/densitymap/_hoverlabel.py b/plotly/graph_objects/densitymap/_hoverlabel.py index 5468312b9a..5a1b0604f8 100644 --- a/plotly/graph_objects/densitymap/_hoverlabel.py +++ b/plotly/graph_objects/densitymap/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/densitymap/colorbar/_tickfont.py b/plotly/graph_objects/densitymap/colorbar/_tickfont.py index 0ea61a6b63..65c0ed8022 100644 --- a/plotly/graph_objects/densitymap/colorbar/_tickfont.py +++ b/plotly/graph_objects/densitymap/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/densitymap/colorbar/title/_font.py b/plotly/graph_objects/densitymap/colorbar/title/_font.py index 546c0f6c2f..3c77b2cb4d 100644 --- a/plotly/graph_objects/densitymap/colorbar/title/_font.py +++ b/plotly/graph_objects/densitymap/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/densitymap/hoverlabel/_font.py b/plotly/graph_objects/densitymap/hoverlabel/_font.py index ce58137a19..ab64836be8 100644 --- a/plotly/graph_objects/densitymap/hoverlabel/_font.py +++ b/plotly/graph_objects/densitymap/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/densitymap/legendgrouptitle/_font.py b/plotly/graph_objects/densitymap/legendgrouptitle/_font.py index bbf2c06bd8..e685ac1e4d 100644 --- a/plotly/graph_objects/densitymap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/densitymap/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/densitymapbox/_colorbar.py b/plotly/graph_objects/densitymapbox/_colorbar.py index 0ce71fb194..519a99fb32 100644 --- a/plotly/graph_objects/densitymapbox/_colorbar.py +++ b/plotly/graph_objects/densitymapbox/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/densitymapbox/_hoverlabel.py b/plotly/graph_objects/densitymapbox/_hoverlabel.py index 05d59194a7..8a0b9c17db 100644 --- a/plotly/graph_objects/densitymapbox/_hoverlabel.py +++ b/plotly/graph_objects/densitymapbox/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py b/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py index 38f4f051fc..bc0416f62b 100644 --- a/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py +++ b/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/densitymapbox/colorbar/title/_font.py b/plotly/graph_objects/densitymapbox/colorbar/title/_font.py index 0c8d565d9b..3333b1eaa4 100644 --- a/plotly/graph_objects/densitymapbox/colorbar/title/_font.py +++ b/plotly/graph_objects/densitymapbox/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/densitymapbox/hoverlabel/_font.py b/plotly/graph_objects/densitymapbox/hoverlabel/_font.py index 4c10bd424e..6bf2282456 100644 --- a/plotly/graph_objects/densitymapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/densitymapbox/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py b/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py index c6ec729d5e..84542f98f9 100644 --- a/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/funnel/_hoverlabel.py b/plotly/graph_objects/funnel/_hoverlabel.py index 1531e451a7..9c37f14c61 100644 --- a/plotly/graph_objects/funnel/_hoverlabel.py +++ b/plotly/graph_objects/funnel/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/funnel/_insidetextfont.py b/plotly/graph_objects/funnel/_insidetextfont.py index 0ad3142cac..13e8b91402 100644 --- a/plotly/graph_objects/funnel/_insidetextfont.py +++ b/plotly/graph_objects/funnel/_insidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/funnel/_outsidetextfont.py b/plotly/graph_objects/funnel/_outsidetextfont.py index bd6e623d1d..5d17cf8f10 100644 --- a/plotly/graph_objects/funnel/_outsidetextfont.py +++ b/plotly/graph_objects/funnel/_outsidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/funnel/_textfont.py b/plotly/graph_objects/funnel/_textfont.py index d8d8b08721..88499acb29 100644 --- a/plotly/graph_objects/funnel/_textfont.py +++ b/plotly/graph_objects/funnel/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/funnel/hoverlabel/_font.py b/plotly/graph_objects/funnel/hoverlabel/_font.py index 1bd275d08e..7bcbfb14e8 100644 --- a/plotly/graph_objects/funnel/hoverlabel/_font.py +++ b/plotly/graph_objects/funnel/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/funnel/legendgrouptitle/_font.py b/plotly/graph_objects/funnel/legendgrouptitle/_font.py index bb5d99071d..eb868b2b21 100644 --- a/plotly/graph_objects/funnel/legendgrouptitle/_font.py +++ b/plotly/graph_objects/funnel/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/funnel/marker/_colorbar.py b/plotly/graph_objects/funnel/marker/_colorbar.py index b5d0d85854..d49968299d 100644 --- a/plotly/graph_objects/funnel/marker/_colorbar.py +++ b/plotly/graph_objects/funnel/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py b/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py index b4ae4ce20a..eb02fac2a9 100644 --- a/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/funnel/marker/colorbar/title/_font.py b/plotly/graph_objects/funnel/marker/colorbar/title/_font.py index 426cf450fa..e74fc236a9 100644 --- a/plotly/graph_objects/funnel/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/funnel/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/funnelarea/_domain.py b/plotly/graph_objects/funnelarea/_domain.py index d74a5f7724..6d9c0d8673 100644 --- a/plotly/graph_objects/funnelarea/_domain.py +++ b/plotly/graph_objects/funnelarea/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this funnelarea trace . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this funnelarea trace . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/funnelarea/_hoverlabel.py b/plotly/graph_objects/funnelarea/_hoverlabel.py index 5ba7afa6e1..a40e5a0e86 100644 --- a/plotly/graph_objects/funnelarea/_hoverlabel.py +++ b/plotly/graph_objects/funnelarea/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/funnelarea/_insidetextfont.py b/plotly/graph_objects/funnelarea/_insidetextfont.py index 78f508e158..7a60dda829 100644 --- a/plotly/graph_objects/funnelarea/_insidetextfont.py +++ b/plotly/graph_objects/funnelarea/_insidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/funnelarea/_textfont.py b/plotly/graph_objects/funnelarea/_textfont.py index c29a0501a0..c81c816f25 100644 --- a/plotly/graph_objects/funnelarea/_textfont.py +++ b/plotly/graph_objects/funnelarea/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/funnelarea/hoverlabel/_font.py b/plotly/graph_objects/funnelarea/hoverlabel/_font.py index e31c2add1a..8cb483c8c2 100644 --- a/plotly/graph_objects/funnelarea/hoverlabel/_font.py +++ b/plotly/graph_objects/funnelarea/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py b/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py index ad078b3b76..27d770ca69 100644 --- a/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py +++ b/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/funnelarea/title/_font.py b/plotly/graph_objects/funnelarea/title/_font.py index 7b8b7933b9..9ccd74391b 100644 --- a/plotly/graph_objects/funnelarea/title/_font.py +++ b/plotly/graph_objects/funnelarea/title/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/heatmap/_colorbar.py b/plotly/graph_objects/heatmap/_colorbar.py index c04e4cee76..7dae1aa893 100644 --- a/plotly/graph_objects/heatmap/_colorbar.py +++ b/plotly/graph_objects/heatmap/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/heatmap/_hoverlabel.py b/plotly/graph_objects/heatmap/_hoverlabel.py index f3f4533d3a..fdbce03594 100644 --- a/plotly/graph_objects/heatmap/_hoverlabel.py +++ b/plotly/graph_objects/heatmap/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/heatmap/_textfont.py b/plotly/graph_objects/heatmap/_textfont.py index ce2f53aa68..c9ab918398 100644 --- a/plotly/graph_objects/heatmap/_textfont.py +++ b/plotly/graph_objects/heatmap/_textfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/heatmap/colorbar/_tickfont.py b/plotly/graph_objects/heatmap/colorbar/_tickfont.py index 7eb01a5e9f..429949600e 100644 --- a/plotly/graph_objects/heatmap/colorbar/_tickfont.py +++ b/plotly/graph_objects/heatmap/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/heatmap/colorbar/title/_font.py b/plotly/graph_objects/heatmap/colorbar/title/_font.py index b4f951f87d..030c176e6d 100644 --- a/plotly/graph_objects/heatmap/colorbar/title/_font.py +++ b/plotly/graph_objects/heatmap/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/heatmap/hoverlabel/_font.py b/plotly/graph_objects/heatmap/hoverlabel/_font.py index 903376cdbe..2a913f33f4 100644 --- a/plotly/graph_objects/heatmap/hoverlabel/_font.py +++ b/plotly/graph_objects/heatmap/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/heatmap/legendgrouptitle/_font.py b/plotly/graph_objects/heatmap/legendgrouptitle/_font.py index 509d4a7ba6..64225f44ef 100644 --- a/plotly/graph_objects/heatmap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/heatmap/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram/_error_x.py b/plotly/graph_objects/histogram/_error_x.py index c5893ed629..1b2a8c9f74 100644 --- a/plotly/graph_objects/histogram/_error_x.py +++ b/plotly/graph_objects/histogram/_error_x.py @@ -184,7 +184,8 @@ def thickness(self, val): def traceref(self): """ The 'traceref' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -201,7 +202,8 @@ def traceref(self, val): def tracerefminus(self): """ The 'tracerefminus' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/histogram/_error_y.py b/plotly/graph_objects/histogram/_error_y.py index 4d676dd88a..84c3279a7a 100644 --- a/plotly/graph_objects/histogram/_error_y.py +++ b/plotly/graph_objects/histogram/_error_y.py @@ -167,7 +167,8 @@ def thickness(self, val): def traceref(self): """ The 'traceref' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -184,7 +185,8 @@ def traceref(self, val): def tracerefminus(self): """ The 'tracerefminus' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/histogram/_hoverlabel.py b/plotly/graph_objects/histogram/_hoverlabel.py index 5782084a3f..01ca266570 100644 --- a/plotly/graph_objects/histogram/_hoverlabel.py +++ b/plotly/graph_objects/histogram/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/histogram/_insidetextfont.py b/plotly/graph_objects/histogram/_insidetextfont.py index 9b56a4b1b5..5fd7c53108 100644 --- a/plotly/graph_objects/histogram/_insidetextfont.py +++ b/plotly/graph_objects/histogram/_insidetextfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram/_outsidetextfont.py b/plotly/graph_objects/histogram/_outsidetextfont.py index 41bb32648c..a5876aa32f 100644 --- a/plotly/graph_objects/histogram/_outsidetextfont.py +++ b/plotly/graph_objects/histogram/_outsidetextfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram/_textfont.py b/plotly/graph_objects/histogram/_textfont.py index 85d2db7ace..675635e81f 100644 --- a/plotly/graph_objects/histogram/_textfont.py +++ b/plotly/graph_objects/histogram/_textfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram/hoverlabel/_font.py b/plotly/graph_objects/histogram/hoverlabel/_font.py index 0a07411f1b..05fd9c3a58 100644 --- a/plotly/graph_objects/histogram/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/histogram/legendgrouptitle/_font.py b/plotly/graph_objects/histogram/legendgrouptitle/_font.py index b5c651f9b4..b2db34599d 100644 --- a/plotly/graph_objects/histogram/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram/marker/_colorbar.py b/plotly/graph_objects/histogram/marker/_colorbar.py index fd69c4bbe4..7c8dc40a07 100644 --- a/plotly/graph_objects/histogram/marker/_colorbar.py +++ b/plotly/graph_objects/histogram/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py b/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py index bcb1ba8834..d77850a66e 100644 --- a/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram/marker/colorbar/title/_font.py b/plotly/graph_objects/histogram/marker/colorbar/title/_font.py index 503dcf69c7..7836bd8c6a 100644 --- a/plotly/graph_objects/histogram/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram2d/_colorbar.py b/plotly/graph_objects/histogram2d/_colorbar.py index 33437d26d1..fd7a2b15d1 100644 --- a/plotly/graph_objects/histogram2d/_colorbar.py +++ b/plotly/graph_objects/histogram2d/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/histogram2d/_hoverlabel.py b/plotly/graph_objects/histogram2d/_hoverlabel.py index 5a3daa0fa1..2baf3e84bc 100644 --- a/plotly/graph_objects/histogram2d/_hoverlabel.py +++ b/plotly/graph_objects/histogram2d/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/histogram2d/_textfont.py b/plotly/graph_objects/histogram2d/_textfont.py index bc73d2cfb8..a938fd5bb8 100644 --- a/plotly/graph_objects/histogram2d/_textfont.py +++ b/plotly/graph_objects/histogram2d/_textfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram2d/colorbar/_tickfont.py b/plotly/graph_objects/histogram2d/colorbar/_tickfont.py index 647d247611..afe9ad77a4 100644 --- a/plotly/graph_objects/histogram2d/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram2d/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram2d/colorbar/title/_font.py b/plotly/graph_objects/histogram2d/colorbar/title/_font.py index 47eddbd042..6e5a05d093 100644 --- a/plotly/graph_objects/histogram2d/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram2d/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram2d/hoverlabel/_font.py b/plotly/graph_objects/histogram2d/hoverlabel/_font.py index 24c77f9d97..32dc37cf6e 100644 --- a/plotly/graph_objects/histogram2d/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram2d/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py b/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py index 4b44fed198..79cad87723 100644 --- a/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram2dcontour/_colorbar.py b/plotly/graph_objects/histogram2dcontour/_colorbar.py index 5691f85b16..40eae019a9 100644 --- a/plotly/graph_objects/histogram2dcontour/_colorbar.py +++ b/plotly/graph_objects/histogram2dcontour/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/histogram2dcontour/_hoverlabel.py b/plotly/graph_objects/histogram2dcontour/_hoverlabel.py index 1719cc140d..acf2f31af1 100644 --- a/plotly/graph_objects/histogram2dcontour/_hoverlabel.py +++ b/plotly/graph_objects/histogram2dcontour/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/histogram2dcontour/_textfont.py b/plotly/graph_objects/histogram2dcontour/_textfont.py index f03b80279d..2fa33bfa9d 100644 --- a/plotly/graph_objects/histogram2dcontour/_textfont.py +++ b/plotly/graph_objects/histogram2dcontour/_textfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py b/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py index fa4b2287d0..50c83f9757 100644 --- a/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py b/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py index e80a3cb4f5..f4da5c6681 100644 --- a/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py b/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py index 079a7448c9..c0668726cc 100644 --- a/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py +++ b/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py b/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py index 1119613145..ccc10ea99f 100644 --- a/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py b/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py index 7aa4fe7b55..a1a93a1c33 100644 --- a/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/icicle/_domain.py b/plotly/graph_objects/icicle/_domain.py index 40c4d90da0..59e20e31e0 100644 --- a/plotly/graph_objects/icicle/_domain.py +++ b/plotly/graph_objects/icicle/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this icicle trace . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this icicle trace . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/icicle/_hoverlabel.py b/plotly/graph_objects/icicle/_hoverlabel.py index 73419fd532..360f382748 100644 --- a/plotly/graph_objects/icicle/_hoverlabel.py +++ b/plotly/graph_objects/icicle/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/icicle/_insidetextfont.py b/plotly/graph_objects/icicle/_insidetextfont.py index 65c4ff8326..07c30c9a27 100644 --- a/plotly/graph_objects/icicle/_insidetextfont.py +++ b/plotly/graph_objects/icicle/_insidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/icicle/_outsidetextfont.py b/plotly/graph_objects/icicle/_outsidetextfont.py index 94d862dafe..97ef286938 100644 --- a/plotly/graph_objects/icicle/_outsidetextfont.py +++ b/plotly/graph_objects/icicle/_outsidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/icicle/_textfont.py b/plotly/graph_objects/icicle/_textfont.py index 53b849bd50..8f14dbff13 100644 --- a/plotly/graph_objects/icicle/_textfont.py +++ b/plotly/graph_objects/icicle/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/icicle/hoverlabel/_font.py b/plotly/graph_objects/icicle/hoverlabel/_font.py index 3cff26e47c..a5537de39b 100644 --- a/plotly/graph_objects/icicle/hoverlabel/_font.py +++ b/plotly/graph_objects/icicle/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/icicle/legendgrouptitle/_font.py b/plotly/graph_objects/icicle/legendgrouptitle/_font.py index 5dd16aee6e..bb032d1673 100644 --- a/plotly/graph_objects/icicle/legendgrouptitle/_font.py +++ b/plotly/graph_objects/icicle/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/icicle/marker/_colorbar.py b/plotly/graph_objects/icicle/marker/_colorbar.py index b0af5e303b..13db76d34d 100644 --- a/plotly/graph_objects/icicle/marker/_colorbar.py +++ b/plotly/graph_objects/icicle/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py b/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py index 3b8eb73f25..885b8bfcb0 100644 --- a/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/icicle/marker/colorbar/title/_font.py b/plotly/graph_objects/icicle/marker/colorbar/title/_font.py index ffd31a179a..0afb008e95 100644 --- a/plotly/graph_objects/icicle/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/icicle/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/icicle/pathbar/_textfont.py b/plotly/graph_objects/icicle/pathbar/_textfont.py index de0510160a..d1d20f2758 100644 --- a/plotly/graph_objects/icicle/pathbar/_textfont.py +++ b/plotly/graph_objects/icicle/pathbar/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/image/_hoverlabel.py b/plotly/graph_objects/image/_hoverlabel.py index 00477e28a0..ff898941bd 100644 --- a/plotly/graph_objects/image/_hoverlabel.py +++ b/plotly/graph_objects/image/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/image/hoverlabel/_font.py b/plotly/graph_objects/image/hoverlabel/_font.py index 8e5e2411a5..9d831c8af6 100644 --- a/plotly/graph_objects/image/hoverlabel/_font.py +++ b/plotly/graph_objects/image/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/image/legendgrouptitle/_font.py b/plotly/graph_objects/image/legendgrouptitle/_font.py index 4384df4ad2..89e7f7de9f 100644 --- a/plotly/graph_objects/image/legendgrouptitle/_font.py +++ b/plotly/graph_objects/image/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/indicator/_domain.py b/plotly/graph_objects/indicator/_domain.py index 60bc878c90..c511f3decd 100644 --- a/plotly/graph_objects/indicator/_domain.py +++ b/plotly/graph_objects/indicator/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this indicator trace . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this indicator trace . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/indicator/delta/_font.py b/plotly/graph_objects/indicator/delta/_font.py index 34edf4ea13..ec9be4797e 100644 --- a/plotly/graph_objects/indicator/delta/_font.py +++ b/plotly/graph_objects/indicator/delta/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/indicator/gauge/_axis.py b/plotly/graph_objects/indicator/gauge/_axis.py index 4dde5c2ecc..3d973e6299 100644 --- a/plotly/graph_objects/indicator/gauge/_axis.py +++ b/plotly/graph_objects/indicator/gauge/_axis.py @@ -156,7 +156,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -476,7 +477,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/indicator/gauge/axis/_tickfont.py b/plotly/graph_objects/indicator/gauge/axis/_tickfont.py index a75a0d00ac..04ad43d59a 100644 --- a/plotly/graph_objects/indicator/gauge/axis/_tickfont.py +++ b/plotly/graph_objects/indicator/gauge/axis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/indicator/legendgrouptitle/_font.py b/plotly/graph_objects/indicator/legendgrouptitle/_font.py index 03c65434e4..04600e02d1 100644 --- a/plotly/graph_objects/indicator/legendgrouptitle/_font.py +++ b/plotly/graph_objects/indicator/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/indicator/number/_font.py b/plotly/graph_objects/indicator/number/_font.py index 2eea4311f2..bd18e20580 100644 --- a/plotly/graph_objects/indicator/number/_font.py +++ b/plotly/graph_objects/indicator/number/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/indicator/title/_font.py b/plotly/graph_objects/indicator/title/_font.py index 6a72b4795c..268b51fec2 100644 --- a/plotly/graph_objects/indicator/title/_font.py +++ b/plotly/graph_objects/indicator/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/isosurface/_colorbar.py b/plotly/graph_objects/isosurface/_colorbar.py index 44e6320879..31e25f549d 100644 --- a/plotly/graph_objects/isosurface/_colorbar.py +++ b/plotly/graph_objects/isosurface/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -731,7 +732,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/isosurface/_hoverlabel.py b/plotly/graph_objects/isosurface/_hoverlabel.py index 5ae4ac6aa4..2c78f2a0c3 100644 --- a/plotly/graph_objects/isosurface/_hoverlabel.py +++ b/plotly/graph_objects/isosurface/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/isosurface/_surface.py b/plotly/graph_objects/isosurface/_surface.py index 6e7eba9dd3..77b4cb1add 100644 --- a/plotly/graph_objects/isosurface/_surface.py +++ b/plotly/graph_objects/isosurface/_surface.py @@ -18,7 +18,8 @@ def count(self): minimum and maximum surfaces would be drawn. The 'count' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/isosurface/colorbar/_tickfont.py b/plotly/graph_objects/isosurface/colorbar/_tickfont.py index 45e3455d83..9cc84a74a0 100644 --- a/plotly/graph_objects/isosurface/colorbar/_tickfont.py +++ b/plotly/graph_objects/isosurface/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/isosurface/colorbar/title/_font.py b/plotly/graph_objects/isosurface/colorbar/title/_font.py index 83ef43853b..f9bc165663 100644 --- a/plotly/graph_objects/isosurface/colorbar/title/_font.py +++ b/plotly/graph_objects/isosurface/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/isosurface/hoverlabel/_font.py b/plotly/graph_objects/isosurface/hoverlabel/_font.py index 80847d34b9..149032129d 100644 --- a/plotly/graph_objects/isosurface/hoverlabel/_font.py +++ b/plotly/graph_objects/isosurface/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/isosurface/legendgrouptitle/_font.py b/plotly/graph_objects/isosurface/legendgrouptitle/_font.py index c82fa2ed57..7cf37c5bb3 100644 --- a/plotly/graph_objects/isosurface/legendgrouptitle/_font.py +++ b/plotly/graph_objects/isosurface/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/_annotation.py b/plotly/graph_objects/layout/_annotation.py index a26996e1a3..45edb4dde9 100644 --- a/plotly/graph_objects/layout/_annotation.py +++ b/plotly/graph_objects/layout/_annotation.py @@ -107,7 +107,8 @@ def arrowhead(self): Sets the end annotation arrow head style. The 'arrowhead' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 8] Returns @@ -631,7 +632,8 @@ def startarrowhead(self): Sets the start annotation arrow head style. The 'startarrowhead' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 8] Returns diff --git a/plotly/graph_objects/layout/_font.py b/plotly/graph_objects/layout/_font.py index 7dc3ccecf6..9610c5b118 100644 --- a/plotly/graph_objects/layout/_font.py +++ b/plotly/graph_objects/layout/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/_grid.py b/plotly/graph_objects/layout/_grid.py index d6d363f59a..f027465ab7 100644 --- a/plotly/graph_objects/layout/_grid.py +++ b/plotly/graph_objects/layout/_grid.py @@ -34,7 +34,8 @@ def columns(self): subplots. The 'columns' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns @@ -123,7 +124,8 @@ def rows(self): to leave a row at the end for non-cartesian subplots. The 'rows' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/_hoverlabel.py b/plotly/graph_objects/layout/_hoverlabel.py index 83d60ac8ee..4b0f355817 100644 --- a/plotly/graph_objects/layout/_hoverlabel.py +++ b/plotly/graph_objects/layout/_hoverlabel.py @@ -141,7 +141,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/_updatemenu.py b/plotly/graph_objects/layout/_updatemenu.py index 7b86e85215..6dda7b0b63 100644 --- a/plotly/graph_objects/layout/_updatemenu.py +++ b/plotly/graph_objects/layout/_updatemenu.py @@ -36,7 +36,8 @@ def active(self): considered active. The 'active' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/_xaxis.py b/plotly/graph_objects/layout/_xaxis.py index 0078a7edfb..6bf1043129 100644 --- a/plotly/graph_objects/layout/_xaxis.py +++ b/plotly/graph_objects/layout/_xaxis.py @@ -945,7 +945,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -1715,7 +1716,8 @@ def ticklabelindex(self): there. The 'ticklabelindex' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) - A tuple, list, or one-dimensional numpy array of the above Returns @@ -1835,7 +1837,8 @@ def ticklabelshift(self): positive direction of the axis. The 'ticklabelshift' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- @@ -1861,7 +1864,8 @@ def ticklabelstandoff(self): ticks can even end up outside and vice versa. The 'ticklabelstandoff' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- @@ -1884,7 +1888,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/_yaxis.py b/plotly/graph_objects/layout/_yaxis.py index 25f4dc1660..57db219201 100644 --- a/plotly/graph_objects/layout/_yaxis.py +++ b/plotly/graph_objects/layout/_yaxis.py @@ -967,7 +967,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -1724,7 +1725,8 @@ def ticklabelindex(self): there. The 'ticklabelindex' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) - A tuple, list, or one-dimensional numpy array of the above Returns @@ -1844,7 +1846,8 @@ def ticklabelshift(self): positive direction of the axis. The 'ticklabelshift' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- @@ -1870,7 +1873,8 @@ def ticklabelstandoff(self): ticks can even end up outside and vice versa. The 'ticklabelstandoff' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- @@ -1893,7 +1897,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/annotation/_font.py b/plotly/graph_objects/layout/annotation/_font.py index 219d7b333b..cae3e3fa8e 100644 --- a/plotly/graph_objects/layout/annotation/_font.py +++ b/plotly/graph_objects/layout/annotation/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/annotation/hoverlabel/_font.py b/plotly/graph_objects/layout/annotation/hoverlabel/_font.py index faf2a334cd..b212d474f6 100644 --- a/plotly/graph_objects/layout/annotation/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/annotation/hoverlabel/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/coloraxis/_colorbar.py b/plotly/graph_objects/layout/coloraxis/_colorbar.py index c82ec93267..46183f4a4b 100644 --- a/plotly/graph_objects/layout/coloraxis/_colorbar.py +++ b/plotly/graph_objects/layout/coloraxis/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py b/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py index ebc9951a3d..327c08d1d9 100644 --- a/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py +++ b/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py b/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py index b76ae3b078..2b778f3451 100644 --- a/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py +++ b/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/geo/_domain.py b/plotly/graph_objects/layout/geo/_domain.py index 28ec8ca9d9..9a12b4d3e9 100644 --- a/plotly/graph_objects/layout/geo/_domain.py +++ b/plotly/graph_objects/layout/geo/_domain.py @@ -20,7 +20,8 @@ def column(self): both. The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -43,7 +44,8 @@ def row(self): both. The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/hoverlabel/_font.py b/plotly/graph_objects/layout/hoverlabel/_font.py index 2f6db8da26..c02e39c430 100644 --- a/plotly/graph_objects/layout/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/hoverlabel/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py b/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py index 98937f25eb..93acae2c09 100644 --- a/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py +++ b/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/legend/_font.py b/plotly/graph_objects/layout/legend/_font.py index d990039c4c..8985b957a2 100644 --- a/plotly/graph_objects/layout/legend/_font.py +++ b/plotly/graph_objects/layout/legend/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/legend/_grouptitlefont.py b/plotly/graph_objects/layout/legend/_grouptitlefont.py index 6fd74c5c70..97fae495f7 100644 --- a/plotly/graph_objects/layout/legend/_grouptitlefont.py +++ b/plotly/graph_objects/layout/legend/_grouptitlefont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/legend/title/_font.py b/plotly/graph_objects/layout/legend/title/_font.py index cfc5a6636c..c5651e02e9 100644 --- a/plotly/graph_objects/layout/legend/title/_font.py +++ b/plotly/graph_objects/layout/legend/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/map/_domain.py b/plotly/graph_objects/layout/map/_domain.py index 81e646a854..e0f66a26d8 100644 --- a/plotly/graph_objects/layout/map/_domain.py +++ b/plotly/graph_objects/layout/map/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this map subplot . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this map subplot . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/map/layer/symbol/_textfont.py b/plotly/graph_objects/layout/map/layer/symbol/_textfont.py index f2d96e6302..841860cf07 100644 --- a/plotly/graph_objects/layout/map/layer/symbol/_textfont.py +++ b/plotly/graph_objects/layout/map/layer/symbol/_textfont.py @@ -99,7 +99,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/mapbox/_domain.py b/plotly/graph_objects/layout/mapbox/_domain.py index 673aaa8978..552771cc73 100644 --- a/plotly/graph_objects/layout/mapbox/_domain.py +++ b/plotly/graph_objects/layout/mapbox/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this mapbox subplot . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this mapbox subplot . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py b/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py index 72e1f611d6..238e708caf 100644 --- a/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py +++ b/plotly/graph_objects/layout/mapbox/layer/symbol/_textfont.py @@ -99,7 +99,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/newshape/label/_font.py b/plotly/graph_objects/layout/newshape/label/_font.py index c3e190e4d7..4b3e08f748 100644 --- a/plotly/graph_objects/layout/newshape/label/_font.py +++ b/plotly/graph_objects/layout/newshape/label/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py b/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py index a09b48d793..6cdcce4e08 100644 --- a/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py +++ b/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/polar/_angularaxis.py b/plotly/graph_objects/layout/polar/_angularaxis.py index 642114b281..cadde85627 100644 --- a/plotly/graph_objects/layout/polar/_angularaxis.py +++ b/plotly/graph_objects/layout/polar/_angularaxis.py @@ -494,7 +494,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -890,7 +891,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/polar/_domain.py b/plotly/graph_objects/layout/polar/_domain.py index 9a8697edea..f3f257f83f 100644 --- a/plotly/graph_objects/layout/polar/_domain.py +++ b/plotly/graph_objects/layout/polar/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this polar subplot . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this polar subplot . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/polar/_radialaxis.py b/plotly/graph_objects/layout/polar/_radialaxis.py index fb7bd85c0d..3440c42afa 100644 --- a/plotly/graph_objects/layout/polar/_radialaxis.py +++ b/plotly/graph_objects/layout/polar/_radialaxis.py @@ -641,7 +641,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -1049,7 +1050,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py b/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py index d7da833c2c..b253cc68c0 100644 --- a/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py +++ b/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py b/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py index a7bcc0ad12..585250b4db 100644 --- a/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py +++ b/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/polar/radialaxis/title/_font.py b/plotly/graph_objects/layout/polar/radialaxis/title/_font.py index 61200cccfe..9d929c426e 100644 --- a/plotly/graph_objects/layout/polar/radialaxis/title/_font.py +++ b/plotly/graph_objects/layout/polar/radialaxis/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/scene/_annotation.py b/plotly/graph_objects/layout/scene/_annotation.py index 755b97527c..9fed61c380 100644 --- a/plotly/graph_objects/layout/scene/_annotation.py +++ b/plotly/graph_objects/layout/scene/_annotation.py @@ -101,7 +101,8 @@ def arrowhead(self): Sets the end annotation arrow head style. The 'arrowhead' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 8] Returns @@ -501,7 +502,8 @@ def startarrowhead(self): Sets the start annotation arrow head style. The 'startarrowhead' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 8] Returns diff --git a/plotly/graph_objects/layout/scene/_domain.py b/plotly/graph_objects/layout/scene/_domain.py index 45e88e0f5a..ff34fd7818 100644 --- a/plotly/graph_objects/layout/scene/_domain.py +++ b/plotly/graph_objects/layout/scene/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this scene subplot . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this scene subplot . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/scene/_xaxis.py b/plotly/graph_objects/layout/scene/_xaxis.py index ee31733b84..014b4d7c7b 100644 --- a/plotly/graph_objects/layout/scene/_xaxis.py +++ b/plotly/graph_objects/layout/scene/_xaxis.py @@ -590,7 +590,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/scene/_yaxis.py b/plotly/graph_objects/layout/scene/_yaxis.py index 72d342f215..996846f4c4 100644 --- a/plotly/graph_objects/layout/scene/_yaxis.py +++ b/plotly/graph_objects/layout/scene/_yaxis.py @@ -590,7 +590,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/scene/_zaxis.py b/plotly/graph_objects/layout/scene/_zaxis.py index 536e8e5370..354b997929 100644 --- a/plotly/graph_objects/layout/scene/_zaxis.py +++ b/plotly/graph_objects/layout/scene/_zaxis.py @@ -590,7 +590,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/scene/annotation/_font.py b/plotly/graph_objects/layout/scene/annotation/_font.py index 67ad9db186..151e437e5d 100644 --- a/plotly/graph_objects/layout/scene/annotation/_font.py +++ b/plotly/graph_objects/layout/scene/annotation/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py b/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py index 218b765149..9bad1fd184 100644 --- a/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/scene/xaxis/_tickfont.py b/plotly/graph_objects/layout/scene/xaxis/_tickfont.py index 3f1a5a7c03..89aac4b1c2 100644 --- a/plotly/graph_objects/layout/scene/xaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/xaxis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/scene/xaxis/title/_font.py b/plotly/graph_objects/layout/scene/xaxis/title/_font.py index 5e762f2d70..bd1cf45228 100644 --- a/plotly/graph_objects/layout/scene/xaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/xaxis/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/scene/yaxis/_tickfont.py b/plotly/graph_objects/layout/scene/yaxis/_tickfont.py index 2aaa28d5f2..1a56fc35d6 100644 --- a/plotly/graph_objects/layout/scene/yaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/yaxis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/scene/yaxis/title/_font.py b/plotly/graph_objects/layout/scene/yaxis/title/_font.py index 675a94198e..eba9b96a1a 100644 --- a/plotly/graph_objects/layout/scene/yaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/yaxis/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/scene/zaxis/_tickfont.py b/plotly/graph_objects/layout/scene/zaxis/_tickfont.py index 459c81e9c6..882005e14f 100644 --- a/plotly/graph_objects/layout/scene/zaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/zaxis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/scene/zaxis/title/_font.py b/plotly/graph_objects/layout/scene/zaxis/title/_font.py index 97ada26370..e947644b37 100644 --- a/plotly/graph_objects/layout/scene/zaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/zaxis/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/shape/label/_font.py b/plotly/graph_objects/layout/shape/label/_font.py index 3fbd50257a..1c7430e133 100644 --- a/plotly/graph_objects/layout/shape/label/_font.py +++ b/plotly/graph_objects/layout/shape/label/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py b/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py index 73840c2f57..cc77b2c195 100644 --- a/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py +++ b/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/slider/_font.py b/plotly/graph_objects/layout/slider/_font.py index 6d5fff56bb..d38fe8103c 100644 --- a/plotly/graph_objects/layout/slider/_font.py +++ b/plotly/graph_objects/layout/slider/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/slider/currentvalue/_font.py b/plotly/graph_objects/layout/slider/currentvalue/_font.py index 221a5cfcb1..9e4c2c0350 100644 --- a/plotly/graph_objects/layout/slider/currentvalue/_font.py +++ b/plotly/graph_objects/layout/slider/currentvalue/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/smith/_domain.py b/plotly/graph_objects/layout/smith/_domain.py index f89a6e49a3..db7d66236a 100644 --- a/plotly/graph_objects/layout/smith/_domain.py +++ b/plotly/graph_objects/layout/smith/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this smith subplot . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this smith subplot . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py b/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py index 396355ce65..4e1f8ba016 100644 --- a/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py +++ b/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/smith/realaxis/_tickfont.py b/plotly/graph_objects/layout/smith/realaxis/_tickfont.py index 40c509f4a4..9a93fcc77c 100644 --- a/plotly/graph_objects/layout/smith/realaxis/_tickfont.py +++ b/plotly/graph_objects/layout/smith/realaxis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/ternary/_aaxis.py b/plotly/graph_objects/layout/ternary/_aaxis.py index 6aa33d35ad..19ac3fbdc8 100644 --- a/plotly/graph_objects/layout/ternary/_aaxis.py +++ b/plotly/graph_objects/layout/ternary/_aaxis.py @@ -382,7 +382,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns @@ -712,7 +713,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/ternary/_baxis.py b/plotly/graph_objects/layout/ternary/_baxis.py index 6ecd696025..4a38618143 100644 --- a/plotly/graph_objects/layout/ternary/_baxis.py +++ b/plotly/graph_objects/layout/ternary/_baxis.py @@ -382,7 +382,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns @@ -712,7 +713,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/ternary/_caxis.py b/plotly/graph_objects/layout/ternary/_caxis.py index bc82183ae1..f8c7fcf31c 100644 --- a/plotly/graph_objects/layout/ternary/_caxis.py +++ b/plotly/graph_objects/layout/ternary/_caxis.py @@ -382,7 +382,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns @@ -712,7 +713,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/ternary/_domain.py b/plotly/graph_objects/layout/ternary/_domain.py index 509fea90fa..96cae57f34 100644 --- a/plotly/graph_objects/layout/ternary/_domain.py +++ b/plotly/graph_objects/layout/ternary/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this ternary subplot . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this ternary subplot . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py b/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py index 9ba66c4178..9f92926a62 100644 --- a/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/ternary/aaxis/title/_font.py b/plotly/graph_objects/layout/ternary/aaxis/title/_font.py index e0409ac873..67023bec71 100644 --- a/plotly/graph_objects/layout/ternary/aaxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/aaxis/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/ternary/baxis/_tickfont.py b/plotly/graph_objects/layout/ternary/baxis/_tickfont.py index e537172790..9824bbb7cd 100644 --- a/plotly/graph_objects/layout/ternary/baxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/baxis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/ternary/baxis/title/_font.py b/plotly/graph_objects/layout/ternary/baxis/title/_font.py index 5305e66d4b..720cd7f83f 100644 --- a/plotly/graph_objects/layout/ternary/baxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/baxis/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/ternary/caxis/_tickfont.py b/plotly/graph_objects/layout/ternary/caxis/_tickfont.py index a3c76f125f..6a23b17db9 100644 --- a/plotly/graph_objects/layout/ternary/caxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/caxis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/ternary/caxis/title/_font.py b/plotly/graph_objects/layout/ternary/caxis/title/_font.py index 6e6d95cb50..643a277ed3 100644 --- a/plotly/graph_objects/layout/ternary/caxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/caxis/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/title/_font.py b/plotly/graph_objects/layout/title/_font.py index fd48c7ef25..6b48123476 100644 --- a/plotly/graph_objects/layout/title/_font.py +++ b/plotly/graph_objects/layout/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/title/subtitle/_font.py b/plotly/graph_objects/layout/title/subtitle/_font.py index 6dc6295be1..984888e615 100644 --- a/plotly/graph_objects/layout/title/subtitle/_font.py +++ b/plotly/graph_objects/layout/title/subtitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/updatemenu/_font.py b/plotly/graph_objects/layout/updatemenu/_font.py index 4b381d090a..9f873de8a8 100644 --- a/plotly/graph_objects/layout/updatemenu/_font.py +++ b/plotly/graph_objects/layout/updatemenu/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/xaxis/_minor.py b/plotly/graph_objects/layout/xaxis/_minor.py index 5b3975ec6e..26805c691a 100644 --- a/plotly/graph_objects/layout/xaxis/_minor.py +++ b/plotly/graph_objects/layout/xaxis/_minor.py @@ -140,7 +140,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/xaxis/_rangeslider.py b/plotly/graph_objects/layout/xaxis/_rangeslider.py index 71e10db9b7..17d03733e7 100644 --- a/plotly/graph_objects/layout/xaxis/_rangeslider.py +++ b/plotly/graph_objects/layout/xaxis/_rangeslider.py @@ -91,7 +91,8 @@ def borderwidth(self): Sets the border width of the range slider. The 'borderwidth' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/xaxis/_tickfont.py b/plotly/graph_objects/layout/xaxis/_tickfont.py index 1a30298cda..dead4a4a3c 100644 --- a/plotly/graph_objects/layout/xaxis/_tickfont.py +++ b/plotly/graph_objects/layout/xaxis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/xaxis/rangeselector/_font.py b/plotly/graph_objects/layout/xaxis/rangeselector/_font.py index 109637caca..bce59534c2 100644 --- a/plotly/graph_objects/layout/xaxis/rangeselector/_font.py +++ b/plotly/graph_objects/layout/xaxis/rangeselector/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/xaxis/title/_font.py b/plotly/graph_objects/layout/xaxis/title/_font.py index 770240706a..a102a65e53 100644 --- a/plotly/graph_objects/layout/xaxis/title/_font.py +++ b/plotly/graph_objects/layout/xaxis/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/yaxis/_minor.py b/plotly/graph_objects/layout/yaxis/_minor.py index 091310f989..0647e70732 100644 --- a/plotly/graph_objects/layout/yaxis/_minor.py +++ b/plotly/graph_objects/layout/yaxis/_minor.py @@ -140,7 +140,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/layout/yaxis/_tickfont.py b/plotly/graph_objects/layout/yaxis/_tickfont.py index 70b8824bb7..8a8b5e3d08 100644 --- a/plotly/graph_objects/layout/yaxis/_tickfont.py +++ b/plotly/graph_objects/layout/yaxis/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/layout/yaxis/title/_font.py b/plotly/graph_objects/layout/yaxis/title/_font.py index bfbd3f4da5..5a72016ed7 100644 --- a/plotly/graph_objects/layout/yaxis/title/_font.py +++ b/plotly/graph_objects/layout/yaxis/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/mesh3d/_colorbar.py b/plotly/graph_objects/mesh3d/_colorbar.py index 7e5e957042..1546f028bc 100644 --- a/plotly/graph_objects/mesh3d/_colorbar.py +++ b/plotly/graph_objects/mesh3d/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/mesh3d/_hoverlabel.py b/plotly/graph_objects/mesh3d/_hoverlabel.py index fedf7f5fb1..e5dc116f81 100644 --- a/plotly/graph_objects/mesh3d/_hoverlabel.py +++ b/plotly/graph_objects/mesh3d/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/mesh3d/colorbar/_tickfont.py b/plotly/graph_objects/mesh3d/colorbar/_tickfont.py index 831a9b6dd2..ebefa4837c 100644 --- a/plotly/graph_objects/mesh3d/colorbar/_tickfont.py +++ b/plotly/graph_objects/mesh3d/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/mesh3d/colorbar/title/_font.py b/plotly/graph_objects/mesh3d/colorbar/title/_font.py index b49ef5cf49..b0c9b55638 100644 --- a/plotly/graph_objects/mesh3d/colorbar/title/_font.py +++ b/plotly/graph_objects/mesh3d/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/mesh3d/hoverlabel/_font.py b/plotly/graph_objects/mesh3d/hoverlabel/_font.py index 417127a622..96b149e4ba 100644 --- a/plotly/graph_objects/mesh3d/hoverlabel/_font.py +++ b/plotly/graph_objects/mesh3d/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py b/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py index 5962b2b407..59e1be8db6 100644 --- a/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/ohlc/_hoverlabel.py b/plotly/graph_objects/ohlc/_hoverlabel.py index 59929bb12c..b386c17faf 100644 --- a/plotly/graph_objects/ohlc/_hoverlabel.py +++ b/plotly/graph_objects/ohlc/_hoverlabel.py @@ -181,7 +181,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/ohlc/hoverlabel/_font.py b/plotly/graph_objects/ohlc/hoverlabel/_font.py index ffb3a8807a..dfb15c8d1a 100644 --- a/plotly/graph_objects/ohlc/hoverlabel/_font.py +++ b/plotly/graph_objects/ohlc/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/ohlc/legendgrouptitle/_font.py b/plotly/graph_objects/ohlc/legendgrouptitle/_font.py index 5b10a3f255..5a62e7cbaa 100644 --- a/plotly/graph_objects/ohlc/legendgrouptitle/_font.py +++ b/plotly/graph_objects/ohlc/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/parcats/_dimension.py b/plotly/graph_objects/parcats/_dimension.py index a4fc4b4e39..b34e9570a8 100644 --- a/plotly/graph_objects/parcats/_dimension.py +++ b/plotly/graph_objects/parcats/_dimension.py @@ -99,7 +99,8 @@ def displayindex(self): indexed, defaults to dimension index. The 'displayindex' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) Returns ------- diff --git a/plotly/graph_objects/parcats/_domain.py b/plotly/graph_objects/parcats/_domain.py index 1759406c0e..7319f3b583 100644 --- a/plotly/graph_objects/parcats/_domain.py +++ b/plotly/graph_objects/parcats/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this parcats trace . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this parcats trace . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/parcats/_labelfont.py b/plotly/graph_objects/parcats/_labelfont.py index 3861a10c2d..5ff2a67722 100644 --- a/plotly/graph_objects/parcats/_labelfont.py +++ b/plotly/graph_objects/parcats/_labelfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/parcats/_tickfont.py b/plotly/graph_objects/parcats/_tickfont.py index e861dcd062..60993fe10a 100644 --- a/plotly/graph_objects/parcats/_tickfont.py +++ b/plotly/graph_objects/parcats/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/parcats/legendgrouptitle/_font.py b/plotly/graph_objects/parcats/legendgrouptitle/_font.py index 5ca7d0aa29..0a0afe4619 100644 --- a/plotly/graph_objects/parcats/legendgrouptitle/_font.py +++ b/plotly/graph_objects/parcats/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/parcats/line/_colorbar.py b/plotly/graph_objects/parcats/line/_colorbar.py index a96e3f0801..1205a9d7b4 100644 --- a/plotly/graph_objects/parcats/line/_colorbar.py +++ b/plotly/graph_objects/parcats/line/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/parcats/line/colorbar/_tickfont.py b/plotly/graph_objects/parcats/line/colorbar/_tickfont.py index 29ab365c9a..0143d452e2 100644 --- a/plotly/graph_objects/parcats/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/parcats/line/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/parcats/line/colorbar/title/_font.py b/plotly/graph_objects/parcats/line/colorbar/title/_font.py index 10cee6ce7a..c30ebc008a 100644 --- a/plotly/graph_objects/parcats/line/colorbar/title/_font.py +++ b/plotly/graph_objects/parcats/line/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/parcoords/_domain.py b/plotly/graph_objects/parcoords/_domain.py index 9594f2ba1c..a1c9216cd7 100644 --- a/plotly/graph_objects/parcoords/_domain.py +++ b/plotly/graph_objects/parcoords/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this parcoords trace . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this parcoords trace . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/parcoords/_labelfont.py b/plotly/graph_objects/parcoords/_labelfont.py index 00cc750144..f87b3de937 100644 --- a/plotly/graph_objects/parcoords/_labelfont.py +++ b/plotly/graph_objects/parcoords/_labelfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/parcoords/_rangefont.py b/plotly/graph_objects/parcoords/_rangefont.py index 023b96b425..c588bfcd10 100644 --- a/plotly/graph_objects/parcoords/_rangefont.py +++ b/plotly/graph_objects/parcoords/_rangefont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/parcoords/_tickfont.py b/plotly/graph_objects/parcoords/_tickfont.py index dbdebc0eb8..31d171c2c9 100644 --- a/plotly/graph_objects/parcoords/_tickfont.py +++ b/plotly/graph_objects/parcoords/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/parcoords/legendgrouptitle/_font.py b/plotly/graph_objects/parcoords/legendgrouptitle/_font.py index 2598ce923b..b8243f0422 100644 --- a/plotly/graph_objects/parcoords/legendgrouptitle/_font.py +++ b/plotly/graph_objects/parcoords/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/parcoords/line/_colorbar.py b/plotly/graph_objects/parcoords/line/_colorbar.py index 83e21a2d47..013fd60a00 100644 --- a/plotly/graph_objects/parcoords/line/_colorbar.py +++ b/plotly/graph_objects/parcoords/line/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py b/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py index 868c1a3364..cc079a71f9 100644 --- a/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/parcoords/line/colorbar/title/_font.py b/plotly/graph_objects/parcoords/line/colorbar/title/_font.py index 6483ea4690..cc12d4e5e7 100644 --- a/plotly/graph_objects/parcoords/line/colorbar/title/_font.py +++ b/plotly/graph_objects/parcoords/line/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/pie/_domain.py b/plotly/graph_objects/pie/_domain.py index 7c2032ce2a..bc209b03e6 100644 --- a/plotly/graph_objects/pie/_domain.py +++ b/plotly/graph_objects/pie/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this pie trace . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this pie trace . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/pie/_hoverlabel.py b/plotly/graph_objects/pie/_hoverlabel.py index 8ec1d18766..c3f6c2615d 100644 --- a/plotly/graph_objects/pie/_hoverlabel.py +++ b/plotly/graph_objects/pie/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/pie/_insidetextfont.py b/plotly/graph_objects/pie/_insidetextfont.py index 54e29f92ea..bced401c04 100644 --- a/plotly/graph_objects/pie/_insidetextfont.py +++ b/plotly/graph_objects/pie/_insidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/pie/_outsidetextfont.py b/plotly/graph_objects/pie/_outsidetextfont.py index 9276bfacb0..3273198c68 100644 --- a/plotly/graph_objects/pie/_outsidetextfont.py +++ b/plotly/graph_objects/pie/_outsidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/pie/_textfont.py b/plotly/graph_objects/pie/_textfont.py index 41989a2f83..6be008684c 100644 --- a/plotly/graph_objects/pie/_textfont.py +++ b/plotly/graph_objects/pie/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/pie/hoverlabel/_font.py b/plotly/graph_objects/pie/hoverlabel/_font.py index dc718bdb7c..c124a2dfc4 100644 --- a/plotly/graph_objects/pie/hoverlabel/_font.py +++ b/plotly/graph_objects/pie/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/pie/legendgrouptitle/_font.py b/plotly/graph_objects/pie/legendgrouptitle/_font.py index 1ae0bf24ae..5ace82c2d7 100644 --- a/plotly/graph_objects/pie/legendgrouptitle/_font.py +++ b/plotly/graph_objects/pie/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/pie/title/_font.py b/plotly/graph_objects/pie/title/_font.py index 3abc499644..80b50af819 100644 --- a/plotly/graph_objects/pie/title/_font.py +++ b/plotly/graph_objects/pie/title/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/sankey/_domain.py b/plotly/graph_objects/sankey/_domain.py index 5d818fceb5..a6b51485c4 100644 --- a/plotly/graph_objects/sankey/_domain.py +++ b/plotly/graph_objects/sankey/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this sankey trace . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this sankey trace . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/sankey/_hoverlabel.py b/plotly/graph_objects/sankey/_hoverlabel.py index 0560d41c5f..fd8842b110 100644 --- a/plotly/graph_objects/sankey/_hoverlabel.py +++ b/plotly/graph_objects/sankey/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/sankey/_textfont.py b/plotly/graph_objects/sankey/_textfont.py index 921b8f0dea..3d3ca43a41 100644 --- a/plotly/graph_objects/sankey/_textfont.py +++ b/plotly/graph_objects/sankey/_textfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/sankey/hoverlabel/_font.py b/plotly/graph_objects/sankey/hoverlabel/_font.py index 115cc42f12..054c0861fa 100644 --- a/plotly/graph_objects/sankey/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/sankey/legendgrouptitle/_font.py b/plotly/graph_objects/sankey/legendgrouptitle/_font.py index bfb977c6ea..d593c0b7ba 100644 --- a/plotly/graph_objects/sankey/legendgrouptitle/_font.py +++ b/plotly/graph_objects/sankey/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/sankey/link/_hoverlabel.py b/plotly/graph_objects/sankey/link/_hoverlabel.py index d4d36d2ba8..6dd1a86abc 100644 --- a/plotly/graph_objects/sankey/link/_hoverlabel.py +++ b/plotly/graph_objects/sankey/link/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/sankey/link/hoverlabel/_font.py b/plotly/graph_objects/sankey/link/hoverlabel/_font.py index cfd1af640f..0dc26f667e 100644 --- a/plotly/graph_objects/sankey/link/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/link/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/sankey/node/_hoverlabel.py b/plotly/graph_objects/sankey/node/_hoverlabel.py index 4c5290b987..282e1b2759 100644 --- a/plotly/graph_objects/sankey/node/_hoverlabel.py +++ b/plotly/graph_objects/sankey/node/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/sankey/node/hoverlabel/_font.py b/plotly/graph_objects/sankey/node/hoverlabel/_font.py index 12174d46c9..9e3ce8873c 100644 --- a/plotly/graph_objects/sankey/node/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/node/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatter/_error_x.py b/plotly/graph_objects/scatter/_error_x.py index 2dd2e931c8..846623a572 100644 --- a/plotly/graph_objects/scatter/_error_x.py +++ b/plotly/graph_objects/scatter/_error_x.py @@ -184,7 +184,8 @@ def thickness(self, val): def traceref(self): """ The 'traceref' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -201,7 +202,8 @@ def traceref(self, val): def tracerefminus(self): """ The 'tracerefminus' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scatter/_error_y.py b/plotly/graph_objects/scatter/_error_y.py index 61e47f89f3..dc891b86a0 100644 --- a/plotly/graph_objects/scatter/_error_y.py +++ b/plotly/graph_objects/scatter/_error_y.py @@ -167,7 +167,8 @@ def thickness(self, val): def traceref(self): """ The 'traceref' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -184,7 +185,8 @@ def traceref(self, val): def tracerefminus(self): """ The 'tracerefminus' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scatter/_hoverlabel.py b/plotly/graph_objects/scatter/_hoverlabel.py index e9ab500a99..476fb0c08c 100644 --- a/plotly/graph_objects/scatter/_hoverlabel.py +++ b/plotly/graph_objects/scatter/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatter/_textfont.py b/plotly/graph_objects/scatter/_textfont.py index 3c0b735a89..46701a52ef 100644 --- a/plotly/graph_objects/scatter/_textfont.py +++ b/plotly/graph_objects/scatter/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatter/hoverlabel/_font.py b/plotly/graph_objects/scatter/hoverlabel/_font.py index f8b7231347..0d7dc0dabd 100644 --- a/plotly/graph_objects/scatter/hoverlabel/_font.py +++ b/plotly/graph_objects/scatter/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatter/legendgrouptitle/_font.py b/plotly/graph_objects/scatter/legendgrouptitle/_font.py index 1c5d77a077..5effd01b70 100644 --- a/plotly/graph_objects/scatter/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatter/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatter/marker/_colorbar.py b/plotly/graph_objects/scatter/marker/_colorbar.py index 33d3bc4db1..ee8a7c6256 100644 --- a/plotly/graph_objects/scatter/marker/_colorbar.py +++ b/plotly/graph_objects/scatter/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py index 80dddf8947..b438811705 100644 --- a/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatter/marker/colorbar/title/_font.py b/plotly/graph_objects/scatter/marker/colorbar/title/_font.py index 9d2f3a5c87..61c87bf668 100644 --- a/plotly/graph_objects/scatter/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatter3d/_error_x.py b/plotly/graph_objects/scatter3d/_error_x.py index b8b60edfd2..1661153b31 100644 --- a/plotly/graph_objects/scatter3d/_error_x.py +++ b/plotly/graph_objects/scatter3d/_error_x.py @@ -184,7 +184,8 @@ def thickness(self, val): def traceref(self): """ The 'traceref' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -201,7 +202,8 @@ def traceref(self, val): def tracerefminus(self): """ The 'tracerefminus' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scatter3d/_error_y.py b/plotly/graph_objects/scatter3d/_error_y.py index 8ff5d85669..f120c65830 100644 --- a/plotly/graph_objects/scatter3d/_error_y.py +++ b/plotly/graph_objects/scatter3d/_error_y.py @@ -184,7 +184,8 @@ def thickness(self, val): def traceref(self): """ The 'traceref' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -201,7 +202,8 @@ def traceref(self, val): def tracerefminus(self): """ The 'tracerefminus' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scatter3d/_error_z.py b/plotly/graph_objects/scatter3d/_error_z.py index 8d55dead6c..0e322aa5cb 100644 --- a/plotly/graph_objects/scatter3d/_error_z.py +++ b/plotly/graph_objects/scatter3d/_error_z.py @@ -167,7 +167,8 @@ def thickness(self, val): def traceref(self): """ The 'traceref' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -184,7 +185,8 @@ def traceref(self, val): def tracerefminus(self): """ The 'tracerefminus' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scatter3d/_hoverlabel.py b/plotly/graph_objects/scatter3d/_hoverlabel.py index dc6debc96e..8d053d1bfd 100644 --- a/plotly/graph_objects/scatter3d/_hoverlabel.py +++ b/plotly/graph_objects/scatter3d/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatter3d/_textfont.py b/plotly/graph_objects/scatter3d/_textfont.py index c1431bf683..3e1ebff7a0 100644 --- a/plotly/graph_objects/scatter3d/_textfont.py +++ b/plotly/graph_objects/scatter3d/_textfont.py @@ -232,7 +232,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatter3d/hoverlabel/_font.py b/plotly/graph_objects/scatter3d/hoverlabel/_font.py index 2f048d0f74..563695038e 100644 --- a/plotly/graph_objects/scatter3d/hoverlabel/_font.py +++ b/plotly/graph_objects/scatter3d/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py b/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py index 333062ebfe..a0895677e9 100644 --- a/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatter3d/line/_colorbar.py b/plotly/graph_objects/scatter3d/line/_colorbar.py index 4a4f8672c1..de22d71a82 100644 --- a/plotly/graph_objects/scatter3d/line/_colorbar.py +++ b/plotly/graph_objects/scatter3d/line/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py b/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py index bc63c0ead1..698b86005f 100644 --- a/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py b/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py index 15cae5b481..7337632067 100644 --- a/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatter3d/marker/_colorbar.py b/plotly/graph_objects/scatter3d/marker/_colorbar.py index 76611b9864..585310e192 100644 --- a/plotly/graph_objects/scatter3d/marker/_colorbar.py +++ b/plotly/graph_objects/scatter3d/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py index 7f087282ee..2257bbd8c8 100644 --- a/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py b/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py index bb7c147ebb..06b95425cb 100644 --- a/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattercarpet/_hoverlabel.py b/plotly/graph_objects/scattercarpet/_hoverlabel.py index 3576b89e61..a761a854e4 100644 --- a/plotly/graph_objects/scattercarpet/_hoverlabel.py +++ b/plotly/graph_objects/scattercarpet/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattercarpet/_textfont.py b/plotly/graph_objects/scattercarpet/_textfont.py index b8bb9c700e..6d79eb8321 100644 --- a/plotly/graph_objects/scattercarpet/_textfont.py +++ b/plotly/graph_objects/scattercarpet/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattercarpet/hoverlabel/_font.py b/plotly/graph_objects/scattercarpet/hoverlabel/_font.py index aca1360645..1912d6bdb1 100644 --- a/plotly/graph_objects/scattercarpet/hoverlabel/_font.py +++ b/plotly/graph_objects/scattercarpet/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py b/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py index 65fb3e4160..929de6f81f 100644 --- a/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattercarpet/marker/_colorbar.py b/plotly/graph_objects/scattercarpet/marker/_colorbar.py index 79491b3272..81b2e5bbbc 100644 --- a/plotly/graph_objects/scattercarpet/marker/_colorbar.py +++ b/plotly/graph_objects/scattercarpet/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py index d8bffbe833..24b54515ea 100644 --- a/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py b/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py index 552705a535..c7739560d6 100644 --- a/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattergeo/_hoverlabel.py b/plotly/graph_objects/scattergeo/_hoverlabel.py index 71125ad5a4..6e473f3da2 100644 --- a/plotly/graph_objects/scattergeo/_hoverlabel.py +++ b/plotly/graph_objects/scattergeo/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattergeo/_textfont.py b/plotly/graph_objects/scattergeo/_textfont.py index 25c984ff42..afda75ab61 100644 --- a/plotly/graph_objects/scattergeo/_textfont.py +++ b/plotly/graph_objects/scattergeo/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattergeo/hoverlabel/_font.py b/plotly/graph_objects/scattergeo/hoverlabel/_font.py index 8ec7418a01..ba0da9dc10 100644 --- a/plotly/graph_objects/scattergeo/hoverlabel/_font.py +++ b/plotly/graph_objects/scattergeo/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py b/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py index a582dd9f4e..6c0ffaef75 100644 --- a/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattergeo/marker/_colorbar.py b/plotly/graph_objects/scattergeo/marker/_colorbar.py index 2840a3025e..9bf5ce7e79 100644 --- a/plotly/graph_objects/scattergeo/marker/_colorbar.py +++ b/plotly/graph_objects/scattergeo/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py index fd1cdf8dd4..146e095af6 100644 --- a/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py b/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py index c319a41853..e933200bbb 100644 --- a/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattergl/_error_x.py b/plotly/graph_objects/scattergl/_error_x.py index 5ce262145c..563873fc8a 100644 --- a/plotly/graph_objects/scattergl/_error_x.py +++ b/plotly/graph_objects/scattergl/_error_x.py @@ -184,7 +184,8 @@ def thickness(self, val): def traceref(self): """ The 'traceref' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -201,7 +202,8 @@ def traceref(self, val): def tracerefminus(self): """ The 'tracerefminus' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scattergl/_error_y.py b/plotly/graph_objects/scattergl/_error_y.py index 7fd278ca45..15a7b1950b 100644 --- a/plotly/graph_objects/scattergl/_error_y.py +++ b/plotly/graph_objects/scattergl/_error_y.py @@ -167,7 +167,8 @@ def thickness(self, val): def traceref(self): """ The 'traceref' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -184,7 +185,8 @@ def traceref(self, val): def tracerefminus(self): """ The 'tracerefminus' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scattergl/_hoverlabel.py b/plotly/graph_objects/scattergl/_hoverlabel.py index b4651af8a7..5f1deee59d 100644 --- a/plotly/graph_objects/scattergl/_hoverlabel.py +++ b/plotly/graph_objects/scattergl/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattergl/hoverlabel/_font.py b/plotly/graph_objects/scattergl/hoverlabel/_font.py index 8355751419..b43c45e771 100644 --- a/plotly/graph_objects/scattergl/hoverlabel/_font.py +++ b/plotly/graph_objects/scattergl/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattergl/legendgrouptitle/_font.py b/plotly/graph_objects/scattergl/legendgrouptitle/_font.py index 3576c30767..a65bcda72a 100644 --- a/plotly/graph_objects/scattergl/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattergl/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattergl/marker/_colorbar.py b/plotly/graph_objects/scattergl/marker/_colorbar.py index 7834c349e1..4f4adb2739 100644 --- a/plotly/graph_objects/scattergl/marker/_colorbar.py +++ b/plotly/graph_objects/scattergl/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py index 8560cf684a..5059a0d9cc 100644 --- a/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py b/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py index 527334eccd..f2c621098d 100644 --- a/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattermap/_hoverlabel.py b/plotly/graph_objects/scattermap/_hoverlabel.py index 32bf74cdb7..8c9d6f4f22 100644 --- a/plotly/graph_objects/scattermap/_hoverlabel.py +++ b/plotly/graph_objects/scattermap/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattermap/_textfont.py b/plotly/graph_objects/scattermap/_textfont.py index 26ce7c49f5..c936a74386 100644 --- a/plotly/graph_objects/scattermap/_textfont.py +++ b/plotly/graph_objects/scattermap/_textfont.py @@ -99,7 +99,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattermap/hoverlabel/_font.py b/plotly/graph_objects/scattermap/hoverlabel/_font.py index bfc1344aba..432aa10064 100644 --- a/plotly/graph_objects/scattermap/hoverlabel/_font.py +++ b/plotly/graph_objects/scattermap/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattermap/legendgrouptitle/_font.py b/plotly/graph_objects/scattermap/legendgrouptitle/_font.py index 153377c6af..bc7bf76cb7 100644 --- a/plotly/graph_objects/scattermap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattermap/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattermap/marker/_colorbar.py b/plotly/graph_objects/scattermap/marker/_colorbar.py index 661eb98246..32beabb919 100644 --- a/plotly/graph_objects/scattermap/marker/_colorbar.py +++ b/plotly/graph_objects/scattermap/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py index cdd0d26795..31bf2b0b0d 100644 --- a/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py b/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py index 434af4cde7..cee3e234a3 100644 --- a/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattermapbox/_hoverlabel.py b/plotly/graph_objects/scattermapbox/_hoverlabel.py index ed37e19d76..67c2253bf1 100644 --- a/plotly/graph_objects/scattermapbox/_hoverlabel.py +++ b/plotly/graph_objects/scattermapbox/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattermapbox/_textfont.py b/plotly/graph_objects/scattermapbox/_textfont.py index 5bca6e6803..7ace51db11 100644 --- a/plotly/graph_objects/scattermapbox/_textfont.py +++ b/plotly/graph_objects/scattermapbox/_textfont.py @@ -99,7 +99,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattermapbox/hoverlabel/_font.py b/plotly/graph_objects/scattermapbox/hoverlabel/_font.py index a2a9818016..5ccb5c862d 100644 --- a/plotly/graph_objects/scattermapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/scattermapbox/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py b/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py index 5cafcc5c29..7ffdb40371 100644 --- a/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattermapbox/marker/_colorbar.py b/plotly/graph_objects/scattermapbox/marker/_colorbar.py index 2e5cfa1055..913d1aedc3 100644 --- a/plotly/graph_objects/scattermapbox/marker/_colorbar.py +++ b/plotly/graph_objects/scattermapbox/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py index b2469bbbfe..2e965c384c 100644 --- a/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py b/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py index 3984c2cf6e..b7b13e2955 100644 --- a/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatterpolar/_hoverlabel.py b/plotly/graph_objects/scatterpolar/_hoverlabel.py index b899a36346..f8e417dc54 100644 --- a/plotly/graph_objects/scatterpolar/_hoverlabel.py +++ b/plotly/graph_objects/scatterpolar/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatterpolar/_textfont.py b/plotly/graph_objects/scatterpolar/_textfont.py index 33a7ae3e78..35f20322ba 100644 --- a/plotly/graph_objects/scatterpolar/_textfont.py +++ b/plotly/graph_objects/scatterpolar/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatterpolar/hoverlabel/_font.py b/plotly/graph_objects/scatterpolar/hoverlabel/_font.py index 7accc916d5..4d69d0b66c 100644 --- a/plotly/graph_objects/scatterpolar/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterpolar/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py b/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py index 9aa43b41a2..ba7a6e8524 100644 --- a/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatterpolar/marker/_colorbar.py b/plotly/graph_objects/scatterpolar/marker/_colorbar.py index 7661a5bc0e..ebfa6fa887 100644 --- a/plotly/graph_objects/scatterpolar/marker/_colorbar.py +++ b/plotly/graph_objects/scatterpolar/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py index bd77e3cd43..d51a4e71f8 100644 --- a/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py index ec9ab3f69a..ae63555ddd 100644 --- a/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatterpolargl/_hoverlabel.py b/plotly/graph_objects/scatterpolargl/_hoverlabel.py index 59eee05582..36ebfed868 100644 --- a/plotly/graph_objects/scatterpolargl/_hoverlabel.py +++ b/plotly/graph_objects/scatterpolargl/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py b/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py index 2229796938..2a8a084df5 100644 --- a/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py b/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py index cd3b5ac89d..51ae1363f3 100644 --- a/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatterpolargl/marker/_colorbar.py b/plotly/graph_objects/scatterpolargl/marker/_colorbar.py index 17bb76fd53..aa81ca5730 100644 --- a/plotly/graph_objects/scatterpolargl/marker/_colorbar.py +++ b/plotly/graph_objects/scatterpolargl/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py index 0d5937dcf1..bdc8d5e4d9 100644 --- a/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py index a586772ee4..c848011406 100644 --- a/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattersmith/_hoverlabel.py b/plotly/graph_objects/scattersmith/_hoverlabel.py index 88418687a9..2c92cff21f 100644 --- a/plotly/graph_objects/scattersmith/_hoverlabel.py +++ b/plotly/graph_objects/scattersmith/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattersmith/_textfont.py b/plotly/graph_objects/scattersmith/_textfont.py index 6e8716bf46..ef340dc2e5 100644 --- a/plotly/graph_objects/scattersmith/_textfont.py +++ b/plotly/graph_objects/scattersmith/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattersmith/hoverlabel/_font.py b/plotly/graph_objects/scattersmith/hoverlabel/_font.py index 514a1da51c..032017fb54 100644 --- a/plotly/graph_objects/scattersmith/hoverlabel/_font.py +++ b/plotly/graph_objects/scattersmith/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py b/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py index 9706ed328a..6c7fe357b2 100644 --- a/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattersmith/marker/_colorbar.py b/plotly/graph_objects/scattersmith/marker/_colorbar.py index 13ae0180f2..0dcfa7a73d 100644 --- a/plotly/graph_objects/scattersmith/marker/_colorbar.py +++ b/plotly/graph_objects/scattersmith/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py index 45bf2b88fd..5dae93b09b 100644 --- a/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py b/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py index fb56359f01..e339602bd2 100644 --- a/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatterternary/_hoverlabel.py b/plotly/graph_objects/scatterternary/_hoverlabel.py index 2f6f58447a..86e0ff2318 100644 --- a/plotly/graph_objects/scatterternary/_hoverlabel.py +++ b/plotly/graph_objects/scatterternary/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatterternary/_textfont.py b/plotly/graph_objects/scatterternary/_textfont.py index 893baadacc..f332873c43 100644 --- a/plotly/graph_objects/scatterternary/_textfont.py +++ b/plotly/graph_objects/scatterternary/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatterternary/hoverlabel/_font.py b/plotly/graph_objects/scatterternary/hoverlabel/_font.py index 832631cd7e..8cec13912c 100644 --- a/plotly/graph_objects/scatterternary/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterternary/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py b/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py index 8854cc9a0c..678377e12b 100644 --- a/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatterternary/marker/_colorbar.py b/plotly/graph_objects/scatterternary/marker/_colorbar.py index 90833db549..c05b49ccc8 100644 --- a/plotly/graph_objects/scatterternary/marker/_colorbar.py +++ b/plotly/graph_objects/scatterternary/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py index 271f4fb954..254542026e 100644 --- a/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py index 3e658665f6..0c474cd921 100644 --- a/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/splom/_hoverlabel.py b/plotly/graph_objects/splom/_hoverlabel.py index 38b5b5198c..204791dff6 100644 --- a/plotly/graph_objects/splom/_hoverlabel.py +++ b/plotly/graph_objects/splom/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/splom/hoverlabel/_font.py b/plotly/graph_objects/splom/hoverlabel/_font.py index 307a86b89b..89ab5d9e74 100644 --- a/plotly/graph_objects/splom/hoverlabel/_font.py +++ b/plotly/graph_objects/splom/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/splom/legendgrouptitle/_font.py b/plotly/graph_objects/splom/legendgrouptitle/_font.py index c571aeb2f7..2ae18181f7 100644 --- a/plotly/graph_objects/splom/legendgrouptitle/_font.py +++ b/plotly/graph_objects/splom/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/splom/marker/_colorbar.py b/plotly/graph_objects/splom/marker/_colorbar.py index e82997c147..2e5175cfd7 100644 --- a/plotly/graph_objects/splom/marker/_colorbar.py +++ b/plotly/graph_objects/splom/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/splom/marker/colorbar/_tickfont.py b/plotly/graph_objects/splom/marker/colorbar/_tickfont.py index d8fa5ebe59..58c7500a59 100644 --- a/plotly/graph_objects/splom/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/splom/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/splom/marker/colorbar/title/_font.py b/plotly/graph_objects/splom/marker/colorbar/title/_font.py index ddf305771a..6cbe447d8f 100644 --- a/plotly/graph_objects/splom/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/splom/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/streamtube/_colorbar.py b/plotly/graph_objects/streamtube/_colorbar.py index 9e3622947f..764b6743c1 100644 --- a/plotly/graph_objects/streamtube/_colorbar.py +++ b/plotly/graph_objects/streamtube/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -731,7 +732,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/streamtube/_hoverlabel.py b/plotly/graph_objects/streamtube/_hoverlabel.py index 7e05d66294..3ae0d877fb 100644 --- a/plotly/graph_objects/streamtube/_hoverlabel.py +++ b/plotly/graph_objects/streamtube/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/streamtube/colorbar/_tickfont.py b/plotly/graph_objects/streamtube/colorbar/_tickfont.py index aede288d32..b4b90f6bdd 100644 --- a/plotly/graph_objects/streamtube/colorbar/_tickfont.py +++ b/plotly/graph_objects/streamtube/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/streamtube/colorbar/title/_font.py b/plotly/graph_objects/streamtube/colorbar/title/_font.py index 0eb1cb3158..589753c650 100644 --- a/plotly/graph_objects/streamtube/colorbar/title/_font.py +++ b/plotly/graph_objects/streamtube/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/streamtube/hoverlabel/_font.py b/plotly/graph_objects/streamtube/hoverlabel/_font.py index 195925c272..54da3fb9cc 100644 --- a/plotly/graph_objects/streamtube/hoverlabel/_font.py +++ b/plotly/graph_objects/streamtube/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/streamtube/legendgrouptitle/_font.py b/plotly/graph_objects/streamtube/legendgrouptitle/_font.py index 0c39c42165..96246284c3 100644 --- a/plotly/graph_objects/streamtube/legendgrouptitle/_font.py +++ b/plotly/graph_objects/streamtube/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/sunburst/_domain.py b/plotly/graph_objects/sunburst/_domain.py index bf0f49701e..d1fe8f3c12 100644 --- a/plotly/graph_objects/sunburst/_domain.py +++ b/plotly/graph_objects/sunburst/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this sunburst trace . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this sunburst trace . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/sunburst/_hoverlabel.py b/plotly/graph_objects/sunburst/_hoverlabel.py index b3870fb79a..82e8d5c3b0 100644 --- a/plotly/graph_objects/sunburst/_hoverlabel.py +++ b/plotly/graph_objects/sunburst/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/sunburst/_insidetextfont.py b/plotly/graph_objects/sunburst/_insidetextfont.py index 0f1e9324b9..b0c91cbfef 100644 --- a/plotly/graph_objects/sunburst/_insidetextfont.py +++ b/plotly/graph_objects/sunburst/_insidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/sunburst/_outsidetextfont.py b/plotly/graph_objects/sunburst/_outsidetextfont.py index f45e97ca78..e834f0676f 100644 --- a/plotly/graph_objects/sunburst/_outsidetextfont.py +++ b/plotly/graph_objects/sunburst/_outsidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/sunburst/_textfont.py b/plotly/graph_objects/sunburst/_textfont.py index 046d15ce51..fdfcba593e 100644 --- a/plotly/graph_objects/sunburst/_textfont.py +++ b/plotly/graph_objects/sunburst/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/sunburst/hoverlabel/_font.py b/plotly/graph_objects/sunburst/hoverlabel/_font.py index c1d0a58b1c..b57a0dd4c8 100644 --- a/plotly/graph_objects/sunburst/hoverlabel/_font.py +++ b/plotly/graph_objects/sunburst/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/sunburst/legendgrouptitle/_font.py b/plotly/graph_objects/sunburst/legendgrouptitle/_font.py index e8b8796885..1829633b26 100644 --- a/plotly/graph_objects/sunburst/legendgrouptitle/_font.py +++ b/plotly/graph_objects/sunburst/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/sunburst/marker/_colorbar.py b/plotly/graph_objects/sunburst/marker/_colorbar.py index 47aea339e6..5dd5fc8547 100644 --- a/plotly/graph_objects/sunburst/marker/_colorbar.py +++ b/plotly/graph_objects/sunburst/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py b/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py index 845c907383..b0ce15a8f8 100644 --- a/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py b/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py index 9ef726362b..d20354eacc 100644 --- a/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/surface/_colorbar.py b/plotly/graph_objects/surface/_colorbar.py index bc5fad0c48..87b217f3e5 100644 --- a/plotly/graph_objects/surface/_colorbar.py +++ b/plotly/graph_objects/surface/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/surface/_hoverlabel.py b/plotly/graph_objects/surface/_hoverlabel.py index 3acc06d7d5..587a55d2aa 100644 --- a/plotly/graph_objects/surface/_hoverlabel.py +++ b/plotly/graph_objects/surface/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/surface/colorbar/_tickfont.py b/plotly/graph_objects/surface/colorbar/_tickfont.py index d9db78cb8f..f326e64ee4 100644 --- a/plotly/graph_objects/surface/colorbar/_tickfont.py +++ b/plotly/graph_objects/surface/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/surface/colorbar/title/_font.py b/plotly/graph_objects/surface/colorbar/title/_font.py index 509b61b847..758dcc831d 100644 --- a/plotly/graph_objects/surface/colorbar/title/_font.py +++ b/plotly/graph_objects/surface/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/surface/hoverlabel/_font.py b/plotly/graph_objects/surface/hoverlabel/_font.py index bd4175e8a5..05716a7fce 100644 --- a/plotly/graph_objects/surface/hoverlabel/_font.py +++ b/plotly/graph_objects/surface/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/surface/legendgrouptitle/_font.py b/plotly/graph_objects/surface/legendgrouptitle/_font.py index 6faf2e4fa2..5874d4e422 100644 --- a/plotly/graph_objects/surface/legendgrouptitle/_font.py +++ b/plotly/graph_objects/surface/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/table/_domain.py b/plotly/graph_objects/table/_domain.py index e1391445e7..2042feb554 100644 --- a/plotly/graph_objects/table/_domain.py +++ b/plotly/graph_objects/table/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this table trace . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this table trace . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/table/_hoverlabel.py b/plotly/graph_objects/table/_hoverlabel.py index b870bd7cb5..6f68853db5 100644 --- a/plotly/graph_objects/table/_hoverlabel.py +++ b/plotly/graph_objects/table/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/table/cells/_font.py b/plotly/graph_objects/table/cells/_font.py index d333e1456c..52cad09fe6 100644 --- a/plotly/graph_objects/table/cells/_font.py +++ b/plotly/graph_objects/table/cells/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/table/header/_font.py b/plotly/graph_objects/table/header/_font.py index 349a6c0ef9..fe225fbe07 100644 --- a/plotly/graph_objects/table/header/_font.py +++ b/plotly/graph_objects/table/header/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/table/hoverlabel/_font.py b/plotly/graph_objects/table/hoverlabel/_font.py index 75e467e14d..6fbf9b8261 100644 --- a/plotly/graph_objects/table/hoverlabel/_font.py +++ b/plotly/graph_objects/table/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/table/legendgrouptitle/_font.py b/plotly/graph_objects/table/legendgrouptitle/_font.py index 1f502db2d0..7a76708036 100644 --- a/plotly/graph_objects/table/legendgrouptitle/_font.py +++ b/plotly/graph_objects/table/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/treemap/_domain.py b/plotly/graph_objects/treemap/_domain.py index fed2388551..26de22e5c3 100644 --- a/plotly/graph_objects/treemap/_domain.py +++ b/plotly/graph_objects/treemap/_domain.py @@ -17,7 +17,8 @@ def column(self): the grid for this treemap trace . The 'column' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -37,7 +38,8 @@ def row(self): grid for this treemap trace . The 'row' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns diff --git a/plotly/graph_objects/treemap/_hoverlabel.py b/plotly/graph_objects/treemap/_hoverlabel.py index 66e45256eb..3c6d566078 100644 --- a/plotly/graph_objects/treemap/_hoverlabel.py +++ b/plotly/graph_objects/treemap/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/treemap/_insidetextfont.py b/plotly/graph_objects/treemap/_insidetextfont.py index 06333328d2..8d610270fb 100644 --- a/plotly/graph_objects/treemap/_insidetextfont.py +++ b/plotly/graph_objects/treemap/_insidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/treemap/_outsidetextfont.py b/plotly/graph_objects/treemap/_outsidetextfont.py index 8e8d352267..58f9caf3f4 100644 --- a/plotly/graph_objects/treemap/_outsidetextfont.py +++ b/plotly/graph_objects/treemap/_outsidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/treemap/_textfont.py b/plotly/graph_objects/treemap/_textfont.py index 3fab7306f3..8921148219 100644 --- a/plotly/graph_objects/treemap/_textfont.py +++ b/plotly/graph_objects/treemap/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/treemap/hoverlabel/_font.py b/plotly/graph_objects/treemap/hoverlabel/_font.py index 7ad3f96200..5bcb9b3634 100644 --- a/plotly/graph_objects/treemap/hoverlabel/_font.py +++ b/plotly/graph_objects/treemap/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/treemap/legendgrouptitle/_font.py b/plotly/graph_objects/treemap/legendgrouptitle/_font.py index ae1bf48bd2..91e400ffa2 100644 --- a/plotly/graph_objects/treemap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/treemap/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/treemap/marker/_colorbar.py b/plotly/graph_objects/treemap/marker/_colorbar.py index 0601123f50..dcf970cce7 100644 --- a/plotly/graph_objects/treemap/marker/_colorbar.py +++ b/plotly/graph_objects/treemap/marker/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py b/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py index cc566c3f03..99324f5571 100644 --- a/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/treemap/marker/colorbar/title/_font.py b/plotly/graph_objects/treemap/marker/colorbar/title/_font.py index ed936ee391..ed2bf91b0d 100644 --- a/plotly/graph_objects/treemap/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/treemap/marker/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/treemap/pathbar/_textfont.py b/plotly/graph_objects/treemap/pathbar/_textfont.py index 4468ca3084..c4bca22004 100644 --- a/plotly/graph_objects/treemap/pathbar/_textfont.py +++ b/plotly/graph_objects/treemap/pathbar/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/violin/_hoverlabel.py b/plotly/graph_objects/violin/_hoverlabel.py index ef39dfec8e..49b3721436 100644 --- a/plotly/graph_objects/violin/_hoverlabel.py +++ b/plotly/graph_objects/violin/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/violin/hoverlabel/_font.py b/plotly/graph_objects/violin/hoverlabel/_font.py index 5a157b3cb3..6906c53b0d 100644 --- a/plotly/graph_objects/violin/hoverlabel/_font.py +++ b/plotly/graph_objects/violin/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/violin/legendgrouptitle/_font.py b/plotly/graph_objects/violin/legendgrouptitle/_font.py index 8fa227d64e..b7bf9815b3 100644 --- a/plotly/graph_objects/violin/legendgrouptitle/_font.py +++ b/plotly/graph_objects/violin/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/volume/_colorbar.py b/plotly/graph_objects/volume/_colorbar.py index 1c47af6c37..0169a8794a 100644 --- a/plotly/graph_objects/volume/_colorbar.py +++ b/plotly/graph_objects/volume/_colorbar.py @@ -284,7 +284,8 @@ def nticks(self): `tickmode` is set to "auto". The 'nticks' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [0, 9223372036854775807] Returns @@ -732,7 +733,8 @@ def ticklabelstep(self): "log" or "multicategory", or when `tickmode` is "array". The 'ticklabelstep' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/volume/_hoverlabel.py b/plotly/graph_objects/volume/_hoverlabel.py index b97cc7bfed..eb93341ec5 100644 --- a/plotly/graph_objects/volume/_hoverlabel.py +++ b/plotly/graph_objects/volume/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/volume/_surface.py b/plotly/graph_objects/volume/_surface.py index 64a7ad2f48..70f8b59fd3 100644 --- a/plotly/graph_objects/volume/_surface.py +++ b/plotly/graph_objects/volume/_surface.py @@ -18,7 +18,8 @@ def count(self): minimum and maximum surfaces would be drawn. The 'count' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 9223372036854775807] Returns diff --git a/plotly/graph_objects/volume/colorbar/_tickfont.py b/plotly/graph_objects/volume/colorbar/_tickfont.py index 3d510d6dd0..f2111732a4 100644 --- a/plotly/graph_objects/volume/colorbar/_tickfont.py +++ b/plotly/graph_objects/volume/colorbar/_tickfont.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/volume/colorbar/title/_font.py b/plotly/graph_objects/volume/colorbar/title/_font.py index 02de3c328b..44ba7cb8a9 100644 --- a/plotly/graph_objects/volume/colorbar/title/_font.py +++ b/plotly/graph_objects/volume/colorbar/title/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/volume/hoverlabel/_font.py b/plotly/graph_objects/volume/hoverlabel/_font.py index d9fac4b2f8..1232c768b4 100644 --- a/plotly/graph_objects/volume/hoverlabel/_font.py +++ b/plotly/graph_objects/volume/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/volume/legendgrouptitle/_font.py b/plotly/graph_objects/volume/legendgrouptitle/_font.py index 0c6a035d6e..c126c8dd4e 100644 --- a/plotly/graph_objects/volume/legendgrouptitle/_font.py +++ b/plotly/graph_objects/volume/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') diff --git a/plotly/graph_objects/waterfall/_hoverlabel.py b/plotly/graph_objects/waterfall/_hoverlabel.py index 4943ae3a9f..24f2fb6097 100644 --- a/plotly/graph_objects/waterfall/_hoverlabel.py +++ b/plotly/graph_objects/waterfall/_hoverlabel.py @@ -180,7 +180,8 @@ def namelength(self): `namelength - 3` characters and add an ellipsis. The 'namelength' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [-1, 9223372036854775807] - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/waterfall/_insidetextfont.py b/plotly/graph_objects/waterfall/_insidetextfont.py index 41e3c1b75d..236761d956 100644 --- a/plotly/graph_objects/waterfall/_insidetextfont.py +++ b/plotly/graph_objects/waterfall/_insidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/waterfall/_outsidetextfont.py b/plotly/graph_objects/waterfall/_outsidetextfont.py index 2c8ed10e91..71033205a1 100644 --- a/plotly/graph_objects/waterfall/_outsidetextfont.py +++ b/plotly/graph_objects/waterfall/_outsidetextfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/waterfall/_textfont.py b/plotly/graph_objects/waterfall/_textfont.py index dc0d1880a3..001d2feb09 100644 --- a/plotly/graph_objects/waterfall/_textfont.py +++ b/plotly/graph_objects/waterfall/_textfont.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/waterfall/hoverlabel/_font.py b/plotly/graph_objects/waterfall/hoverlabel/_font.py index 7852a7cc4b..04ff60314d 100644 --- a/plotly/graph_objects/waterfall/hoverlabel/_font.py +++ b/plotly/graph_objects/waterfall/hoverlabel/_font.py @@ -369,7 +369,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') - A tuple, list, or one-dimensional numpy array of the above diff --git a/plotly/graph_objects/waterfall/legendgrouptitle/_font.py b/plotly/graph_objects/waterfall/legendgrouptitle/_font.py index dd889419b4..c61e64c711 100644 --- a/plotly/graph_objects/waterfall/legendgrouptitle/_font.py +++ b/plotly/graph_objects/waterfall/legendgrouptitle/_font.py @@ -201,7 +201,8 @@ def weight(self): Sets the weight (or boldness) of the font. The 'weight' property is a integer and may be specified as: - - An int (or float that will be cast to an int) + + - An int (or float that will be cast to an int) in the interval [1, 1000] OR exactly one of ['normal', 'bold'] (e.g. 'bold') From 8d12a052def75b788c8c2c9d1ae823cfcd33503e Mon Sep 17 00:00:00 2001 From: daexs Date: Tue, 19 Aug 2025 10:07:14 -0400 Subject: [PATCH 12/18] Fixed formatting for 'Colorscale', 'CompoundArray', and 'BaseData' types. --- _plotly_utils/basevalidators.py | 42 +-- plotly/graph_objects/_bar.py | 5 +- plotly/graph_objects/_barpolar.py | 5 +- plotly/graph_objects/_box.py | 8 +- plotly/graph_objects/_candlestick.py | 5 +- plotly/graph_objects/_choropleth.py | 44 ++-- plotly/graph_objects/_choroplethmap.py | 44 ++-- plotly/graph_objects/_choroplethmapbox.py | 44 ++-- plotly/graph_objects/_cone.py | 44 ++-- plotly/graph_objects/_contour.py | 44 ++-- plotly/graph_objects/_contourcarpet.py | 39 +-- plotly/graph_objects/_densitymap.py | 44 ++-- plotly/graph_objects/_densitymapbox.py | 44 ++-- plotly/graph_objects/_figure.py | 17 +- plotly/graph_objects/_figurewidget.py | 17 +- plotly/graph_objects/_funnel.py | 8 +- plotly/graph_objects/_funnelarea.py | 8 +- plotly/graph_objects/_heatmap.py | 44 ++-- plotly/graph_objects/_histogram.py | 5 +- plotly/graph_objects/_histogram2d.py | 44 ++-- plotly/graph_objects/_histogram2dcontour.py | 44 ++-- plotly/graph_objects/_icicle.py | 11 +- plotly/graph_objects/_image.py | 5 +- plotly/graph_objects/_indicator.py | 3 +- plotly/graph_objects/_isosurface.py | 44 ++-- plotly/graph_objects/_layout.py | 33 ++- plotly/graph_objects/_mesh3d.py | 44 ++-- plotly/graph_objects/_ohlc.py | 5 +- plotly/graph_objects/_parcats.py | 8 +- plotly/graph_objects/_parcoords.py | 5 +- plotly/graph_objects/_pie.py | 8 +- plotly/graph_objects/_sankey.py | 3 +- plotly/graph_objects/_scatter.py | 11 +- plotly/graph_objects/_scatter3d.py | 8 +- plotly/graph_objects/_scattercarpet.py | 11 +- plotly/graph_objects/_scattergeo.py | 8 +- plotly/graph_objects/_scattergl.py | 8 +- plotly/graph_objects/_scattermap.py | 8 +- plotly/graph_objects/_scattermapbox.py | 8 +- plotly/graph_objects/_scatterpolar.py | 11 +- plotly/graph_objects/_scatterpolargl.py | 8 +- plotly/graph_objects/_scattersmith.py | 11 +- plotly/graph_objects/_scatterternary.py | 11 +- plotly/graph_objects/_splom.py | 10 +- plotly/graph_objects/_streamtube.py | 44 ++-- plotly/graph_objects/_sunburst.py | 11 +- plotly/graph_objects/_surface.py | 44 ++-- plotly/graph_objects/_table.py | 5 +- plotly/graph_objects/_treemap.py | 11 +- plotly/graph_objects/_violin.py | 8 +- plotly/graph_objects/_volume.py | 44 ++-- plotly/graph_objects/_waterfall.py | 8 +- plotly/graph_objects/bar/_insidetextfont.py | 5 +- plotly/graph_objects/bar/_marker.py | 39 +-- plotly/graph_objects/bar/_outsidetextfont.py | 5 +- plotly/graph_objects/bar/_textfont.py | 5 +- plotly/graph_objects/bar/hoverlabel/_font.py | 5 +- .../bar/legendgrouptitle/_font.py | 3 +- plotly/graph_objects/bar/marker/_colorbar.py | 5 +- plotly/graph_objects/bar/marker/_line.py | 39 +-- .../bar/marker/colorbar/_tickfont.py | 3 +- .../bar/marker/colorbar/title/_font.py | 3 +- plotly/graph_objects/barpolar/_marker.py | 39 +-- .../barpolar/hoverlabel/_font.py | 5 +- .../barpolar/legendgrouptitle/_font.py | 3 +- .../barpolar/marker/_colorbar.py | 5 +- plotly/graph_objects/barpolar/marker/_line.py | 39 +-- .../barpolar/marker/colorbar/_tickfont.py | 3 +- .../barpolar/marker/colorbar/title/_font.py | 3 +- plotly/graph_objects/box/hoverlabel/_font.py | 5 +- .../box/legendgrouptitle/_font.py | 3 +- .../candlestick/hoverlabel/_font.py | 5 +- .../candlestick/legendgrouptitle/_font.py | 3 +- plotly/graph_objects/carpet/_aaxis.py | 5 +- plotly/graph_objects/carpet/_baxis.py | 5 +- plotly/graph_objects/carpet/_font.py | 3 +- .../graph_objects/carpet/aaxis/_tickfont.py | 3 +- .../graph_objects/carpet/aaxis/title/_font.py | 3 +- .../graph_objects/carpet/baxis/_tickfont.py | 3 +- .../graph_objects/carpet/baxis/title/_font.py | 3 +- .../carpet/legendgrouptitle/_font.py | 3 +- plotly/graph_objects/choropleth/_colorbar.py | 5 +- .../choropleth/colorbar/_tickfont.py | 3 +- .../choropleth/colorbar/title/_font.py | 3 +- .../choropleth/hoverlabel/_font.py | 5 +- .../choropleth/legendgrouptitle/_font.py | 3 +- .../graph_objects/choroplethmap/_colorbar.py | 5 +- .../choroplethmap/colorbar/_tickfont.py | 3 +- .../choroplethmap/colorbar/title/_font.py | 3 +- .../choroplethmap/hoverlabel/_font.py | 5 +- .../choroplethmap/legendgrouptitle/_font.py | 3 +- .../choroplethmapbox/_colorbar.py | 5 +- .../choroplethmapbox/colorbar/_tickfont.py | 3 +- .../choroplethmapbox/colorbar/title/_font.py | 3 +- .../choroplethmapbox/hoverlabel/_font.py | 5 +- .../legendgrouptitle/_font.py | 3 +- plotly/graph_objects/cone/_colorbar.py | 5 +- .../graph_objects/cone/colorbar/_tickfont.py | 3 +- .../cone/colorbar/title/_font.py | 3 +- plotly/graph_objects/cone/hoverlabel/_font.py | 5 +- .../cone/legendgrouptitle/_font.py | 3 +- plotly/graph_objects/contour/_colorbar.py | 5 +- plotly/graph_objects/contour/_textfont.py | 3 +- .../contour/colorbar/_tickfont.py | 3 +- .../contour/colorbar/title/_font.py | 3 +- .../contour/contours/_labelfont.py | 3 +- .../graph_objects/contour/hoverlabel/_font.py | 5 +- .../contour/legendgrouptitle/_font.py | 3 +- .../graph_objects/contourcarpet/_colorbar.py | 5 +- .../contourcarpet/colorbar/_tickfont.py | 3 +- .../contourcarpet/colorbar/title/_font.py | 3 +- .../contourcarpet/contours/_labelfont.py | 3 +- .../contourcarpet/legendgrouptitle/_font.py | 3 +- plotly/graph_objects/densitymap/_colorbar.py | 5 +- .../densitymap/colorbar/_tickfont.py | 3 +- .../densitymap/colorbar/title/_font.py | 3 +- .../densitymap/hoverlabel/_font.py | 5 +- .../densitymap/legendgrouptitle/_font.py | 3 +- .../graph_objects/densitymapbox/_colorbar.py | 5 +- .../densitymapbox/colorbar/_tickfont.py | 3 +- .../densitymapbox/colorbar/title/_font.py | 3 +- .../densitymapbox/hoverlabel/_font.py | 5 +- .../densitymapbox/legendgrouptitle/_font.py | 3 +- .../graph_objects/funnel/_insidetextfont.py | 5 +- plotly/graph_objects/funnel/_marker.py | 39 +-- .../graph_objects/funnel/_outsidetextfont.py | 5 +- plotly/graph_objects/funnel/_textfont.py | 5 +- .../graph_objects/funnel/hoverlabel/_font.py | 5 +- .../funnel/legendgrouptitle/_font.py | 3 +- .../graph_objects/funnel/marker/_colorbar.py | 5 +- plotly/graph_objects/funnel/marker/_line.py | 39 +-- .../funnel/marker/colorbar/_tickfont.py | 3 +- .../funnel/marker/colorbar/title/_font.py | 3 +- .../funnelarea/_insidetextfont.py | 5 +- plotly/graph_objects/funnelarea/_textfont.py | 5 +- .../funnelarea/hoverlabel/_font.py | 5 +- .../funnelarea/legendgrouptitle/_font.py | 3 +- .../graph_objects/funnelarea/title/_font.py | 5 +- plotly/graph_objects/heatmap/_colorbar.py | 5 +- plotly/graph_objects/heatmap/_textfont.py | 3 +- .../heatmap/colorbar/_tickfont.py | 3 +- .../heatmap/colorbar/title/_font.py | 3 +- .../graph_objects/heatmap/hoverlabel/_font.py | 5 +- .../heatmap/legendgrouptitle/_font.py | 3 +- .../histogram/_insidetextfont.py | 3 +- plotly/graph_objects/histogram/_marker.py | 39 +-- .../histogram/_outsidetextfont.py | 3 +- plotly/graph_objects/histogram/_textfont.py | 3 +- .../histogram/hoverlabel/_font.py | 5 +- .../histogram/legendgrouptitle/_font.py | 3 +- .../histogram/marker/_colorbar.py | 5 +- .../graph_objects/histogram/marker/_line.py | 39 +-- .../histogram/marker/colorbar/_tickfont.py | 3 +- .../histogram/marker/colorbar/title/_font.py | 3 +- plotly/graph_objects/histogram2d/_colorbar.py | 5 +- plotly/graph_objects/histogram2d/_textfont.py | 3 +- .../histogram2d/colorbar/_tickfont.py | 3 +- .../histogram2d/colorbar/title/_font.py | 3 +- .../histogram2d/hoverlabel/_font.py | 5 +- .../histogram2d/legendgrouptitle/_font.py | 3 +- .../histogram2dcontour/_colorbar.py | 5 +- .../histogram2dcontour/_textfont.py | 3 +- .../histogram2dcontour/colorbar/_tickfont.py | 3 +- .../colorbar/title/_font.py | 3 +- .../histogram2dcontour/contours/_labelfont.py | 3 +- .../histogram2dcontour/hoverlabel/_font.py | 5 +- .../legendgrouptitle/_font.py | 3 +- .../graph_objects/icicle/_insidetextfont.py | 5 +- plotly/graph_objects/icicle/_marker.py | 39 +-- .../graph_objects/icicle/_outsidetextfont.py | 5 +- plotly/graph_objects/icicle/_textfont.py | 5 +- plotly/graph_objects/icicle/_tiling.py | 3 +- .../graph_objects/icicle/hoverlabel/_font.py | 5 +- .../icicle/legendgrouptitle/_font.py | 3 +- .../graph_objects/icicle/marker/_colorbar.py | 5 +- .../icicle/marker/colorbar/_tickfont.py | 3 +- .../icicle/marker/colorbar/title/_font.py | 3 +- .../graph_objects/icicle/pathbar/_textfont.py | 5 +- .../graph_objects/image/hoverlabel/_font.py | 5 +- .../image/legendgrouptitle/_font.py | 3 +- plotly/graph_objects/indicator/_gauge.py | 5 +- plotly/graph_objects/indicator/delta/_font.py | 3 +- plotly/graph_objects/indicator/gauge/_axis.py | 5 +- .../indicator/gauge/axis/_tickfont.py | 3 +- .../indicator/legendgrouptitle/_font.py | 3 +- .../graph_objects/indicator/number/_font.py | 3 +- plotly/graph_objects/indicator/title/_font.py | 3 +- plotly/graph_objects/isosurface/_colorbar.py | 5 +- plotly/graph_objects/isosurface/_surface.py | 3 +- .../isosurface/colorbar/_tickfont.py | 3 +- .../isosurface/colorbar/title/_font.py | 3 +- .../isosurface/hoverlabel/_font.py | 5 +- .../isosurface/legendgrouptitle/_font.py | 3 +- plotly/graph_objects/layout/_annotation.py | 3 +- plotly/graph_objects/layout/_coloraxis.py | 39 +-- plotly/graph_objects/layout/_colorscale.py | 117 +++++---- plotly/graph_objects/layout/_font.py | 3 +- plotly/graph_objects/layout/_legend.py | 3 +- plotly/graph_objects/layout/_map.py | 5 +- plotly/graph_objects/layout/_mapbox.py | 5 +- plotly/graph_objects/layout/_scene.py | 5 +- plotly/graph_objects/layout/_slider.py | 5 +- plotly/graph_objects/layout/_updatemenu.py | 5 +- plotly/graph_objects/layout/_xaxis.py | 16 +- plotly/graph_objects/layout/_yaxis.py | 16 +- .../graph_objects/layout/annotation/_font.py | 3 +- .../layout/annotation/hoverlabel/_font.py | 3 +- .../layout/coloraxis/_colorbar.py | 5 +- .../layout/coloraxis/colorbar/_tickfont.py | 3 +- .../layout/coloraxis/colorbar/title/_font.py | 3 +- .../graph_objects/layout/hoverlabel/_font.py | 3 +- .../layout/hoverlabel/_grouptitlefont.py | 3 +- plotly/graph_objects/layout/legend/_font.py | 3 +- .../layout/legend/_grouptitlefont.py | 3 +- .../layout/legend/title/_font.py | 3 +- .../layout/newshape/label/_font.py | 3 +- .../layout/newshape/legendgrouptitle/_font.py | 3 +- .../layout/polar/_angularaxis.py | 5 +- .../graph_objects/layout/polar/_radialaxis.py | 5 +- .../layout/polar/angularaxis/_tickfont.py | 3 +- .../layout/polar/radialaxis/_tickfont.py | 3 +- .../layout/polar/radialaxis/title/_font.py | 3 +- .../graph_objects/layout/scene/_annotation.py | 3 +- plotly/graph_objects/layout/scene/_xaxis.py | 5 +- plotly/graph_objects/layout/scene/_yaxis.py | 5 +- plotly/graph_objects/layout/scene/_zaxis.py | 5 +- .../layout/scene/annotation/_font.py | 3 +- .../scene/annotation/hoverlabel/_font.py | 3 +- .../layout/scene/xaxis/_tickfont.py | 3 +- .../layout/scene/xaxis/title/_font.py | 3 +- .../layout/scene/yaxis/_tickfont.py | 3 +- .../layout/scene/yaxis/title/_font.py | 3 +- .../layout/scene/zaxis/_tickfont.py | 3 +- .../layout/scene/zaxis/title/_font.py | 3 +- .../graph_objects/layout/shape/label/_font.py | 3 +- .../layout/shape/legendgrouptitle/_font.py | 3 +- plotly/graph_objects/layout/slider/_font.py | 3 +- .../layout/slider/currentvalue/_font.py | 3 +- .../layout/smith/imaginaryaxis/_tickfont.py | 3 +- .../layout/smith/realaxis/_tickfont.py | 3 +- plotly/graph_objects/layout/template/_data.py | 245 +++++++++++------- plotly/graph_objects/layout/ternary/_aaxis.py | 5 +- plotly/graph_objects/layout/ternary/_baxis.py | 5 +- plotly/graph_objects/layout/ternary/_caxis.py | 5 +- .../layout/ternary/aaxis/_tickfont.py | 3 +- .../layout/ternary/aaxis/title/_font.py | 3 +- .../layout/ternary/baxis/_tickfont.py | 3 +- .../layout/ternary/baxis/title/_font.py | 3 +- .../layout/ternary/caxis/_tickfont.py | 3 +- .../layout/ternary/caxis/title/_font.py | 3 +- plotly/graph_objects/layout/title/_font.py | 3 +- .../layout/title/subtitle/_font.py | 3 +- .../graph_objects/layout/updatemenu/_font.py | 3 +- .../layout/xaxis/_rangeselector.py | 5 +- .../graph_objects/layout/xaxis/_tickfont.py | 3 +- .../layout/xaxis/rangeselector/_font.py | 3 +- .../graph_objects/layout/xaxis/title/_font.py | 3 +- .../graph_objects/layout/yaxis/_tickfont.py | 3 +- .../graph_objects/layout/yaxis/title/_font.py | 3 +- plotly/graph_objects/mesh3d/_colorbar.py | 5 +- .../mesh3d/colorbar/_tickfont.py | 3 +- .../mesh3d/colorbar/title/_font.py | 3 +- .../graph_objects/mesh3d/hoverlabel/_font.py | 5 +- .../mesh3d/legendgrouptitle/_font.py | 3 +- plotly/graph_objects/ohlc/hoverlabel/_font.py | 5 +- .../ohlc/legendgrouptitle/_font.py | 3 +- plotly/graph_objects/parcats/_labelfont.py | 3 +- plotly/graph_objects/parcats/_line.py | 39 +-- plotly/graph_objects/parcats/_tickfont.py | 3 +- .../parcats/legendgrouptitle/_font.py | 3 +- .../graph_objects/parcats/line/_colorbar.py | 5 +- .../parcats/line/colorbar/_tickfont.py | 3 +- .../parcats/line/colorbar/title/_font.py | 3 +- plotly/graph_objects/parcoords/_labelfont.py | 3 +- plotly/graph_objects/parcoords/_line.py | 39 +-- plotly/graph_objects/parcoords/_rangefont.py | 3 +- plotly/graph_objects/parcoords/_tickfont.py | 3 +- .../parcoords/legendgrouptitle/_font.py | 3 +- .../graph_objects/parcoords/line/_colorbar.py | 5 +- .../parcoords/line/colorbar/_tickfont.py | 3 +- .../parcoords/line/colorbar/title/_font.py | 3 +- plotly/graph_objects/pie/_insidetextfont.py | 5 +- plotly/graph_objects/pie/_outsidetextfont.py | 5 +- plotly/graph_objects/pie/_textfont.py | 5 +- plotly/graph_objects/pie/hoverlabel/_font.py | 5 +- .../pie/legendgrouptitle/_font.py | 3 +- plotly/graph_objects/pie/title/_font.py | 5 +- plotly/graph_objects/sankey/_link.py | 5 +- plotly/graph_objects/sankey/_textfont.py | 3 +- .../graph_objects/sankey/hoverlabel/_font.py | 5 +- .../sankey/legendgrouptitle/_font.py | 3 +- .../graph_objects/sankey/link/_colorscale.py | 39 +-- .../sankey/link/hoverlabel/_font.py | 5 +- .../sankey/node/hoverlabel/_font.py | 5 +- plotly/graph_objects/scatter/_fillgradient.py | 39 +-- plotly/graph_objects/scatter/_marker.py | 39 +-- plotly/graph_objects/scatter/_textfont.py | 5 +- .../graph_objects/scatter/hoverlabel/_font.py | 5 +- .../scatter/legendgrouptitle/_font.py | 3 +- .../graph_objects/scatter/marker/_colorbar.py | 5 +- plotly/graph_objects/scatter/marker/_line.py | 39 +-- .../scatter/marker/colorbar/_tickfont.py | 3 +- .../scatter/marker/colorbar/title/_font.py | 3 +- plotly/graph_objects/scatter3d/_line.py | 39 +-- plotly/graph_objects/scatter3d/_marker.py | 39 +-- .../scatter3d/hoverlabel/_font.py | 5 +- .../scatter3d/legendgrouptitle/_font.py | 3 +- .../graph_objects/scatter3d/line/_colorbar.py | 5 +- .../scatter3d/line/colorbar/_tickfont.py | 3 +- .../scatter3d/line/colorbar/title/_font.py | 3 +- .../scatter3d/marker/_colorbar.py | 5 +- .../graph_objects/scatter3d/marker/_line.py | 39 +-- .../scatter3d/marker/colorbar/_tickfont.py | 3 +- .../scatter3d/marker/colorbar/title/_font.py | 3 +- plotly/graph_objects/scattercarpet/_marker.py | 39 +-- .../graph_objects/scattercarpet/_textfont.py | 5 +- .../scattercarpet/hoverlabel/_font.py | 5 +- .../scattercarpet/legendgrouptitle/_font.py | 3 +- .../scattercarpet/marker/_colorbar.py | 5 +- .../scattercarpet/marker/_line.py | 39 +-- .../marker/colorbar/_tickfont.py | 3 +- .../marker/colorbar/title/_font.py | 3 +- plotly/graph_objects/scattergeo/_marker.py | 39 +-- plotly/graph_objects/scattergeo/_textfont.py | 5 +- .../scattergeo/hoverlabel/_font.py | 5 +- .../scattergeo/legendgrouptitle/_font.py | 3 +- .../scattergeo/marker/_colorbar.py | 5 +- .../graph_objects/scattergeo/marker/_line.py | 39 +-- .../scattergeo/marker/colorbar/_tickfont.py | 3 +- .../scattergeo/marker/colorbar/title/_font.py | 3 +- plotly/graph_objects/scattergl/_marker.py | 39 +-- .../scattergl/hoverlabel/_font.py | 5 +- .../scattergl/legendgrouptitle/_font.py | 3 +- .../scattergl/marker/_colorbar.py | 5 +- .../graph_objects/scattergl/marker/_line.py | 39 +-- .../scattergl/marker/colorbar/_tickfont.py | 3 +- .../scattergl/marker/colorbar/title/_font.py | 3 +- plotly/graph_objects/scattermap/_marker.py | 39 +-- .../scattermap/hoverlabel/_font.py | 5 +- .../scattermap/legendgrouptitle/_font.py | 3 +- .../scattermap/marker/_colorbar.py | 5 +- .../scattermap/marker/colorbar/_tickfont.py | 3 +- .../scattermap/marker/colorbar/title/_font.py | 3 +- plotly/graph_objects/scattermapbox/_marker.py | 39 +-- .../scattermapbox/hoverlabel/_font.py | 5 +- .../scattermapbox/legendgrouptitle/_font.py | 3 +- .../scattermapbox/marker/_colorbar.py | 5 +- .../marker/colorbar/_tickfont.py | 3 +- .../marker/colorbar/title/_font.py | 3 +- plotly/graph_objects/scatterpolar/_marker.py | 39 +-- .../graph_objects/scatterpolar/_textfont.py | 5 +- .../scatterpolar/hoverlabel/_font.py | 5 +- .../scatterpolar/legendgrouptitle/_font.py | 3 +- .../scatterpolar/marker/_colorbar.py | 5 +- .../scatterpolar/marker/_line.py | 39 +-- .../scatterpolar/marker/colorbar/_tickfont.py | 3 +- .../marker/colorbar/title/_font.py | 3 +- .../graph_objects/scatterpolargl/_marker.py | 39 +-- .../scatterpolargl/hoverlabel/_font.py | 5 +- .../scatterpolargl/legendgrouptitle/_font.py | 3 +- .../scatterpolargl/marker/_colorbar.py | 5 +- .../scatterpolargl/marker/_line.py | 39 +-- .../marker/colorbar/_tickfont.py | 3 +- .../marker/colorbar/title/_font.py | 3 +- plotly/graph_objects/scattersmith/_marker.py | 39 +-- .../graph_objects/scattersmith/_textfont.py | 5 +- .../scattersmith/hoverlabel/_font.py | 5 +- .../scattersmith/legendgrouptitle/_font.py | 3 +- .../scattersmith/marker/_colorbar.py | 5 +- .../scattersmith/marker/_line.py | 39 +-- .../scattersmith/marker/colorbar/_tickfont.py | 3 +- .../marker/colorbar/title/_font.py | 3 +- .../graph_objects/scatterternary/_marker.py | 39 +-- .../graph_objects/scatterternary/_textfont.py | 5 +- .../scatterternary/hoverlabel/_font.py | 5 +- .../scatterternary/legendgrouptitle/_font.py | 3 +- .../scatterternary/marker/_colorbar.py | 5 +- .../scatterternary/marker/_line.py | 39 +-- .../marker/colorbar/_tickfont.py | 3 +- .../marker/colorbar/title/_font.py | 3 +- plotly/graph_objects/splom/_marker.py | 39 +-- .../graph_objects/splom/hoverlabel/_font.py | 5 +- .../splom/legendgrouptitle/_font.py | 3 +- .../graph_objects/splom/marker/_colorbar.py | 5 +- plotly/graph_objects/splom/marker/_line.py | 39 +-- .../splom/marker/colorbar/_tickfont.py | 3 +- .../splom/marker/colorbar/title/_font.py | 3 +- plotly/graph_objects/streamtube/_colorbar.py | 5 +- .../streamtube/colorbar/_tickfont.py | 3 +- .../streamtube/colorbar/title/_font.py | 3 +- .../streamtube/hoverlabel/_font.py | 5 +- .../streamtube/legendgrouptitle/_font.py | 3 +- .../graph_objects/sunburst/_insidetextfont.py | 5 +- plotly/graph_objects/sunburst/_marker.py | 39 +-- .../sunburst/_outsidetextfont.py | 5 +- plotly/graph_objects/sunburst/_textfont.py | 5 +- .../sunburst/hoverlabel/_font.py | 5 +- .../sunburst/legendgrouptitle/_font.py | 3 +- .../sunburst/marker/_colorbar.py | 5 +- .../sunburst/marker/colorbar/_tickfont.py | 3 +- .../sunburst/marker/colorbar/title/_font.py | 3 +- plotly/graph_objects/surface/_colorbar.py | 5 +- .../surface/colorbar/_tickfont.py | 3 +- .../surface/colorbar/title/_font.py | 3 +- .../graph_objects/surface/hoverlabel/_font.py | 5 +- .../surface/legendgrouptitle/_font.py | 3 +- plotly/graph_objects/table/cells/_font.py | 5 +- plotly/graph_objects/table/header/_font.py | 5 +- .../graph_objects/table/hoverlabel/_font.py | 5 +- .../table/legendgrouptitle/_font.py | 3 +- .../graph_objects/treemap/_insidetextfont.py | 5 +- plotly/graph_objects/treemap/_marker.py | 39 +-- .../graph_objects/treemap/_outsidetextfont.py | 5 +- plotly/graph_objects/treemap/_textfont.py | 5 +- plotly/graph_objects/treemap/_tiling.py | 3 +- .../graph_objects/treemap/hoverlabel/_font.py | 5 +- .../treemap/legendgrouptitle/_font.py | 3 +- .../graph_objects/treemap/marker/_colorbar.py | 5 +- .../treemap/marker/colorbar/_tickfont.py | 3 +- .../treemap/marker/colorbar/title/_font.py | 3 +- .../treemap/pathbar/_textfont.py | 5 +- .../graph_objects/violin/hoverlabel/_font.py | 5 +- .../violin/legendgrouptitle/_font.py | 3 +- plotly/graph_objects/volume/_colorbar.py | 5 +- plotly/graph_objects/volume/_surface.py | 3 +- .../volume/colorbar/_tickfont.py | 3 +- .../volume/colorbar/title/_font.py | 3 +- .../graph_objects/volume/hoverlabel/_font.py | 5 +- .../volume/legendgrouptitle/_font.py | 3 +- .../waterfall/_insidetextfont.py | 5 +- .../waterfall/_outsidetextfont.py | 5 +- plotly/graph_objects/waterfall/_textfont.py | 5 +- .../waterfall/hoverlabel/_font.py | 5 +- .../waterfall/legendgrouptitle/_font.py | 3 +- 434 files changed, 2405 insertions(+), 1861 deletions(-) diff --git a/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py index 9c6eccffab..f36aa5c5af 100644 --- a/_plotly_utils/basevalidators.py +++ b/_plotly_utils/basevalidators.py @@ -1560,8 +1560,8 @@ def description(self): colorscales_str = "\n".join( textwrap.wrap( repr(sorted(list(self.named_colorscales))), - initial_indent=" " * 12, - subsequent_indent=" " * 13, + initial_indent=" " * INDENT, + subsequent_indent=" " * INDENT, break_on_hyphens=False, width=80, ) @@ -1569,17 +1569,17 @@ def description(self): desc = """\ The '{plotly_name}' property is a colorscale and may be - specified as: - - A list of colors that will be spaced evenly to create the colorscale. + specified as:\n + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: -{colorscales_str}. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales:\n +{colorscales_str}.\n + Appending '_r' to a named colorscale reverses it. """.format(plotly_name=self.plotly_name, colorscales_str=colorscales_str) return desc @@ -1817,13 +1817,13 @@ def description(self): desc = ( """\ The '{plotly_name}' property is a flaglist and may be specified - as a string containing:""" + as a string containing:\n""" ).format(plotly_name=self.plotly_name) # Flags desc = desc + ( """ - - Any combination of {flags} joined with '+' characters + - Any combination of {flags} joined with '+' characters (e.g. '{eg_flag}')""" ).format(flags=self.flags, eg_flag="+".join(self.flags[:2])) @@ -1838,7 +1838,7 @@ def description(self): desc = ( desc + """ - - A list or array of the above""" + - A list or array of the above""" ) return desc @@ -2491,9 +2491,9 @@ def description(self): desc = ( """\ The '{plotly_name}' property is a tuple of instances of - {class_str} that may be specified as: - - A list or tuple of instances of {module_str}.{class_str} - - A list or tuple of dicts of string/value properties that + {class_str} that may be specified as:\n + - A list or tuple of instances of {module_str}.{class_str} + - A list or tuple of dicts of string/value properties that will be passed to the {class_str} constructor""" ).format( plotly_name=self.plotly_name, @@ -2574,17 +2574,17 @@ def description(self): desc = ( """\ The '{plotly_name}' property is a tuple of trace instances - that may be specified as: - - A list or tuple of trace instances + that may be specified as:\n + - A list or tuple of trace instances (e.g. [Scatter(...), Bar(...)]) - - A single trace instance + - A single trace instance (e.g. Scatter(...), Bar(...), etc.) - - A list or tuple of dicts of string/value properties where: - - The 'type' property specifies the trace type + - A list or tuple of dicts of string/value properties where: + - The 'type' property specifies the trace type\n {trace_types} - - All remaining properties are passed to the constructor of - the specified trace type + - All remaining properties are passed to the constructor of + the specified trace type (e.g. [{{'type': 'scatter', ...}}, {{'type': 'bar, ...}}])""" ).format(plotly_name=self.plotly_name, trace_types=trace_types_wrapped) diff --git a/plotly/graph_objects/_bar.py b/plotly/graph_objects/_bar.py index a8abf3c7c4..d999e05927 100644 --- a/plotly/graph_objects/_bar.py +++ b/plotly/graph_objects/_bar.py @@ -314,10 +314,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_barpolar.py b/plotly/graph_objects/_barpolar.py index 40db7d8c5d..90972969d7 100644 --- a/plotly/graph_objects/_barpolar.py +++ b/plotly/graph_objects/_barpolar.py @@ -185,10 +185,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['r', 'theta', 'text', 'name'] joined with '+' characters + + - Any combination of ['r', 'theta', 'text', 'name'] joined with '+' characters (e.g. 'r+theta') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_box.py b/plotly/graph_objects/_box.py index a9be7ff414..6e0cbcfe3d 100644 --- a/plotly/graph_objects/_box.py +++ b/plotly/graph_objects/_box.py @@ -288,10 +288,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -349,7 +350,8 @@ def hoveron(self): The 'hoveron' property is a flaglist and may be specified as a string containing: - - Any combination of ['boxes', 'points'] joined with '+' characters + + - Any combination of ['boxes', 'points'] joined with '+' characters (e.g. 'boxes+points') Returns diff --git a/plotly/graph_objects/_candlestick.py b/plotly/graph_objects/_candlestick.py index 1c8b368519..28f7bcbf0a 100644 --- a/plotly/graph_objects/_candlestick.py +++ b/plotly/graph_objects/_candlestick.py @@ -201,10 +201,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_choropleth.py b/plotly/graph_objects/_choropleth.py index 76f8ce8da0..13aebefa86 100644 --- a/plotly/graph_objects/_choropleth.py +++ b/plotly/graph_objects/_choropleth.py @@ -143,30 +143,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -295,10 +296,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['location', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['location', 'z', 'text', 'name'] joined with '+' characters (e.g. 'location+z') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_choroplethmap.py b/plotly/graph_objects/_choroplethmap.py index 79ccbb75f0..4dd8c6024e 100644 --- a/plotly/graph_objects/_choroplethmap.py +++ b/plotly/graph_objects/_choroplethmap.py @@ -167,30 +167,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -294,10 +295,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['location', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['location', 'z', 'text', 'name'] joined with '+' characters (e.g. 'location+z') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_choroplethmapbox.py b/plotly/graph_objects/_choroplethmapbox.py index cb066ae29c..a282b076e2 100644 --- a/plotly/graph_objects/_choroplethmapbox.py +++ b/plotly/graph_objects/_choroplethmapbox.py @@ -168,30 +168,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -295,10 +296,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['location', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['location', 'z', 'text', 'name'] joined with '+' characters (e.g. 'location+z') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_cone.py b/plotly/graph_objects/_cone.py index fa52d0e804..f6eb3d810a 100644 --- a/plotly/graph_objects/_cone.py +++ b/plotly/graph_objects/_cone.py @@ -264,30 +264,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -348,10 +349,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'u', 'v', 'w', 'norm', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'u', 'v', 'w', 'norm', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_contour.py b/plotly/graph_objects/_contour.py index 96f52ee94a..b463eca9f2 100644 --- a/plotly/graph_objects/_contour.py +++ b/plotly/graph_objects/_contour.py @@ -189,30 +189,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -376,10 +377,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_contourcarpet.py b/plotly/graph_objects/_contourcarpet.py index 73663cedac..acc1004743 100644 --- a/plotly/graph_objects/_contourcarpet.py +++ b/plotly/graph_objects/_contourcarpet.py @@ -350,30 +350,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/_densitymap.py b/plotly/graph_objects/_densitymap.py index 10fb7697ea..d19527913d 100644 --- a/plotly/graph_objects/_densitymap.py +++ b/plotly/graph_objects/_densitymap.py @@ -166,30 +166,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -250,10 +251,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['lon', 'lat', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['lon', 'lat', 'z', 'text', 'name'] joined with '+' characters (e.g. 'lon+lat') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_densitymapbox.py b/plotly/graph_objects/_densitymapbox.py index d0ff5b3796..c60554918f 100644 --- a/plotly/graph_objects/_densitymapbox.py +++ b/plotly/graph_objects/_densitymapbox.py @@ -167,30 +167,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -251,10 +252,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['lon', 'lat', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['lon', 'lat', 'z', 'text', 'name'] joined with '+' characters (e.g. 'lon+lat') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_figure.py b/plotly/graph_objects/_figure.py index 62b002d850..54ca4a147f 100644 --- a/plotly/graph_objects/_figure.py +++ b/plotly/graph_objects/_figure.py @@ -16,12 +16,14 @@ def __init__( data The 'data' property is a tuple of trace instances that may be specified as: - - A list or tuple of trace instances + + - A list or tuple of trace instances (e.g. [Scatter(...), Bar(...)]) - - A single trace instance + - A single trace instance (e.g. Scatter(...), Bar(...), etc.) - - A list or tuple of dicts of string/value properties where: + - A list or tuple of dicts of string/value properties where: - The 'type' property specifies the trace type + One of: ['bar', 'barpolar', 'box', 'candlestick', 'carpet', 'choropleth', 'choroplethmap', 'choroplethmapbox', 'cone', 'contour', @@ -39,8 +41,8 @@ def __init__( 'sunburst', 'surface', 'table', 'treemap', 'violin', 'volume', 'waterfall'] - - All remaining properties are passed to the constructor of - the specified trace type + - All remaining properties are passed to the constructor of + the specified trace type (e.g. [{'type': 'scatter', ...}, {'type': 'bar, ...}]) @@ -54,8 +56,9 @@ def __init__( frames The 'frames' property is a tuple of instances of Frame that may be specified as: - - A list or tuple of instances of plotly.graph_objects.Frame - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.Frame + - A list or tuple of dicts of string/value properties that will be passed to the Frame constructor skip_invalid: bool diff --git a/plotly/graph_objects/_figurewidget.py b/plotly/graph_objects/_figurewidget.py index 18ba6fedb7..061b975122 100644 --- a/plotly/graph_objects/_figurewidget.py +++ b/plotly/graph_objects/_figurewidget.py @@ -16,12 +16,14 @@ def __init__( data The 'data' property is a tuple of trace instances that may be specified as: - - A list or tuple of trace instances + + - A list or tuple of trace instances (e.g. [Scatter(...), Bar(...)]) - - A single trace instance + - A single trace instance (e.g. Scatter(...), Bar(...), etc.) - - A list or tuple of dicts of string/value properties where: + - A list or tuple of dicts of string/value properties where: - The 'type' property specifies the trace type + One of: ['bar', 'barpolar', 'box', 'candlestick', 'carpet', 'choropleth', 'choroplethmap', 'choroplethmapbox', 'cone', 'contour', @@ -39,8 +41,8 @@ def __init__( 'sunburst', 'surface', 'table', 'treemap', 'violin', 'volume', 'waterfall'] - - All remaining properties are passed to the constructor of - the specified trace type + - All remaining properties are passed to the constructor of + the specified trace type (e.g. [{'type': 'scatter', ...}, {'type': 'bar, ...}]) @@ -54,8 +56,9 @@ def __init__( frames The 'frames' property is a tuple of instances of Frame that may be specified as: - - A list or tuple of instances of plotly.graph_objects.Frame - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.Frame + - A list or tuple of dicts of string/value properties that will be passed to the Frame constructor skip_invalid: bool diff --git a/plotly/graph_objects/_funnel.py b/plotly/graph_objects/_funnel.py index 60f5a90015..d0b44f4c8a 100644 --- a/plotly/graph_objects/_funnel.py +++ b/plotly/graph_objects/_funnel.py @@ -250,10 +250,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['name', 'x', 'y', 'text', 'percent initial', 'percent previous', 'percent total'] joined with '+' characters + + - Any combination of ['name', 'x', 'y', 'text', 'percent initial', 'percent previous', 'percent total'] joined with '+' characters (e.g. 'name+x') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -943,7 +944,8 @@ def textinfo(self): The 'textinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['label', 'text', 'percent initial', 'percent previous', 'percent total', 'value'] joined with '+' characters + + - Any combination of ['label', 'text', 'percent initial', 'percent previous', 'percent total', 'value'] joined with '+' characters (e.g. 'label+text') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_funnelarea.py b/plotly/graph_objects/_funnelarea.py index a3eace8110..57b2e0d531 100644 --- a/plotly/graph_objects/_funnelarea.py +++ b/plotly/graph_objects/_funnelarea.py @@ -183,10 +183,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['label', 'text', 'value', 'percent', 'name'] joined with '+' characters + + - Any combination of ['label', 'text', 'value', 'percent', 'name'] joined with '+' characters (e.g. 'label+text') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -794,7 +795,8 @@ def textinfo(self): The 'textinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['label', 'text', 'value', 'percent'] joined with '+' characters + + - Any combination of ['label', 'text', 'value', 'percent'] joined with '+' characters (e.g. 'label+text') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_heatmap.py b/plotly/graph_objects/_heatmap.py index c6da89f276..b9c54eebd3 100644 --- a/plotly/graph_objects/_heatmap.py +++ b/plotly/graph_objects/_heatmap.py @@ -166,30 +166,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -309,10 +310,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_histogram.py b/plotly/graph_objects/_histogram.py index 70ea1462d1..bd17e37c1a 100644 --- a/plotly/graph_objects/_histogram.py +++ b/plotly/graph_objects/_histogram.py @@ -379,10 +379,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_histogram2d.py b/plotly/graph_objects/_histogram2d.py index 827b090d81..b48b69c654 100644 --- a/plotly/graph_objects/_histogram2d.py +++ b/plotly/graph_objects/_histogram2d.py @@ -223,30 +223,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -367,10 +368,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_histogram2dcontour.py b/plotly/graph_objects/_histogram2dcontour.py index 706c290b14..ae301cd980 100644 --- a/plotly/graph_objects/_histogram2dcontour.py +++ b/plotly/graph_objects/_histogram2dcontour.py @@ -245,30 +245,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -408,10 +409,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_icicle.py b/plotly/graph_objects/_icicle.py index 246aef7d85..23f308107c 100644 --- a/plotly/graph_objects/_icicle.py +++ b/plotly/graph_objects/_icicle.py @@ -96,7 +96,8 @@ def count(self): The 'count' property is a flaglist and may be specified as a string containing: - - Any combination of ['branches', 'leaves'] joined with '+' characters + + - Any combination of ['branches', 'leaves'] joined with '+' characters (e.g. 'branches+leaves') Returns @@ -177,10 +178,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['label', 'text', 'value', 'name', 'current path', 'percent root', 'percent entry', 'percent parent'] joined with '+' characters + + - Any combination of ['label', 'text', 'value', 'name', 'current path', 'percent root', 'percent entry', 'percent parent'] joined with '+' characters (e.g. 'label+text') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -881,7 +883,8 @@ def textinfo(self): The 'textinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['label', 'text', 'value', 'current path', 'percent root', 'percent entry', 'percent parent'] joined with '+' characters + + - Any combination of ['label', 'text', 'value', 'current path', 'percent root', 'percent entry', 'percent parent'] joined with '+' characters (e.g. 'label+text') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_image.py b/plotly/graph_objects/_image.py index 0bcd013211..493009742b 100644 --- a/plotly/graph_objects/_image.py +++ b/plotly/graph_objects/_image.py @@ -162,10 +162,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'color', 'name', 'text'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'color', 'name', 'text'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_indicator.py b/plotly/graph_objects/_indicator.py index b7a6a5ea2f..fcf819fee2 100644 --- a/plotly/graph_objects/_indicator.py +++ b/plotly/graph_objects/_indicator.py @@ -337,7 +337,8 @@ def mode(self): The 'mode' property is a flaglist and may be specified as a string containing: - - Any combination of ['number', 'delta', 'gauge'] joined with '+' characters + + - Any combination of ['number', 'delta', 'gauge'] joined with '+' characters (e.g. 'number+delta') Returns diff --git a/plotly/graph_objects/_isosurface.py b/plotly/graph_objects/_isosurface.py index d7c0b21c7d..ca70a6bae8 100644 --- a/plotly/graph_objects/_isosurface.py +++ b/plotly/graph_objects/_isosurface.py @@ -256,30 +256,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -379,10 +380,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_layout.py b/plotly/graph_objects/_layout.py index 1d6ed9a52a..be215c50d9 100644 --- a/plotly/graph_objects/_layout.py +++ b/plotly/graph_objects/_layout.py @@ -195,8 +195,9 @@ def annotations(self): """ The 'annotations' property is a tuple of instances of Annotation that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.Annotation - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.Annotation + - A list or tuple of dicts of string/value properties that will be passed to the Annotation constructor Returns @@ -501,7 +502,8 @@ def clickmode(self): The 'clickmode' property is a flaglist and may be specified as a string containing: - - Any combination of ['event', 'select'] joined with '+' characters + + - Any combination of ['event', 'select'] joined with '+' characters (e.g. 'event+select') OR exactly one of ['none'] (e.g. 'none') @@ -1140,8 +1142,9 @@ def images(self): """ The 'images' property is a tuple of instances of Image that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.Image - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.Image + - A list or tuple of dicts of string/value properties that will be passed to the Image constructor Returns @@ -1593,8 +1596,9 @@ def selections(self): """ The 'selections' property is a tuple of instances of Selection that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.Selection - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.Selection + - A list or tuple of dicts of string/value properties that will be passed to the Selection constructor Returns @@ -1659,8 +1663,9 @@ def shapes(self): """ The 'shapes' property is a tuple of instances of Shape that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.Shape - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.Shape + - A list or tuple of dicts of string/value properties that will be passed to the Shape constructor Returns @@ -1723,8 +1728,9 @@ def sliders(self): """ The 'sliders' property is a tuple of instances of Slider that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.Slider - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.Slider + - A list or tuple of dicts of string/value properties that will be passed to the Slider constructor Returns @@ -2012,8 +2018,9 @@ def updatemenus(self): """ The 'updatemenus' property is a tuple of instances of Updatemenu that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.Updatemenu - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.Updatemenu + - A list or tuple of dicts of string/value properties that will be passed to the Updatemenu constructor Returns diff --git a/plotly/graph_objects/_mesh3d.py b/plotly/graph_objects/_mesh3d.py index 6191457b01..afc56c0890 100644 --- a/plotly/graph_objects/_mesh3d.py +++ b/plotly/graph_objects/_mesh3d.py @@ -308,30 +308,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -493,10 +494,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_ohlc.py b/plotly/graph_objects/_ohlc.py index 752fad881f..8073c8ff1a 100644 --- a/plotly/graph_objects/_ohlc.py +++ b/plotly/graph_objects/_ohlc.py @@ -201,10 +201,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_parcats.py b/plotly/graph_objects/_parcats.py index 76838b5f98..12d972a4c3 100644 --- a/plotly/graph_objects/_parcats.py +++ b/plotly/graph_objects/_parcats.py @@ -126,8 +126,9 @@ def dimensions(self): The 'dimensions' property is a tuple of instances of Dimension that may be specified as: - - A list or tuple of instances of plotly.graph_objects.parcats.Dimension - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.parcats.Dimension + - A list or tuple of dicts of string/value properties that will be passed to the Dimension constructor Returns @@ -192,7 +193,8 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['count', 'probability'] joined with '+' characters + + - Any combination of ['count', 'probability'] joined with '+' characters (e.g. 'count+probability') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') diff --git a/plotly/graph_objects/_parcoords.py b/plotly/graph_objects/_parcoords.py index fbea9c03d0..5e847a239c 100644 --- a/plotly/graph_objects/_parcoords.py +++ b/plotly/graph_objects/_parcoords.py @@ -85,8 +85,9 @@ def dimensions(self): The 'dimensions' property is a tuple of instances of Dimension that may be specified as: - - A list or tuple of instances of plotly.graph_objects.parcoords.Dimension - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.parcoords.Dimension + - A list or tuple of dicts of string/value properties that will be passed to the Dimension constructor Returns diff --git a/plotly/graph_objects/_pie.py b/plotly/graph_objects/_pie.py index 6ed25c2b35..c10ca0c203 100644 --- a/plotly/graph_objects/_pie.py +++ b/plotly/graph_objects/_pie.py @@ -212,10 +212,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['label', 'text', 'value', 'percent', 'name'] joined with '+' characters + + - Any combination of ['label', 'text', 'value', 'percent', 'name'] joined with '+' characters (e.g. 'label+text') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -954,7 +955,8 @@ def textinfo(self): The 'textinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['label', 'text', 'value', 'percent'] joined with '+' characters + + - Any combination of ['label', 'text', 'value', 'percent'] joined with '+' characters (e.g. 'label+text') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_sankey.py b/plotly/graph_objects/_sankey.py index a9932c304d..79706cf80b 100644 --- a/plotly/graph_objects/_sankey.py +++ b/plotly/graph_objects/_sankey.py @@ -135,7 +135,8 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of [] joined with '+' characters + + - Any combination of [] joined with '+' characters (e.g. '') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') diff --git a/plotly/graph_objects/_scatter.py b/plotly/graph_objects/_scatter.py index 274c28cd92..5badebd2cc 100644 --- a/plotly/graph_objects/_scatter.py +++ b/plotly/graph_objects/_scatter.py @@ -413,10 +413,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -476,7 +477,8 @@ def hoveron(self): The 'hoveron' property is a flaglist and may be specified as a string containing: - - Any combination of ['points', 'fills'] joined with '+' characters + + - Any combination of ['points', 'fills'] joined with '+' characters (e.g. 'points+fills') Returns @@ -842,7 +844,8 @@ def mode(self): The 'mode' property is a flaglist and may be specified as a string containing: - - Any combination of ['lines', 'markers', 'text'] joined with '+' characters + + - Any combination of ['lines', 'markers', 'text'] joined with '+' characters (e.g. 'lines+markers') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_scatter3d.py b/plotly/graph_objects/_scatter3d.py index b27ff8d05f..1112b389d8 100644 --- a/plotly/graph_objects/_scatter3d.py +++ b/plotly/graph_objects/_scatter3d.py @@ -192,10 +192,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -598,7 +599,8 @@ def mode(self): The 'mode' property is a flaglist and may be specified as a string containing: - - Any combination of ['lines', 'markers', 'text'] joined with '+' characters + + - Any combination of ['lines', 'markers', 'text'] joined with '+' characters (e.g. 'lines+markers') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_scattercarpet.py b/plotly/graph_objects/_scattercarpet.py index 090ddda1c1..0ac6cee378 100644 --- a/plotly/graph_objects/_scattercarpet.py +++ b/plotly/graph_objects/_scattercarpet.py @@ -279,10 +279,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['a', 'b', 'text', 'name'] joined with '+' characters + + - Any combination of ['a', 'b', 'text', 'name'] joined with '+' characters (e.g. 'a+b') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -342,7 +343,8 @@ def hoveron(self): The 'hoveron' property is a flaglist and may be specified as a string containing: - - Any combination of ['points', 'fills'] joined with '+' characters + + - Any combination of ['points', 'fills'] joined with '+' characters (e.g. 'points+fills') Returns @@ -708,7 +710,8 @@ def mode(self): The 'mode' property is a flaglist and may be specified as a string containing: - - Any combination of ['lines', 'markers', 'text'] joined with '+' characters + + - Any combination of ['lines', 'markers', 'text'] joined with '+' characters (e.g. 'lines+markers') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_scattergeo.py b/plotly/graph_objects/_scattergeo.py index a437c9d599..a706681b6c 100644 --- a/plotly/graph_objects/_scattergeo.py +++ b/plotly/graph_objects/_scattergeo.py @@ -248,10 +248,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['lon', 'lat', 'location', 'text', 'name'] joined with '+' characters + + - Any combination of ['lon', 'lat', 'location', 'text', 'name'] joined with '+' characters (e.g. 'lon+lat') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -791,7 +792,8 @@ def mode(self): The 'mode' property is a flaglist and may be specified as a string containing: - - Any combination of ['lines', 'markers', 'text'] joined with '+' characters + + - Any combination of ['lines', 'markers', 'text'] joined with '+' characters (e.g. 'lines+markers') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_scattergl.py b/plotly/graph_objects/_scattergl.py index 6f7d3e8567..64d1794b74 100644 --- a/plotly/graph_objects/_scattergl.py +++ b/plotly/graph_objects/_scattergl.py @@ -284,10 +284,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -685,7 +686,8 @@ def mode(self): The 'mode' property is a flaglist and may be specified as a string containing: - - Any combination of ['lines', 'markers', 'text'] joined with '+' characters + + - Any combination of ['lines', 'markers', 'text'] joined with '+' characters (e.g. 'lines+markers') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_scattermap.py b/plotly/graph_objects/_scattermap.py index 065677f20f..bcadad03cd 100644 --- a/plotly/graph_objects/_scattermap.py +++ b/plotly/graph_objects/_scattermap.py @@ -218,10 +218,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['lon', 'lat', 'text', 'name'] joined with '+' characters + + - Any combination of ['lon', 'lat', 'text', 'name'] joined with '+' characters (e.g. 'lon+lat') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -694,7 +695,8 @@ def mode(self): The 'mode' property is a flaglist and may be specified as a string containing: - - Any combination of ['lines', 'markers', 'text'] joined with '+' characters + + - Any combination of ['lines', 'markers', 'text'] joined with '+' characters (e.g. 'lines+markers') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_scattermapbox.py b/plotly/graph_objects/_scattermapbox.py index a3f7a7218d..fb65779dbb 100644 --- a/plotly/graph_objects/_scattermapbox.py +++ b/plotly/graph_objects/_scattermapbox.py @@ -220,10 +220,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['lon', 'lat', 'text', 'name'] joined with '+' characters + + - Any combination of ['lon', 'lat', 'text', 'name'] joined with '+' characters (e.g. 'lon+lat') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -696,7 +697,8 @@ def mode(self): The 'mode' property is a flaglist and may be specified as a string containing: - - Any combination of ['lines', 'markers', 'text'] joined with '+' characters + + - Any combination of ['lines', 'markers', 'text'] joined with '+' characters (e.g. 'lines+markers') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_scatterpolar.py b/plotly/graph_objects/_scatterpolar.py index cf8e237e42..b3610e51dc 100644 --- a/plotly/graph_objects/_scatterpolar.py +++ b/plotly/graph_objects/_scatterpolar.py @@ -248,10 +248,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['r', 'theta', 'text', 'name'] joined with '+' characters + + - Any combination of ['r', 'theta', 'text', 'name'] joined with '+' characters (e.g. 'r+theta') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -311,7 +312,8 @@ def hoveron(self): The 'hoveron' property is a flaglist and may be specified as a string containing: - - Any combination of ['points', 'fills'] joined with '+' characters + + - Any combination of ['points', 'fills'] joined with '+' characters (e.g. 'points+fills') Returns @@ -677,7 +679,8 @@ def mode(self): The 'mode' property is a flaglist and may be specified as a string containing: - - Any combination of ['lines', 'markers', 'text'] joined with '+' characters + + - Any combination of ['lines', 'markers', 'text'] joined with '+' characters (e.g. 'lines+markers') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_scatterpolargl.py b/plotly/graph_objects/_scatterpolargl.py index f9fb37e557..44fe5975e5 100644 --- a/plotly/graph_objects/_scatterpolargl.py +++ b/plotly/graph_objects/_scatterpolargl.py @@ -236,10 +236,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['r', 'theta', 'text', 'name'] joined with '+' characters + + - Any combination of ['r', 'theta', 'text', 'name'] joined with '+' characters (e.g. 'r+theta') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -642,7 +643,8 @@ def mode(self): The 'mode' property is a flaglist and may be specified as a string containing: - - Any combination of ['lines', 'markers', 'text'] joined with '+' characters + + - Any combination of ['lines', 'markers', 'text'] joined with '+' characters (e.g. 'lines+markers') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_scattersmith.py b/plotly/graph_objects/_scattersmith.py index c93f1a1a0f..fc56619856 100644 --- a/plotly/graph_objects/_scattersmith.py +++ b/plotly/graph_objects/_scattersmith.py @@ -203,10 +203,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['real', 'imag', 'text', 'name'] joined with '+' characters + + - Any combination of ['real', 'imag', 'text', 'name'] joined with '+' characters (e.g. 'real+imag') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -266,7 +267,8 @@ def hoveron(self): The 'hoveron' property is a flaglist and may be specified as a string containing: - - Any combination of ['points', 'fills'] joined with '+' characters + + - Any combination of ['points', 'fills'] joined with '+' characters (e.g. 'points+fills') Returns @@ -670,7 +672,8 @@ def mode(self): The 'mode' property is a flaglist and may be specified as a string containing: - - Any combination of ['lines', 'markers', 'text'] joined with '+' characters + + - Any combination of ['lines', 'markers', 'text'] joined with '+' characters (e.g. 'lines+markers') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_scatterternary.py b/plotly/graph_objects/_scatterternary.py index 8b063377c8..eeee196e23 100644 --- a/plotly/graph_objects/_scatterternary.py +++ b/plotly/graph_objects/_scatterternary.py @@ -323,10 +323,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['a', 'b', 'c', 'text', 'name'] joined with '+' characters + + - Any combination of ['a', 'b', 'c', 'text', 'name'] joined with '+' characters (e.g. 'a+b') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -386,7 +387,8 @@ def hoveron(self): The 'hoveron' property is a flaglist and may be specified as a string containing: - - Any combination of ['points', 'fills'] joined with '+' characters + + - Any combination of ['points', 'fills'] joined with '+' characters (e.g. 'points+fills') Returns @@ -752,7 +754,8 @@ def mode(self): The 'mode' property is a flaglist and may be specified as a string containing: - - Any combination of ['lines', 'markers', 'text'] joined with '+' characters + + - Any combination of ['lines', 'markers', 'text'] joined with '+' characters (e.g. 'lines+markers') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_splom.py b/plotly/graph_objects/_splom.py index ac95c2e2a4..039e9a9644 100644 --- a/plotly/graph_objects/_splom.py +++ b/plotly/graph_objects/_splom.py @@ -116,8 +116,9 @@ def dimensions(self): """ The 'dimensions' property is a tuple of instances of Dimension that may be specified as: - - A list or tuple of instances of plotly.graph_objects.splom.Dimension - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.splom.Dimension + - A list or tuple of dicts of string/value properties that will be passed to the Dimension constructor Returns @@ -162,10 +163,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_streamtube.py b/plotly/graph_objects/_streamtube.py index a76b267f24..cc70aa4418 100644 --- a/plotly/graph_objects/_streamtube.py +++ b/plotly/graph_objects/_streamtube.py @@ -239,30 +239,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -323,10 +324,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'u', 'v', 'w', 'norm', 'divergence', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'u', 'v', 'w', 'norm', 'divergence', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_sunburst.py b/plotly/graph_objects/_sunburst.py index af269cf404..5012458222 100644 --- a/plotly/graph_objects/_sunburst.py +++ b/plotly/graph_objects/_sunburst.py @@ -95,7 +95,8 @@ def count(self): The 'count' property is a flaglist and may be specified as a string containing: - - Any combination of ['branches', 'leaves'] joined with '+' characters + + - Any combination of ['branches', 'leaves'] joined with '+' characters (e.g. 'branches+leaves') Returns @@ -176,10 +177,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['label', 'text', 'value', 'name', 'current path', 'percent root', 'percent entry', 'percent parent'] joined with '+' characters + + - Any combination of ['label', 'text', 'value', 'name', 'current path', 'percent root', 'percent entry', 'percent parent'] joined with '+' characters (e.g. 'label+text') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -910,7 +912,8 @@ def textinfo(self): The 'textinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['label', 'text', 'value', 'current path', 'percent root', 'percent entry', 'percent parent'] joined with '+' characters + + - Any combination of ['label', 'text', 'value', 'current path', 'percent root', 'percent entry', 'percent parent'] joined with '+' characters (e.g. 'label+text') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_surface.py b/plotly/graph_objects/_surface.py index e75dc6e080..56858f6fd2 100644 --- a/plotly/graph_objects/_surface.py +++ b/plotly/graph_objects/_surface.py @@ -238,30 +238,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -380,10 +381,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_table.py b/plotly/graph_objects/_table.py index d85c237ebb..0479e8b05b 100644 --- a/plotly/graph_objects/_table.py +++ b/plotly/graph_objects/_table.py @@ -224,10 +224,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_treemap.py b/plotly/graph_objects/_treemap.py index 6ddcd80f80..631f743e22 100644 --- a/plotly/graph_objects/_treemap.py +++ b/plotly/graph_objects/_treemap.py @@ -95,7 +95,8 @@ def count(self): The 'count' property is a flaglist and may be specified as a string containing: - - Any combination of ['branches', 'leaves'] joined with '+' characters + + - Any combination of ['branches', 'leaves'] joined with '+' characters (e.g. 'branches+leaves') Returns @@ -176,10 +177,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['label', 'text', 'value', 'name', 'current path', 'percent root', 'percent entry', 'percent parent'] joined with '+' characters + + - Any combination of ['label', 'text', 'value', 'name', 'current path', 'percent root', 'percent entry', 'percent parent'] joined with '+' characters (e.g. 'label+text') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -861,7 +863,8 @@ def textinfo(self): The 'textinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['label', 'text', 'value', 'current path', 'percent root', 'percent entry', 'percent parent'] joined with '+' characters + + - Any combination of ['label', 'text', 'value', 'current path', 'percent root', 'percent entry', 'percent parent'] joined with '+' characters (e.g. 'label+text') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/_violin.py b/plotly/graph_objects/_violin.py index e930820784..c156052e8e 100644 --- a/plotly/graph_objects/_violin.py +++ b/plotly/graph_objects/_violin.py @@ -210,10 +210,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -272,7 +273,8 @@ def hoveron(self): The 'hoveron' property is a flaglist and may be specified as a string containing: - - Any combination of ['violins', 'points', 'kde'] joined with '+' characters + + - Any combination of ['violins', 'points', 'kde'] joined with '+' characters (e.g. 'violins+points') OR exactly one of ['all'] (e.g. 'all') diff --git a/plotly/graph_objects/_volume.py b/plotly/graph_objects/_volume.py index 6535d0e2d7..b42a49c681 100644 --- a/plotly/graph_objects/_volume.py +++ b/plotly/graph_objects/_volume.py @@ -257,30 +257,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -380,10 +381,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters + + - Any combination of ['x', 'y', 'z', 'text', 'name'] joined with '+' characters (e.g. 'x+y') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/_waterfall.py b/plotly/graph_objects/_waterfall.py index f06284ad6d..de091dec4f 100644 --- a/plotly/graph_objects/_waterfall.py +++ b/plotly/graph_objects/_waterfall.py @@ -295,10 +295,11 @@ def hoverinfo(self): The 'hoverinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['name', 'x', 'y', 'text', 'initial', 'delta', 'final'] joined with '+' characters + + - Any combination of ['name', 'x', 'y', 'text', 'initial', 'delta', 'final'] joined with '+' characters (e.g. 'name+x') OR exactly one of ['all', 'none', 'skip'] (e.g. 'skip') - - A list or array of the above + - A list or array of the above Returns ------- @@ -1044,7 +1045,8 @@ def textinfo(self): The 'textinfo' property is a flaglist and may be specified as a string containing: - - Any combination of ['label', 'text', 'initial', 'delta', 'final'] joined with '+' characters + + - Any combination of ['label', 'text', 'initial', 'delta', 'final'] joined with '+' characters (e.g. 'label+text') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/bar/_insidetextfont.py b/plotly/graph_objects/bar/_insidetextfont.py index bb3258fdf9..793f4620bf 100644 --- a/plotly/graph_objects/bar/_insidetextfont.py +++ b/plotly/graph_objects/bar/_insidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/bar/_marker.py b/plotly/graph_objects/bar/_marker.py index be808ee725..93117c8a85 100644 --- a/plotly/graph_objects/bar/_marker.py +++ b/plotly/graph_objects/bar/_marker.py @@ -231,30 +231,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/bar/_outsidetextfont.py b/plotly/graph_objects/bar/_outsidetextfont.py index 741650e6b0..02add377ef 100644 --- a/plotly/graph_objects/bar/_outsidetextfont.py +++ b/plotly/graph_objects/bar/_outsidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/bar/_textfont.py b/plotly/graph_objects/bar/_textfont.py index 0b8cc01972..4a6dc8e9f9 100644 --- a/plotly/graph_objects/bar/_textfont.py +++ b/plotly/graph_objects/bar/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/bar/hoverlabel/_font.py b/plotly/graph_objects/bar/hoverlabel/_font.py index 7e4030237f..eb259a81fa 100644 --- a/plotly/graph_objects/bar/hoverlabel/_font.py +++ b/plotly/graph_objects/bar/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/bar/legendgrouptitle/_font.py b/plotly/graph_objects/bar/legendgrouptitle/_font.py index fe9d255ab8..6df6b0772d 100644 --- a/plotly/graph_objects/bar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/bar/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/bar/marker/_colorbar.py b/plotly/graph_objects/bar/marker/_colorbar.py index e4d4851b96..5b7b86c9d6 100644 --- a/plotly/graph_objects/bar/marker/_colorbar.py +++ b/plotly/graph_objects/bar/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.bar.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.bar.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/bar/marker/_line.py b/plotly/graph_objects/bar/marker/_line.py index ade6824f9a..d9c6431043 100644 --- a/plotly/graph_objects/bar/marker/_line.py +++ b/plotly/graph_objects/bar/marker/_line.py @@ -209,30 +209,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/bar/marker/colorbar/_tickfont.py b/plotly/graph_objects/bar/marker/colorbar/_tickfont.py index cf82198a37..84f42183ec 100644 --- a/plotly/graph_objects/bar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/bar/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/bar/marker/colorbar/title/_font.py b/plotly/graph_objects/bar/marker/colorbar/title/_font.py index 13b442df01..35684c6017 100644 --- a/plotly/graph_objects/bar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/bar/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/barpolar/_marker.py b/plotly/graph_objects/barpolar/_marker.py index 0e9fdcb1e6..119d94471f 100644 --- a/plotly/graph_objects/barpolar/_marker.py +++ b/plotly/graph_objects/barpolar/_marker.py @@ -230,30 +230,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/barpolar/hoverlabel/_font.py b/plotly/graph_objects/barpolar/hoverlabel/_font.py index e2c9f32737..08f6ad3540 100644 --- a/plotly/graph_objects/barpolar/hoverlabel/_font.py +++ b/plotly/graph_objects/barpolar/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/barpolar/legendgrouptitle/_font.py b/plotly/graph_objects/barpolar/legendgrouptitle/_font.py index 8ead90d9a2..80046f2b64 100644 --- a/plotly/graph_objects/barpolar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/barpolar/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/barpolar/marker/_colorbar.py b/plotly/graph_objects/barpolar/marker/_colorbar.py index a12776d4a7..b857abe658 100644 --- a/plotly/graph_objects/barpolar/marker/_colorbar.py +++ b/plotly/graph_objects/barpolar/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.barpolar.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.barpolar.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/barpolar/marker/_line.py b/plotly/graph_objects/barpolar/marker/_line.py index f66705d611..a405de4f55 100644 --- a/plotly/graph_objects/barpolar/marker/_line.py +++ b/plotly/graph_objects/barpolar/marker/_line.py @@ -209,30 +209,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py b/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py index 7ed03c46d1..ddde9a6aa1 100644 --- a/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/barpolar/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py b/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py index 06c419b014..702671104f 100644 --- a/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/barpolar/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/box/hoverlabel/_font.py b/plotly/graph_objects/box/hoverlabel/_font.py index da1fe6ec56..d89ca15134 100644 --- a/plotly/graph_objects/box/hoverlabel/_font.py +++ b/plotly/graph_objects/box/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/box/legendgrouptitle/_font.py b/plotly/graph_objects/box/legendgrouptitle/_font.py index d30e2016a7..2f9a79ad8a 100644 --- a/plotly/graph_objects/box/legendgrouptitle/_font.py +++ b/plotly/graph_objects/box/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/candlestick/hoverlabel/_font.py b/plotly/graph_objects/candlestick/hoverlabel/_font.py index 3c7f440884..b274164c0e 100644 --- a/plotly/graph_objects/candlestick/hoverlabel/_font.py +++ b/plotly/graph_objects/candlestick/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/candlestick/legendgrouptitle/_font.py b/plotly/graph_objects/candlestick/legendgrouptitle/_font.py index a37ecbb2ae..0985f5cef8 100644 --- a/plotly/graph_objects/candlestick/legendgrouptitle/_font.py +++ b/plotly/graph_objects/candlestick/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/carpet/_aaxis.py b/plotly/graph_objects/carpet/_aaxis.py index 99bb223678..7660eaa10f 100644 --- a/plotly/graph_objects/carpet/_aaxis.py +++ b/plotly/graph_objects/carpet/_aaxis.py @@ -1103,8 +1103,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.carpet.aaxis.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.carpet.aaxis.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/carpet/_baxis.py b/plotly/graph_objects/carpet/_baxis.py index 370970f582..dd60173363 100644 --- a/plotly/graph_objects/carpet/_baxis.py +++ b/plotly/graph_objects/carpet/_baxis.py @@ -1103,8 +1103,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.carpet.baxis.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.carpet.baxis.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/carpet/_font.py b/plotly/graph_objects/carpet/_font.py index ed30f96c5b..b6273033e7 100644 --- a/plotly/graph_objects/carpet/_font.py +++ b/plotly/graph_objects/carpet/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/carpet/aaxis/_tickfont.py b/plotly/graph_objects/carpet/aaxis/_tickfont.py index f1a50b0208..d0183cdae3 100644 --- a/plotly/graph_objects/carpet/aaxis/_tickfont.py +++ b/plotly/graph_objects/carpet/aaxis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/carpet/aaxis/title/_font.py b/plotly/graph_objects/carpet/aaxis/title/_font.py index 90d264253b..89b1579032 100644 --- a/plotly/graph_objects/carpet/aaxis/title/_font.py +++ b/plotly/graph_objects/carpet/aaxis/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/carpet/baxis/_tickfont.py b/plotly/graph_objects/carpet/baxis/_tickfont.py index af31499d6f..9aae460dcb 100644 --- a/plotly/graph_objects/carpet/baxis/_tickfont.py +++ b/plotly/graph_objects/carpet/baxis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/carpet/baxis/title/_font.py b/plotly/graph_objects/carpet/baxis/title/_font.py index 7843169d25..59ca11a2aa 100644 --- a/plotly/graph_objects/carpet/baxis/title/_font.py +++ b/plotly/graph_objects/carpet/baxis/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/carpet/legendgrouptitle/_font.py b/plotly/graph_objects/carpet/legendgrouptitle/_font.py index a68e362339..71c9855eea 100644 --- a/plotly/graph_objects/carpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/carpet/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/choropleth/_colorbar.py b/plotly/graph_objects/choropleth/_colorbar.py index f646da472b..1988f5d4a2 100644 --- a/plotly/graph_objects/choropleth/_colorbar.py +++ b/plotly/graph_objects/choropleth/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.choropleth.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.choropleth.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/choropleth/colorbar/_tickfont.py b/plotly/graph_objects/choropleth/colorbar/_tickfont.py index 6c18f24a50..346e3294d2 100644 --- a/plotly/graph_objects/choropleth/colorbar/_tickfont.py +++ b/plotly/graph_objects/choropleth/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/choropleth/colorbar/title/_font.py b/plotly/graph_objects/choropleth/colorbar/title/_font.py index e932582adc..e4b0985b09 100644 --- a/plotly/graph_objects/choropleth/colorbar/title/_font.py +++ b/plotly/graph_objects/choropleth/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/choropleth/hoverlabel/_font.py b/plotly/graph_objects/choropleth/hoverlabel/_font.py index 96821ca62f..8fe08e53ab 100644 --- a/plotly/graph_objects/choropleth/hoverlabel/_font.py +++ b/plotly/graph_objects/choropleth/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/choropleth/legendgrouptitle/_font.py b/plotly/graph_objects/choropleth/legendgrouptitle/_font.py index 774f7d8038..68f5c96b57 100644 --- a/plotly/graph_objects/choropleth/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choropleth/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/choroplethmap/_colorbar.py b/plotly/graph_objects/choroplethmap/_colorbar.py index d1ad1253d8..d105bf4126 100644 --- a/plotly/graph_objects/choroplethmap/_colorbar.py +++ b/plotly/graph_objects/choroplethmap/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.choroplethmap.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.choroplethmap.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py b/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py index eefa987840..c0580c9ac3 100644 --- a/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py +++ b/plotly/graph_objects/choroplethmap/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/choroplethmap/colorbar/title/_font.py b/plotly/graph_objects/choroplethmap/colorbar/title/_font.py index d59aba1dd8..e5574fb778 100644 --- a/plotly/graph_objects/choroplethmap/colorbar/title/_font.py +++ b/plotly/graph_objects/choroplethmap/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/choroplethmap/hoverlabel/_font.py b/plotly/graph_objects/choroplethmap/hoverlabel/_font.py index b5e4c1d36d..000e95ea4c 100644 --- a/plotly/graph_objects/choroplethmap/hoverlabel/_font.py +++ b/plotly/graph_objects/choroplethmap/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py b/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py index e02764925a..3592b5a28c 100644 --- a/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choroplethmap/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/choroplethmapbox/_colorbar.py b/plotly/graph_objects/choroplethmapbox/_colorbar.py index bfb84e3749..8a87b1e98c 100644 --- a/plotly/graph_objects/choroplethmapbox/_colorbar.py +++ b/plotly/graph_objects/choroplethmapbox/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.choroplethmapbox.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.choroplethmapbox.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py b/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py index 43e9b42a56..dba28a330d 100644 --- a/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py +++ b/plotly/graph_objects/choroplethmapbox/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py b/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py index b2961416d0..96d8dfbe1f 100644 --- a/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py +++ b/plotly/graph_objects/choroplethmapbox/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py b/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py index 5dd006f332..2827c78e60 100644 --- a/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/choroplethmapbox/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py b/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py index d7b94dd5d6..c0f718c219 100644 --- a/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/choroplethmapbox/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/cone/_colorbar.py b/plotly/graph_objects/cone/_colorbar.py index aa0caffaf8..28868ca8e8 100644 --- a/plotly/graph_objects/cone/_colorbar.py +++ b/plotly/graph_objects/cone/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.cone.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.cone.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/cone/colorbar/_tickfont.py b/plotly/graph_objects/cone/colorbar/_tickfont.py index 8584dd81ed..f1271f525f 100644 --- a/plotly/graph_objects/cone/colorbar/_tickfont.py +++ b/plotly/graph_objects/cone/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/cone/colorbar/title/_font.py b/plotly/graph_objects/cone/colorbar/title/_font.py index 68ddcf14a0..aa5dcf7aa4 100644 --- a/plotly/graph_objects/cone/colorbar/title/_font.py +++ b/plotly/graph_objects/cone/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/cone/hoverlabel/_font.py b/plotly/graph_objects/cone/hoverlabel/_font.py index dbd2649397..5f3f097c0a 100644 --- a/plotly/graph_objects/cone/hoverlabel/_font.py +++ b/plotly/graph_objects/cone/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/cone/legendgrouptitle/_font.py b/plotly/graph_objects/cone/legendgrouptitle/_font.py index 6ba77d62d5..c9cf90e401 100644 --- a/plotly/graph_objects/cone/legendgrouptitle/_font.py +++ b/plotly/graph_objects/cone/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/contour/_colorbar.py b/plotly/graph_objects/contour/_colorbar.py index 54ffc1c9f8..31d6e3ce7d 100644 --- a/plotly/graph_objects/contour/_colorbar.py +++ b/plotly/graph_objects/contour/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.contour.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.contour.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/contour/_textfont.py b/plotly/graph_objects/contour/_textfont.py index f5e6289a95..4a1f69de2e 100644 --- a/plotly/graph_objects/contour/_textfont.py +++ b/plotly/graph_objects/contour/_textfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/contour/colorbar/_tickfont.py b/plotly/graph_objects/contour/colorbar/_tickfont.py index 1836988995..64bda54237 100644 --- a/plotly/graph_objects/contour/colorbar/_tickfont.py +++ b/plotly/graph_objects/contour/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/contour/colorbar/title/_font.py b/plotly/graph_objects/contour/colorbar/title/_font.py index fff194a1c6..b04d56afc9 100644 --- a/plotly/graph_objects/contour/colorbar/title/_font.py +++ b/plotly/graph_objects/contour/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/contour/contours/_labelfont.py b/plotly/graph_objects/contour/contours/_labelfont.py index 8312b7a39d..a731f3794c 100644 --- a/plotly/graph_objects/contour/contours/_labelfont.py +++ b/plotly/graph_objects/contour/contours/_labelfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/contour/hoverlabel/_font.py b/plotly/graph_objects/contour/hoverlabel/_font.py index 6b5040a910..bf67dcc29f 100644 --- a/plotly/graph_objects/contour/hoverlabel/_font.py +++ b/plotly/graph_objects/contour/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/contour/legendgrouptitle/_font.py b/plotly/graph_objects/contour/legendgrouptitle/_font.py index e4bf27831f..bd61114f94 100644 --- a/plotly/graph_objects/contour/legendgrouptitle/_font.py +++ b/plotly/graph_objects/contour/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/contourcarpet/_colorbar.py b/plotly/graph_objects/contourcarpet/_colorbar.py index 9f139363b7..7b439085e9 100644 --- a/plotly/graph_objects/contourcarpet/_colorbar.py +++ b/plotly/graph_objects/contourcarpet/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.contourcarpet.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.contourcarpet.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py b/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py index 76544c694f..3f5bf0920c 100644 --- a/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py +++ b/plotly/graph_objects/contourcarpet/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/contourcarpet/colorbar/title/_font.py b/plotly/graph_objects/contourcarpet/colorbar/title/_font.py index e1fd2cf2b2..bd2003a038 100644 --- a/plotly/graph_objects/contourcarpet/colorbar/title/_font.py +++ b/plotly/graph_objects/contourcarpet/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/contourcarpet/contours/_labelfont.py b/plotly/graph_objects/contourcarpet/contours/_labelfont.py index b29ebc497f..f0a7eabcc5 100644 --- a/plotly/graph_objects/contourcarpet/contours/_labelfont.py +++ b/plotly/graph_objects/contourcarpet/contours/_labelfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py b/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py index d47f15a41d..a04c3361d3 100644 --- a/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/contourcarpet/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/densitymap/_colorbar.py b/plotly/graph_objects/densitymap/_colorbar.py index 79353269a6..8ede462dca 100644 --- a/plotly/graph_objects/densitymap/_colorbar.py +++ b/plotly/graph_objects/densitymap/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.densitymap.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.densitymap.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/densitymap/colorbar/_tickfont.py b/plotly/graph_objects/densitymap/colorbar/_tickfont.py index 65c0ed8022..6b583687bf 100644 --- a/plotly/graph_objects/densitymap/colorbar/_tickfont.py +++ b/plotly/graph_objects/densitymap/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/densitymap/colorbar/title/_font.py b/plotly/graph_objects/densitymap/colorbar/title/_font.py index 3c77b2cb4d..9420ff4056 100644 --- a/plotly/graph_objects/densitymap/colorbar/title/_font.py +++ b/plotly/graph_objects/densitymap/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/densitymap/hoverlabel/_font.py b/plotly/graph_objects/densitymap/hoverlabel/_font.py index ab64836be8..7b16978965 100644 --- a/plotly/graph_objects/densitymap/hoverlabel/_font.py +++ b/plotly/graph_objects/densitymap/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/densitymap/legendgrouptitle/_font.py b/plotly/graph_objects/densitymap/legendgrouptitle/_font.py index e685ac1e4d..ad04607f7c 100644 --- a/plotly/graph_objects/densitymap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/densitymap/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/densitymapbox/_colorbar.py b/plotly/graph_objects/densitymapbox/_colorbar.py index 519a99fb32..d839dd598b 100644 --- a/plotly/graph_objects/densitymapbox/_colorbar.py +++ b/plotly/graph_objects/densitymapbox/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.densitymapbox.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.densitymapbox.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py b/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py index bc0416f62b..d6f38aa1fd 100644 --- a/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py +++ b/plotly/graph_objects/densitymapbox/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/densitymapbox/colorbar/title/_font.py b/plotly/graph_objects/densitymapbox/colorbar/title/_font.py index 3333b1eaa4..76600b839e 100644 --- a/plotly/graph_objects/densitymapbox/colorbar/title/_font.py +++ b/plotly/graph_objects/densitymapbox/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/densitymapbox/hoverlabel/_font.py b/plotly/graph_objects/densitymapbox/hoverlabel/_font.py index 6bf2282456..6dc3fb7500 100644 --- a/plotly/graph_objects/densitymapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/densitymapbox/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py b/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py index 84542f98f9..6dab90cf54 100644 --- a/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/densitymapbox/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/funnel/_insidetextfont.py b/plotly/graph_objects/funnel/_insidetextfont.py index 13e8b91402..676f21c80f 100644 --- a/plotly/graph_objects/funnel/_insidetextfont.py +++ b/plotly/graph_objects/funnel/_insidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/_marker.py b/plotly/graph_objects/funnel/_marker.py index 74190db31e..d2183ef873 100644 --- a/plotly/graph_objects/funnel/_marker.py +++ b/plotly/graph_objects/funnel/_marker.py @@ -229,30 +229,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/funnel/_outsidetextfont.py b/plotly/graph_objects/funnel/_outsidetextfont.py index 5d17cf8f10..b7a4259616 100644 --- a/plotly/graph_objects/funnel/_outsidetextfont.py +++ b/plotly/graph_objects/funnel/_outsidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/_textfont.py b/plotly/graph_objects/funnel/_textfont.py index 88499acb29..329557e09f 100644 --- a/plotly/graph_objects/funnel/_textfont.py +++ b/plotly/graph_objects/funnel/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/hoverlabel/_font.py b/plotly/graph_objects/funnel/hoverlabel/_font.py index 7bcbfb14e8..85964f783a 100644 --- a/plotly/graph_objects/funnel/hoverlabel/_font.py +++ b/plotly/graph_objects/funnel/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/funnel/legendgrouptitle/_font.py b/plotly/graph_objects/funnel/legendgrouptitle/_font.py index eb868b2b21..2c3307356e 100644 --- a/plotly/graph_objects/funnel/legendgrouptitle/_font.py +++ b/plotly/graph_objects/funnel/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/funnel/marker/_colorbar.py b/plotly/graph_objects/funnel/marker/_colorbar.py index d49968299d..f479e5ab34 100644 --- a/plotly/graph_objects/funnel/marker/_colorbar.py +++ b/plotly/graph_objects/funnel/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.funnel.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.funnel.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/funnel/marker/_line.py b/plotly/graph_objects/funnel/marker/_line.py index e154701cb5..f2114b30d1 100644 --- a/plotly/graph_objects/funnel/marker/_line.py +++ b/plotly/graph_objects/funnel/marker/_line.py @@ -209,30 +209,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py b/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py index eb02fac2a9..21f117f050 100644 --- a/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/funnel/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/funnel/marker/colorbar/title/_font.py b/plotly/graph_objects/funnel/marker/colorbar/title/_font.py index e74fc236a9..38f6381924 100644 --- a/plotly/graph_objects/funnel/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/funnel/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/funnelarea/_insidetextfont.py b/plotly/graph_objects/funnelarea/_insidetextfont.py index 7a60dda829..ffcf45daa1 100644 --- a/plotly/graph_objects/funnelarea/_insidetextfont.py +++ b/plotly/graph_objects/funnelarea/_insidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/_textfont.py b/plotly/graph_objects/funnelarea/_textfont.py index c81c816f25..ba83d5a6e3 100644 --- a/plotly/graph_objects/funnelarea/_textfont.py +++ b/plotly/graph_objects/funnelarea/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/hoverlabel/_font.py b/plotly/graph_objects/funnelarea/hoverlabel/_font.py index 8cb483c8c2..92836ef646 100644 --- a/plotly/graph_objects/funnelarea/hoverlabel/_font.py +++ b/plotly/graph_objects/funnelarea/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py b/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py index 27d770ca69..8119085543 100644 --- a/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py +++ b/plotly/graph_objects/funnelarea/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/funnelarea/title/_font.py b/plotly/graph_objects/funnelarea/title/_font.py index 9ccd74391b..bc097d8645 100644 --- a/plotly/graph_objects/funnelarea/title/_font.py +++ b/plotly/graph_objects/funnelarea/title/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/heatmap/_colorbar.py b/plotly/graph_objects/heatmap/_colorbar.py index 7dae1aa893..83ecb7f6b1 100644 --- a/plotly/graph_objects/heatmap/_colorbar.py +++ b/plotly/graph_objects/heatmap/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.heatmap.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.heatmap.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/heatmap/_textfont.py b/plotly/graph_objects/heatmap/_textfont.py index c9ab918398..aeb335b4b3 100644 --- a/plotly/graph_objects/heatmap/_textfont.py +++ b/plotly/graph_objects/heatmap/_textfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/heatmap/colorbar/_tickfont.py b/plotly/graph_objects/heatmap/colorbar/_tickfont.py index 429949600e..bea33a9beb 100644 --- a/plotly/graph_objects/heatmap/colorbar/_tickfont.py +++ b/plotly/graph_objects/heatmap/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/heatmap/colorbar/title/_font.py b/plotly/graph_objects/heatmap/colorbar/title/_font.py index 030c176e6d..b228c4f2be 100644 --- a/plotly/graph_objects/heatmap/colorbar/title/_font.py +++ b/plotly/graph_objects/heatmap/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/heatmap/hoverlabel/_font.py b/plotly/graph_objects/heatmap/hoverlabel/_font.py index 2a913f33f4..48927ef686 100644 --- a/plotly/graph_objects/heatmap/hoverlabel/_font.py +++ b/plotly/graph_objects/heatmap/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/heatmap/legendgrouptitle/_font.py b/plotly/graph_objects/heatmap/legendgrouptitle/_font.py index 64225f44ef..0863303007 100644 --- a/plotly/graph_objects/heatmap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/heatmap/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram/_insidetextfont.py b/plotly/graph_objects/histogram/_insidetextfont.py index 5fd7c53108..b11fbc30db 100644 --- a/plotly/graph_objects/histogram/_insidetextfont.py +++ b/plotly/graph_objects/histogram/_insidetextfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram/_marker.py b/plotly/graph_objects/histogram/_marker.py index 715d7aabf2..f191562e76 100644 --- a/plotly/graph_objects/histogram/_marker.py +++ b/plotly/graph_objects/histogram/_marker.py @@ -231,30 +231,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/histogram/_outsidetextfont.py b/plotly/graph_objects/histogram/_outsidetextfont.py index a5876aa32f..198931ec91 100644 --- a/plotly/graph_objects/histogram/_outsidetextfont.py +++ b/plotly/graph_objects/histogram/_outsidetextfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram/_textfont.py b/plotly/graph_objects/histogram/_textfont.py index 675635e81f..7afdb7e73a 100644 --- a/plotly/graph_objects/histogram/_textfont.py +++ b/plotly/graph_objects/histogram/_textfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram/hoverlabel/_font.py b/plotly/graph_objects/histogram/hoverlabel/_font.py index 05fd9c3a58..d72e7c427d 100644 --- a/plotly/graph_objects/histogram/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/histogram/legendgrouptitle/_font.py b/plotly/graph_objects/histogram/legendgrouptitle/_font.py index b2db34599d..0c685feeba 100644 --- a/plotly/graph_objects/histogram/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram/marker/_colorbar.py b/plotly/graph_objects/histogram/marker/_colorbar.py index 7c8dc40a07..c9a6c4984f 100644 --- a/plotly/graph_objects/histogram/marker/_colorbar.py +++ b/plotly/graph_objects/histogram/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.histogram.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.histogram.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/histogram/marker/_line.py b/plotly/graph_objects/histogram/marker/_line.py index 35497ada83..a801d574aa 100644 --- a/plotly/graph_objects/histogram/marker/_line.py +++ b/plotly/graph_objects/histogram/marker/_line.py @@ -209,30 +209,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py b/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py index d77850a66e..841c8a84b8 100644 --- a/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram/marker/colorbar/title/_font.py b/plotly/graph_objects/histogram/marker/colorbar/title/_font.py index 7836bd8c6a..35e3b66f2e 100644 --- a/plotly/graph_objects/histogram/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram2d/_colorbar.py b/plotly/graph_objects/histogram2d/_colorbar.py index fd7a2b15d1..b960831854 100644 --- a/plotly/graph_objects/histogram2d/_colorbar.py +++ b/plotly/graph_objects/histogram2d/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.histogram2d.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.histogram2d.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/histogram2d/_textfont.py b/plotly/graph_objects/histogram2d/_textfont.py index a938fd5bb8..c134e83274 100644 --- a/plotly/graph_objects/histogram2d/_textfont.py +++ b/plotly/graph_objects/histogram2d/_textfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram2d/colorbar/_tickfont.py b/plotly/graph_objects/histogram2d/colorbar/_tickfont.py index afe9ad77a4..c278acd2af 100644 --- a/plotly/graph_objects/histogram2d/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram2d/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram2d/colorbar/title/_font.py b/plotly/graph_objects/histogram2d/colorbar/title/_font.py index 6e5a05d093..5e6301b997 100644 --- a/plotly/graph_objects/histogram2d/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram2d/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram2d/hoverlabel/_font.py b/plotly/graph_objects/histogram2d/hoverlabel/_font.py index 32dc37cf6e..d636a96bc5 100644 --- a/plotly/graph_objects/histogram2d/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram2d/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py b/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py index 79cad87723..defda5f79f 100644 --- a/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram2d/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram2dcontour/_colorbar.py b/plotly/graph_objects/histogram2dcontour/_colorbar.py index 40eae019a9..af15821a5e 100644 --- a/plotly/graph_objects/histogram2dcontour/_colorbar.py +++ b/plotly/graph_objects/histogram2dcontour/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.histogram2dcontour.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.histogram2dcontour.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/histogram2dcontour/_textfont.py b/plotly/graph_objects/histogram2dcontour/_textfont.py index 2fa33bfa9d..de33b64114 100644 --- a/plotly/graph_objects/histogram2dcontour/_textfont.py +++ b/plotly/graph_objects/histogram2dcontour/_textfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py b/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py index 50c83f9757..18ef8e3dc4 100644 --- a/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py +++ b/plotly/graph_objects/histogram2dcontour/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py b/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py index f4da5c6681..308f423694 100644 --- a/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py +++ b/plotly/graph_objects/histogram2dcontour/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py b/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py index c0668726cc..b7279c3231 100644 --- a/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py +++ b/plotly/graph_objects/histogram2dcontour/contours/_labelfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py b/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py index ccc10ea99f..257daafa50 100644 --- a/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py +++ b/plotly/graph_objects/histogram2dcontour/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py b/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py index a1a93a1c33..724f706c2f 100644 --- a/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py +++ b/plotly/graph_objects/histogram2dcontour/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/icicle/_insidetextfont.py b/plotly/graph_objects/icicle/_insidetextfont.py index 07c30c9a27..e0dab2a368 100644 --- a/plotly/graph_objects/icicle/_insidetextfont.py +++ b/plotly/graph_objects/icicle/_insidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/_marker.py b/plotly/graph_objects/icicle/_marker.py index a97fdb74e2..d894c09755 100644 --- a/plotly/graph_objects/icicle/_marker.py +++ b/plotly/graph_objects/icicle/_marker.py @@ -216,30 +216,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/icicle/_outsidetextfont.py b/plotly/graph_objects/icicle/_outsidetextfont.py index 97ef286938..ad4c665609 100644 --- a/plotly/graph_objects/icicle/_outsidetextfont.py +++ b/plotly/graph_objects/icicle/_outsidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/_textfont.py b/plotly/graph_objects/icicle/_textfont.py index 8f14dbff13..8f511dd105 100644 --- a/plotly/graph_objects/icicle/_textfont.py +++ b/plotly/graph_objects/icicle/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/_tiling.py b/plotly/graph_objects/icicle/_tiling.py index 9a9ac99bf7..c837f8f623 100644 --- a/plotly/graph_objects/icicle/_tiling.py +++ b/plotly/graph_objects/icicle/_tiling.py @@ -18,7 +18,8 @@ def flip(self): The 'flip' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y'] joined with '+' characters + + - Any combination of ['x', 'y'] joined with '+' characters (e.g. 'x+y') Returns diff --git a/plotly/graph_objects/icicle/hoverlabel/_font.py b/plotly/graph_objects/icicle/hoverlabel/_font.py index a5537de39b..a165b95fcd 100644 --- a/plotly/graph_objects/icicle/hoverlabel/_font.py +++ b/plotly/graph_objects/icicle/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/icicle/legendgrouptitle/_font.py b/plotly/graph_objects/icicle/legendgrouptitle/_font.py index bb032d1673..320ef8adc6 100644 --- a/plotly/graph_objects/icicle/legendgrouptitle/_font.py +++ b/plotly/graph_objects/icicle/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/icicle/marker/_colorbar.py b/plotly/graph_objects/icicle/marker/_colorbar.py index 13db76d34d..fa0d2b8936 100644 --- a/plotly/graph_objects/icicle/marker/_colorbar.py +++ b/plotly/graph_objects/icicle/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.icicle.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.icicle.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py b/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py index 885b8bfcb0..1c88ab7d63 100644 --- a/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/icicle/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/icicle/marker/colorbar/title/_font.py b/plotly/graph_objects/icicle/marker/colorbar/title/_font.py index 0afb008e95..9bba4cebfe 100644 --- a/plotly/graph_objects/icicle/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/icicle/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/icicle/pathbar/_textfont.py b/plotly/graph_objects/icicle/pathbar/_textfont.py index d1d20f2758..5b21401337 100644 --- a/plotly/graph_objects/icicle/pathbar/_textfont.py +++ b/plotly/graph_objects/icicle/pathbar/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/image/hoverlabel/_font.py b/plotly/graph_objects/image/hoverlabel/_font.py index 9d831c8af6..6ea2d7c86b 100644 --- a/plotly/graph_objects/image/hoverlabel/_font.py +++ b/plotly/graph_objects/image/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/image/legendgrouptitle/_font.py b/plotly/graph_objects/image/legendgrouptitle/_font.py index 89e7f7de9f..aab059460e 100644 --- a/plotly/graph_objects/image/legendgrouptitle/_font.py +++ b/plotly/graph_objects/image/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/indicator/_gauge.py b/plotly/graph_objects/indicator/_gauge.py index 9f175d6fb2..e41ef8cee1 100644 --- a/plotly/graph_objects/indicator/_gauge.py +++ b/plotly/graph_objects/indicator/_gauge.py @@ -151,8 +151,9 @@ def steps(self): """ The 'steps' property is a tuple of instances of Step that may be specified as: - - A list or tuple of instances of plotly.graph_objects.indicator.gauge.Step - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.indicator.gauge.Step + - A list or tuple of dicts of string/value properties that will be passed to the Step constructor Returns diff --git a/plotly/graph_objects/indicator/delta/_font.py b/plotly/graph_objects/indicator/delta/_font.py index ec9be4797e..355430077a 100644 --- a/plotly/graph_objects/indicator/delta/_font.py +++ b/plotly/graph_objects/indicator/delta/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/indicator/gauge/_axis.py b/plotly/graph_objects/indicator/gauge/_axis.py index 3d973e6299..88499511b1 100644 --- a/plotly/graph_objects/indicator/gauge/_axis.py +++ b/plotly/graph_objects/indicator/gauge/_axis.py @@ -428,8 +428,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.indicator.gauge.axis.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.indicator.gauge.axis.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/indicator/gauge/axis/_tickfont.py b/plotly/graph_objects/indicator/gauge/axis/_tickfont.py index 04ad43d59a..370f8045da 100644 --- a/plotly/graph_objects/indicator/gauge/axis/_tickfont.py +++ b/plotly/graph_objects/indicator/gauge/axis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/indicator/legendgrouptitle/_font.py b/plotly/graph_objects/indicator/legendgrouptitle/_font.py index 04600e02d1..6b3854c33a 100644 --- a/plotly/graph_objects/indicator/legendgrouptitle/_font.py +++ b/plotly/graph_objects/indicator/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/indicator/number/_font.py b/plotly/graph_objects/indicator/number/_font.py index bd18e20580..1b3c97515c 100644 --- a/plotly/graph_objects/indicator/number/_font.py +++ b/plotly/graph_objects/indicator/number/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/indicator/title/_font.py b/plotly/graph_objects/indicator/title/_font.py index 268b51fec2..608b5c793f 100644 --- a/plotly/graph_objects/indicator/title/_font.py +++ b/plotly/graph_objects/indicator/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/isosurface/_colorbar.py b/plotly/graph_objects/isosurface/_colorbar.py index 31e25f549d..06675e8ff1 100644 --- a/plotly/graph_objects/isosurface/_colorbar.py +++ b/plotly/graph_objects/isosurface/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.isosurface.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.isosurface.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/isosurface/_surface.py b/plotly/graph_objects/isosurface/_surface.py index 77b4cb1add..9189075363 100644 --- a/plotly/graph_objects/isosurface/_surface.py +++ b/plotly/graph_objects/isosurface/_surface.py @@ -67,7 +67,8 @@ def pattern(self): The 'pattern' property is a flaglist and may be specified as a string containing: - - Any combination of ['A', 'B', 'C', 'D', 'E'] joined with '+' characters + + - Any combination of ['A', 'B', 'C', 'D', 'E'] joined with '+' characters (e.g. 'A+B') OR exactly one of ['all', 'odd', 'even'] (e.g. 'even') diff --git a/plotly/graph_objects/isosurface/colorbar/_tickfont.py b/plotly/graph_objects/isosurface/colorbar/_tickfont.py index 9cc84a74a0..dc5e788285 100644 --- a/plotly/graph_objects/isosurface/colorbar/_tickfont.py +++ b/plotly/graph_objects/isosurface/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/isosurface/colorbar/title/_font.py b/plotly/graph_objects/isosurface/colorbar/title/_font.py index f9bc165663..d34b4d55a2 100644 --- a/plotly/graph_objects/isosurface/colorbar/title/_font.py +++ b/plotly/graph_objects/isosurface/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/isosurface/hoverlabel/_font.py b/plotly/graph_objects/isosurface/hoverlabel/_font.py index 149032129d..e5a263d094 100644 --- a/plotly/graph_objects/isosurface/hoverlabel/_font.py +++ b/plotly/graph_objects/isosurface/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/isosurface/legendgrouptitle/_font.py b/plotly/graph_objects/isosurface/legendgrouptitle/_font.py index 7cf37c5bb3..02bcf3ec04 100644 --- a/plotly/graph_objects/isosurface/legendgrouptitle/_font.py +++ b/plotly/graph_objects/isosurface/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/_annotation.py b/plotly/graph_objects/layout/_annotation.py index 45edb4dde9..5bb0bfc72d 100644 --- a/plotly/graph_objects/layout/_annotation.py +++ b/plotly/graph_objects/layout/_annotation.py @@ -128,7 +128,8 @@ def arrowside(self): The 'arrowside' property is a flaglist and may be specified as a string containing: - - Any combination of ['end', 'start'] joined with '+' characters + + - Any combination of ['end', 'start'] joined with '+' characters (e.g. 'end+start') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/_coloraxis.py b/plotly/graph_objects/layout/_coloraxis.py index 8f48f081a2..641b888254 100644 --- a/plotly/graph_objects/layout/_coloraxis.py +++ b/plotly/graph_objects/layout/_coloraxis.py @@ -163,30 +163,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/layout/_colorscale.py b/plotly/graph_objects/layout/_colorscale.py index 1590094243..4f38e8dda1 100644 --- a/plotly/graph_objects/layout/_colorscale.py +++ b/plotly/graph_objects/layout/_colorscale.py @@ -18,30 +18,31 @@ def diverging(self): The 'diverging' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -62,30 +63,31 @@ def sequential(self): The 'sequential' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- @@ -106,30 +108,31 @@ def sequentialminus(self): The 'sequentialminus' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/layout/_font.py b/plotly/graph_objects/layout/_font.py index 9610c5b118..0fdf788637 100644 --- a/plotly/graph_objects/layout/_font.py +++ b/plotly/graph_objects/layout/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/_legend.py b/plotly/graph_objects/layout/_legend.py index 1c06f09c51..8a76377c01 100644 --- a/plotly/graph_objects/layout/_legend.py +++ b/plotly/graph_objects/layout/_legend.py @@ -424,7 +424,8 @@ def traceorder(self): The 'traceorder' property is a flaglist and may be specified as a string containing: - - Any combination of ['reversed', 'grouped'] joined with '+' characters + + - Any combination of ['reversed', 'grouped'] joined with '+' characters (e.g. 'reversed+grouped') OR exactly one of ['normal'] (e.g. 'normal') diff --git a/plotly/graph_objects/layout/_map.py b/plotly/graph_objects/layout/_map.py index df8305b617..be27f08489 100644 --- a/plotly/graph_objects/layout/_map.py +++ b/plotly/graph_objects/layout/_map.py @@ -103,8 +103,9 @@ def layers(self): """ The 'layers' property is a tuple of instances of Layer that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.map.Layer - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.map.Layer + - A list or tuple of dicts of string/value properties that will be passed to the Layer constructor Returns diff --git a/plotly/graph_objects/layout/_mapbox.py b/plotly/graph_objects/layout/_mapbox.py index 04deeb74f8..ab0ac533eb 100644 --- a/plotly/graph_objects/layout/_mapbox.py +++ b/plotly/graph_objects/layout/_mapbox.py @@ -128,8 +128,9 @@ def layers(self): """ The 'layers' property is a tuple of instances of Layer that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.mapbox.Layer - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.mapbox.Layer + - A list or tuple of dicts of string/value properties that will be passed to the Layer constructor Returns diff --git a/plotly/graph_objects/layout/_scene.py b/plotly/graph_objects/layout/_scene.py index d3435b3d4f..648c6ec9ee 100644 --- a/plotly/graph_objects/layout/_scene.py +++ b/plotly/graph_objects/layout/_scene.py @@ -29,8 +29,9 @@ def annotations(self): """ The 'annotations' property is a tuple of instances of Annotation that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.scene.Annotation - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.scene.Annotation + - A list or tuple of dicts of string/value properties that will be passed to the Annotation constructor Returns diff --git a/plotly/graph_objects/layout/_slider.py b/plotly/graph_objects/layout/_slider.py index 4dbb5cfdc1..0ce95681aa 100644 --- a/plotly/graph_objects/layout/_slider.py +++ b/plotly/graph_objects/layout/_slider.py @@ -298,8 +298,9 @@ def steps(self): """ The 'steps' property is a tuple of instances of Step that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.slider.Step - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.slider.Step + - A list or tuple of dicts of string/value properties that will be passed to the Step constructor Returns diff --git a/plotly/graph_objects/layout/_updatemenu.py b/plotly/graph_objects/layout/_updatemenu.py index 6dda7b0b63..317465ccef 100644 --- a/plotly/graph_objects/layout/_updatemenu.py +++ b/plotly/graph_objects/layout/_updatemenu.py @@ -120,8 +120,9 @@ def buttons(self): """ The 'buttons' property is a tuple of instances of Button that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.updatemenu.Button - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.updatemenu.Button + - A list or tuple of dicts of string/value properties that will be passed to the Button constructor Returns diff --git a/plotly/graph_objects/layout/_xaxis.py b/plotly/graph_objects/layout/_xaxis.py index 6bf1043129..bbe378f024 100644 --- a/plotly/graph_objects/layout/_xaxis.py +++ b/plotly/graph_objects/layout/_xaxis.py @@ -141,7 +141,8 @@ def automargin(self): The 'automargin' property is a flaglist and may be specified as a string containing: - - Any combination of ['height', 'width', 'left', 'right', 'top', 'bottom'] joined with '+' characters + + - Any combination of ['height', 'width', 'left', 'right', 'top', 'bottom'] joined with '+' characters (e.g. 'height+width') OR exactly one of [True, False] (e.g. 'False') @@ -1047,8 +1048,9 @@ def rangebreaks(self): """ The 'rangebreaks' property is a tuple of instances of Rangebreak that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.xaxis.Rangebreak - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.xaxis.Rangebreak + - A list or tuple of dicts of string/value properties that will be passed to the Rangebreak constructor Returns @@ -1485,7 +1487,8 @@ def spikemode(self): The 'spikemode' property is a flaglist and may be specified as a string containing: - - Any combination of ['toaxis', 'across', 'marker'] joined with '+' characters + + - Any combination of ['toaxis', 'across', 'marker'] joined with '+' characters (e.g. 'toaxis+across') Returns @@ -1665,8 +1668,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.xaxis.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.xaxis.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/layout/_yaxis.py b/plotly/graph_objects/layout/_yaxis.py index 57db219201..ab5a5c9df1 100644 --- a/plotly/graph_objects/layout/_yaxis.py +++ b/plotly/graph_objects/layout/_yaxis.py @@ -141,7 +141,8 @@ def automargin(self): The 'automargin' property is a flaglist and may be specified as a string containing: - - Any combination of ['height', 'width', 'left', 'right', 'top', 'bottom'] joined with '+' characters + + - Any combination of ['height', 'width', 'left', 'right', 'top', 'bottom'] joined with '+' characters (e.g. 'height+width') OR exactly one of [True, False] (e.g. 'False') @@ -1069,8 +1070,9 @@ def rangebreaks(self): """ The 'rangebreaks' property is a tuple of instances of Rangebreak that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.yaxis.Rangebreak - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.yaxis.Rangebreak + - A list or tuple of dicts of string/value properties that will be passed to the Rangebreak constructor Returns @@ -1494,7 +1496,8 @@ def spikemode(self): The 'spikemode' property is a flaglist and may be specified as a string containing: - - Any combination of ['toaxis', 'across', 'marker'] joined with '+' characters + + - Any combination of ['toaxis', 'across', 'marker'] joined with '+' characters (e.g. 'toaxis+across') Returns @@ -1674,8 +1677,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.yaxis.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.yaxis.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/layout/annotation/_font.py b/plotly/graph_objects/layout/annotation/_font.py index cae3e3fa8e..bfcd8ae0db 100644 --- a/plotly/graph_objects/layout/annotation/_font.py +++ b/plotly/graph_objects/layout/annotation/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/annotation/hoverlabel/_font.py b/plotly/graph_objects/layout/annotation/hoverlabel/_font.py index b212d474f6..efb86888d1 100644 --- a/plotly/graph_objects/layout/annotation/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/annotation/hoverlabel/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/coloraxis/_colorbar.py b/plotly/graph_objects/layout/coloraxis/_colorbar.py index 46183f4a4b..260d30eacb 100644 --- a/plotly/graph_objects/layout/coloraxis/_colorbar.py +++ b/plotly/graph_objects/layout/coloraxis/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.coloraxis.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.coloraxis.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py b/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py index 327c08d1d9..224f2564d5 100644 --- a/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py +++ b/plotly/graph_objects/layout/coloraxis/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py b/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py index 2b778f3451..1d0fb70602 100644 --- a/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py +++ b/plotly/graph_objects/layout/coloraxis/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/hoverlabel/_font.py b/plotly/graph_objects/layout/hoverlabel/_font.py index c02e39c430..5c005ab1cc 100644 --- a/plotly/graph_objects/layout/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/hoverlabel/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py b/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py index 93acae2c09..9b85c26738 100644 --- a/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py +++ b/plotly/graph_objects/layout/hoverlabel/_grouptitlefont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/legend/_font.py b/plotly/graph_objects/layout/legend/_font.py index 8985b957a2..817e8ddc43 100644 --- a/plotly/graph_objects/layout/legend/_font.py +++ b/plotly/graph_objects/layout/legend/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/legend/_grouptitlefont.py b/plotly/graph_objects/layout/legend/_grouptitlefont.py index 97fae495f7..817d0054a4 100644 --- a/plotly/graph_objects/layout/legend/_grouptitlefont.py +++ b/plotly/graph_objects/layout/legend/_grouptitlefont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/legend/title/_font.py b/plotly/graph_objects/layout/legend/title/_font.py index c5651e02e9..46f657aad3 100644 --- a/plotly/graph_objects/layout/legend/title/_font.py +++ b/plotly/graph_objects/layout/legend/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/newshape/label/_font.py b/plotly/graph_objects/layout/newshape/label/_font.py index 4b3e08f748..dcee8735a4 100644 --- a/plotly/graph_objects/layout/newshape/label/_font.py +++ b/plotly/graph_objects/layout/newshape/label/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py b/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py index 6cdcce4e08..82548657d9 100644 --- a/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py +++ b/plotly/graph_objects/layout/newshape/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/polar/_angularaxis.py b/plotly/graph_objects/layout/polar/_angularaxis.py index cadde85627..11af275a47 100644 --- a/plotly/graph_objects/layout/polar/_angularaxis.py +++ b/plotly/graph_objects/layout/polar/_angularaxis.py @@ -843,8 +843,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.polar.angularaxis.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.polar.angularaxis.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/layout/polar/_radialaxis.py b/plotly/graph_objects/layout/polar/_radialaxis.py index 3440c42afa..3c77850773 100644 --- a/plotly/graph_objects/layout/polar/_radialaxis.py +++ b/plotly/graph_objects/layout/polar/_radialaxis.py @@ -1002,8 +1002,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.polar.radialaxis.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.polar.radialaxis.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py b/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py index b253cc68c0..4b8bc28be9 100644 --- a/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py +++ b/plotly/graph_objects/layout/polar/angularaxis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py b/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py index 585250b4db..0a9d3d3989 100644 --- a/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py +++ b/plotly/graph_objects/layout/polar/radialaxis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/polar/radialaxis/title/_font.py b/plotly/graph_objects/layout/polar/radialaxis/title/_font.py index 9d929c426e..609810f479 100644 --- a/plotly/graph_objects/layout/polar/radialaxis/title/_font.py +++ b/plotly/graph_objects/layout/polar/radialaxis/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/scene/_annotation.py b/plotly/graph_objects/layout/scene/_annotation.py index 9fed61c380..d54830e98e 100644 --- a/plotly/graph_objects/layout/scene/_annotation.py +++ b/plotly/graph_objects/layout/scene/_annotation.py @@ -122,7 +122,8 @@ def arrowside(self): The 'arrowside' property is a flaglist and may be specified as a string containing: - - Any combination of ['end', 'start'] joined with '+' characters + + - Any combination of ['end', 'start'] joined with '+' characters (e.g. 'end+start') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/scene/_xaxis.py b/plotly/graph_objects/layout/scene/_xaxis.py index 014b4d7c7b..2e28d30da4 100644 --- a/plotly/graph_objects/layout/scene/_xaxis.py +++ b/plotly/graph_objects/layout/scene/_xaxis.py @@ -1045,8 +1045,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.scene.xaxis.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.scene.xaxis.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/layout/scene/_yaxis.py b/plotly/graph_objects/layout/scene/_yaxis.py index 996846f4c4..3312758fc3 100644 --- a/plotly/graph_objects/layout/scene/_yaxis.py +++ b/plotly/graph_objects/layout/scene/_yaxis.py @@ -1045,8 +1045,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.scene.yaxis.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.scene.yaxis.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/layout/scene/_zaxis.py b/plotly/graph_objects/layout/scene/_zaxis.py index 354b997929..06abef309f 100644 --- a/plotly/graph_objects/layout/scene/_zaxis.py +++ b/plotly/graph_objects/layout/scene/_zaxis.py @@ -1045,8 +1045,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.scene.zaxis.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.scene.zaxis.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/layout/scene/annotation/_font.py b/plotly/graph_objects/layout/scene/annotation/_font.py index 151e437e5d..92df8bc861 100644 --- a/plotly/graph_objects/layout/scene/annotation/_font.py +++ b/plotly/graph_objects/layout/scene/annotation/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py b/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py index 9bad1fd184..22df0a1926 100644 --- a/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py +++ b/plotly/graph_objects/layout/scene/annotation/hoverlabel/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/scene/xaxis/_tickfont.py b/plotly/graph_objects/layout/scene/xaxis/_tickfont.py index 89aac4b1c2..0533cf01c8 100644 --- a/plotly/graph_objects/layout/scene/xaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/xaxis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/scene/xaxis/title/_font.py b/plotly/graph_objects/layout/scene/xaxis/title/_font.py index bd1cf45228..2a09bd2a70 100644 --- a/plotly/graph_objects/layout/scene/xaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/xaxis/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/scene/yaxis/_tickfont.py b/plotly/graph_objects/layout/scene/yaxis/_tickfont.py index 1a56fc35d6..e04073ce2c 100644 --- a/plotly/graph_objects/layout/scene/yaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/yaxis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/scene/yaxis/title/_font.py b/plotly/graph_objects/layout/scene/yaxis/title/_font.py index eba9b96a1a..0d586e5b93 100644 --- a/plotly/graph_objects/layout/scene/yaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/yaxis/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/scene/zaxis/_tickfont.py b/plotly/graph_objects/layout/scene/zaxis/_tickfont.py index 882005e14f..63aa091e1b 100644 --- a/plotly/graph_objects/layout/scene/zaxis/_tickfont.py +++ b/plotly/graph_objects/layout/scene/zaxis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/scene/zaxis/title/_font.py b/plotly/graph_objects/layout/scene/zaxis/title/_font.py index e947644b37..178d8d5283 100644 --- a/plotly/graph_objects/layout/scene/zaxis/title/_font.py +++ b/plotly/graph_objects/layout/scene/zaxis/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/shape/label/_font.py b/plotly/graph_objects/layout/shape/label/_font.py index 1c7430e133..d27b1a238a 100644 --- a/plotly/graph_objects/layout/shape/label/_font.py +++ b/plotly/graph_objects/layout/shape/label/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py b/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py index cc77b2c195..7c185a9dd3 100644 --- a/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py +++ b/plotly/graph_objects/layout/shape/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/slider/_font.py b/plotly/graph_objects/layout/slider/_font.py index d38fe8103c..48d2da7342 100644 --- a/plotly/graph_objects/layout/slider/_font.py +++ b/plotly/graph_objects/layout/slider/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/slider/currentvalue/_font.py b/plotly/graph_objects/layout/slider/currentvalue/_font.py index 9e4c2c0350..1fbf3bec10 100644 --- a/plotly/graph_objects/layout/slider/currentvalue/_font.py +++ b/plotly/graph_objects/layout/slider/currentvalue/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py b/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py index 4e1f8ba016..77c25d837e 100644 --- a/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py +++ b/plotly/graph_objects/layout/smith/imaginaryaxis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/smith/realaxis/_tickfont.py b/plotly/graph_objects/layout/smith/realaxis/_tickfont.py index 9a93fcc77c..54fa845926 100644 --- a/plotly/graph_objects/layout/smith/realaxis/_tickfont.py +++ b/plotly/graph_objects/layout/smith/realaxis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/template/_data.py b/plotly/graph_objects/layout/template/_data.py index 9235e8d14b..fee80c7b7a 100644 --- a/plotly/graph_objects/layout/template/_data.py +++ b/plotly/graph_objects/layout/template/_data.py @@ -65,8 +65,9 @@ def barpolar(self): """ The 'barpolar' property is a tuple of instances of Barpolar that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Barpolar - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Barpolar + - A list or tuple of dicts of string/value properties that will be passed to the Barpolar constructor Returns @@ -84,8 +85,9 @@ def bar(self): """ The 'bar' property is a tuple of instances of Bar that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Bar - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Bar + - A list or tuple of dicts of string/value properties that will be passed to the Bar constructor Returns @@ -103,8 +105,9 @@ def box(self): """ The 'box' property is a tuple of instances of Box that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Box - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Box + - A list or tuple of dicts of string/value properties that will be passed to the Box constructor Returns @@ -122,8 +125,9 @@ def candlestick(self): """ The 'candlestick' property is a tuple of instances of Candlestick that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Candlestick - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Candlestick + - A list or tuple of dicts of string/value properties that will be passed to the Candlestick constructor Returns @@ -141,8 +145,9 @@ def carpet(self): """ The 'carpet' property is a tuple of instances of Carpet that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Carpet - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Carpet + - A list or tuple of dicts of string/value properties that will be passed to the Carpet constructor Returns @@ -160,8 +165,9 @@ def choroplethmapbox(self): """ The 'choroplethmapbox' property is a tuple of instances of Choroplethmapbox that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Choroplethmapbox - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Choroplethmapbox + - A list or tuple of dicts of string/value properties that will be passed to the Choroplethmapbox constructor Returns @@ -179,8 +185,9 @@ def choroplethmap(self): """ The 'choroplethmap' property is a tuple of instances of Choroplethmap that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Choroplethmap - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Choroplethmap + - A list or tuple of dicts of string/value properties that will be passed to the Choroplethmap constructor Returns @@ -198,8 +205,9 @@ def choropleth(self): """ The 'choropleth' property is a tuple of instances of Choropleth that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Choropleth - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Choropleth + - A list or tuple of dicts of string/value properties that will be passed to the Choropleth constructor Returns @@ -217,8 +225,9 @@ def cone(self): """ The 'cone' property is a tuple of instances of Cone that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Cone - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Cone + - A list or tuple of dicts of string/value properties that will be passed to the Cone constructor Returns @@ -236,8 +245,9 @@ def contourcarpet(self): """ The 'contourcarpet' property is a tuple of instances of Contourcarpet that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Contourcarpet - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Contourcarpet + - A list or tuple of dicts of string/value properties that will be passed to the Contourcarpet constructor Returns @@ -255,8 +265,9 @@ def contour(self): """ The 'contour' property is a tuple of instances of Contour that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Contour - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Contour + - A list or tuple of dicts of string/value properties that will be passed to the Contour constructor Returns @@ -274,8 +285,9 @@ def densitymapbox(self): """ The 'densitymapbox' property is a tuple of instances of Densitymapbox that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Densitymapbox - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Densitymapbox + - A list or tuple of dicts of string/value properties that will be passed to the Densitymapbox constructor Returns @@ -293,8 +305,9 @@ def densitymap(self): """ The 'densitymap' property is a tuple of instances of Densitymap that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Densitymap - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Densitymap + - A list or tuple of dicts of string/value properties that will be passed to the Densitymap constructor Returns @@ -312,8 +325,9 @@ def funnelarea(self): """ The 'funnelarea' property is a tuple of instances of Funnelarea that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Funnelarea - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Funnelarea + - A list or tuple of dicts of string/value properties that will be passed to the Funnelarea constructor Returns @@ -331,8 +345,9 @@ def funnel(self): """ The 'funnel' property is a tuple of instances of Funnel that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Funnel - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Funnel + - A list or tuple of dicts of string/value properties that will be passed to the Funnel constructor Returns @@ -350,8 +365,9 @@ def heatmap(self): """ The 'heatmap' property is a tuple of instances of Heatmap that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Heatmap - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Heatmap + - A list or tuple of dicts of string/value properties that will be passed to the Heatmap constructor Returns @@ -369,8 +385,9 @@ def histogram2dcontour(self): """ The 'histogram2dcontour' property is a tuple of instances of Histogram2dContour that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Histogram2dContour - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Histogram2dContour + - A list or tuple of dicts of string/value properties that will be passed to the Histogram2dContour constructor Returns @@ -388,8 +405,9 @@ def histogram2d(self): """ The 'histogram2d' property is a tuple of instances of Histogram2d that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Histogram2d - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Histogram2d + - A list or tuple of dicts of string/value properties that will be passed to the Histogram2d constructor Returns @@ -407,8 +425,9 @@ def histogram(self): """ The 'histogram' property is a tuple of instances of Histogram that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Histogram - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Histogram + - A list or tuple of dicts of string/value properties that will be passed to the Histogram constructor Returns @@ -426,8 +445,9 @@ def icicle(self): """ The 'icicle' property is a tuple of instances of Icicle that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Icicle - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Icicle + - A list or tuple of dicts of string/value properties that will be passed to the Icicle constructor Returns @@ -445,8 +465,9 @@ def image(self): """ The 'image' property is a tuple of instances of Image that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Image - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Image + - A list or tuple of dicts of string/value properties that will be passed to the Image constructor Returns @@ -464,8 +485,9 @@ def indicator(self): """ The 'indicator' property is a tuple of instances of Indicator that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Indicator - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Indicator + - A list or tuple of dicts of string/value properties that will be passed to the Indicator constructor Returns @@ -483,8 +505,9 @@ def isosurface(self): """ The 'isosurface' property is a tuple of instances of Isosurface that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Isosurface - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Isosurface + - A list or tuple of dicts of string/value properties that will be passed to the Isosurface constructor Returns @@ -502,8 +525,9 @@ def mesh3d(self): """ The 'mesh3d' property is a tuple of instances of Mesh3d that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Mesh3d - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Mesh3d + - A list or tuple of dicts of string/value properties that will be passed to the Mesh3d constructor Returns @@ -521,8 +545,9 @@ def ohlc(self): """ The 'ohlc' property is a tuple of instances of Ohlc that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Ohlc - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Ohlc + - A list or tuple of dicts of string/value properties that will be passed to the Ohlc constructor Returns @@ -540,8 +565,9 @@ def parcats(self): """ The 'parcats' property is a tuple of instances of Parcats that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Parcats - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Parcats + - A list or tuple of dicts of string/value properties that will be passed to the Parcats constructor Returns @@ -559,8 +585,9 @@ def parcoords(self): """ The 'parcoords' property is a tuple of instances of Parcoords that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Parcoords - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Parcoords + - A list or tuple of dicts of string/value properties that will be passed to the Parcoords constructor Returns @@ -578,8 +605,9 @@ def pie(self): """ The 'pie' property is a tuple of instances of Pie that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Pie - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Pie + - A list or tuple of dicts of string/value properties that will be passed to the Pie constructor Returns @@ -597,8 +625,9 @@ def sankey(self): """ The 'sankey' property is a tuple of instances of Sankey that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Sankey - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Sankey + - A list or tuple of dicts of string/value properties that will be passed to the Sankey constructor Returns @@ -616,8 +645,9 @@ def scatter3d(self): """ The 'scatter3d' property is a tuple of instances of Scatter3d that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scatter3d - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scatter3d + - A list or tuple of dicts of string/value properties that will be passed to the Scatter3d constructor Returns @@ -635,8 +665,9 @@ def scattercarpet(self): """ The 'scattercarpet' property is a tuple of instances of Scattercarpet that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scattercarpet - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scattercarpet + - A list or tuple of dicts of string/value properties that will be passed to the Scattercarpet constructor Returns @@ -654,8 +685,9 @@ def scattergeo(self): """ The 'scattergeo' property is a tuple of instances of Scattergeo that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scattergeo - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scattergeo + - A list or tuple of dicts of string/value properties that will be passed to the Scattergeo constructor Returns @@ -673,8 +705,9 @@ def scattergl(self): """ The 'scattergl' property is a tuple of instances of Scattergl that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scattergl - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scattergl + - A list or tuple of dicts of string/value properties that will be passed to the Scattergl constructor Returns @@ -692,8 +725,9 @@ def scattermapbox(self): """ The 'scattermapbox' property is a tuple of instances of Scattermapbox that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scattermapbox - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scattermapbox + - A list or tuple of dicts of string/value properties that will be passed to the Scattermapbox constructor Returns @@ -711,8 +745,9 @@ def scattermap(self): """ The 'scattermap' property is a tuple of instances of Scattermap that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scattermap - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scattermap + - A list or tuple of dicts of string/value properties that will be passed to the Scattermap constructor Returns @@ -730,8 +765,9 @@ def scatterpolargl(self): """ The 'scatterpolargl' property is a tuple of instances of Scatterpolargl that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scatterpolargl - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scatterpolargl + - A list or tuple of dicts of string/value properties that will be passed to the Scatterpolargl constructor Returns @@ -749,8 +785,9 @@ def scatterpolar(self): """ The 'scatterpolar' property is a tuple of instances of Scatterpolar that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scatterpolar - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scatterpolar + - A list or tuple of dicts of string/value properties that will be passed to the Scatterpolar constructor Returns @@ -768,8 +805,9 @@ def scatter(self): """ The 'scatter' property is a tuple of instances of Scatter that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scatter - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scatter + - A list or tuple of dicts of string/value properties that will be passed to the Scatter constructor Returns @@ -787,8 +825,9 @@ def scattersmith(self): """ The 'scattersmith' property is a tuple of instances of Scattersmith that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scattersmith - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scattersmith + - A list or tuple of dicts of string/value properties that will be passed to the Scattersmith constructor Returns @@ -806,8 +845,9 @@ def scatterternary(self): """ The 'scatterternary' property is a tuple of instances of Scatterternary that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scatterternary - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Scatterternary + - A list or tuple of dicts of string/value properties that will be passed to the Scatterternary constructor Returns @@ -825,8 +865,9 @@ def splom(self): """ The 'splom' property is a tuple of instances of Splom that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Splom - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Splom + - A list or tuple of dicts of string/value properties that will be passed to the Splom constructor Returns @@ -844,8 +885,9 @@ def streamtube(self): """ The 'streamtube' property is a tuple of instances of Streamtube that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Streamtube - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Streamtube + - A list or tuple of dicts of string/value properties that will be passed to the Streamtube constructor Returns @@ -863,8 +905,9 @@ def sunburst(self): """ The 'sunburst' property is a tuple of instances of Sunburst that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Sunburst - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Sunburst + - A list or tuple of dicts of string/value properties that will be passed to the Sunburst constructor Returns @@ -882,8 +925,9 @@ def surface(self): """ The 'surface' property is a tuple of instances of Surface that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Surface - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Surface + - A list or tuple of dicts of string/value properties that will be passed to the Surface constructor Returns @@ -901,8 +945,9 @@ def table(self): """ The 'table' property is a tuple of instances of Table that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Table - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Table + - A list or tuple of dicts of string/value properties that will be passed to the Table constructor Returns @@ -920,8 +965,9 @@ def treemap(self): """ The 'treemap' property is a tuple of instances of Treemap that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Treemap - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Treemap + - A list or tuple of dicts of string/value properties that will be passed to the Treemap constructor Returns @@ -939,8 +985,9 @@ def violin(self): """ The 'violin' property is a tuple of instances of Violin that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Violin - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Violin + - A list or tuple of dicts of string/value properties that will be passed to the Violin constructor Returns @@ -958,8 +1005,9 @@ def volume(self): """ The 'volume' property is a tuple of instances of Volume that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Volume - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Volume + - A list or tuple of dicts of string/value properties that will be passed to the Volume constructor Returns @@ -977,8 +1025,9 @@ def waterfall(self): """ The 'waterfall' property is a tuple of instances of Waterfall that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.template.data.Waterfall - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.template.data.Waterfall + - A list or tuple of dicts of string/value properties that will be passed to the Waterfall constructor Returns diff --git a/plotly/graph_objects/layout/ternary/_aaxis.py b/plotly/graph_objects/layout/ternary/_aaxis.py index 19ac3fbdc8..96a51e8724 100644 --- a/plotly/graph_objects/layout/ternary/_aaxis.py +++ b/plotly/graph_objects/layout/ternary/_aaxis.py @@ -664,8 +664,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.ternary.aaxis.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.ternary.aaxis.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/layout/ternary/_baxis.py b/plotly/graph_objects/layout/ternary/_baxis.py index 4a38618143..ec75cc7b2c 100644 --- a/plotly/graph_objects/layout/ternary/_baxis.py +++ b/plotly/graph_objects/layout/ternary/_baxis.py @@ -664,8 +664,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.ternary.baxis.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.ternary.baxis.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/layout/ternary/_caxis.py b/plotly/graph_objects/layout/ternary/_caxis.py index f8c7fcf31c..c061381abb 100644 --- a/plotly/graph_objects/layout/ternary/_caxis.py +++ b/plotly/graph_objects/layout/ternary/_caxis.py @@ -664,8 +664,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.ternary.caxis.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.ternary.caxis.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py b/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py index 9f92926a62..f9ae271514 100644 --- a/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/aaxis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/ternary/aaxis/title/_font.py b/plotly/graph_objects/layout/ternary/aaxis/title/_font.py index 67023bec71..f69f2d4e17 100644 --- a/plotly/graph_objects/layout/ternary/aaxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/aaxis/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/ternary/baxis/_tickfont.py b/plotly/graph_objects/layout/ternary/baxis/_tickfont.py index 9824bbb7cd..692a773a16 100644 --- a/plotly/graph_objects/layout/ternary/baxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/baxis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/ternary/baxis/title/_font.py b/plotly/graph_objects/layout/ternary/baxis/title/_font.py index 720cd7f83f..4c3cea455c 100644 --- a/plotly/graph_objects/layout/ternary/baxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/baxis/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/ternary/caxis/_tickfont.py b/plotly/graph_objects/layout/ternary/caxis/_tickfont.py index 6a23b17db9..fbd8dee9ff 100644 --- a/plotly/graph_objects/layout/ternary/caxis/_tickfont.py +++ b/plotly/graph_objects/layout/ternary/caxis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/ternary/caxis/title/_font.py b/plotly/graph_objects/layout/ternary/caxis/title/_font.py index 643a277ed3..e1c98922a3 100644 --- a/plotly/graph_objects/layout/ternary/caxis/title/_font.py +++ b/plotly/graph_objects/layout/ternary/caxis/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/title/_font.py b/plotly/graph_objects/layout/title/_font.py index 6b48123476..cff9f3d8ba 100644 --- a/plotly/graph_objects/layout/title/_font.py +++ b/plotly/graph_objects/layout/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/title/subtitle/_font.py b/plotly/graph_objects/layout/title/subtitle/_font.py index 984888e615..d9ae50c562 100644 --- a/plotly/graph_objects/layout/title/subtitle/_font.py +++ b/plotly/graph_objects/layout/title/subtitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/updatemenu/_font.py b/plotly/graph_objects/layout/updatemenu/_font.py index 9f873de8a8..828092d102 100644 --- a/plotly/graph_objects/layout/updatemenu/_font.py +++ b/plotly/graph_objects/layout/updatemenu/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/xaxis/_rangeselector.py b/plotly/graph_objects/layout/xaxis/_rangeselector.py index 5bbf91fd41..0e9d79dd3d 100644 --- a/plotly/graph_objects/layout/xaxis/_rangeselector.py +++ b/plotly/graph_objects/layout/xaxis/_rangeselector.py @@ -120,8 +120,9 @@ def buttons(self): The 'buttons' property is a tuple of instances of Button that may be specified as: - - A list or tuple of instances of plotly.graph_objects.layout.xaxis.rangeselector.Button - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.layout.xaxis.rangeselector.Button + - A list or tuple of dicts of string/value properties that will be passed to the Button constructor Returns diff --git a/plotly/graph_objects/layout/xaxis/_tickfont.py b/plotly/graph_objects/layout/xaxis/_tickfont.py index dead4a4a3c..e7e43fab20 100644 --- a/plotly/graph_objects/layout/xaxis/_tickfont.py +++ b/plotly/graph_objects/layout/xaxis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/xaxis/rangeselector/_font.py b/plotly/graph_objects/layout/xaxis/rangeselector/_font.py index bce59534c2..7c3a13ec0e 100644 --- a/plotly/graph_objects/layout/xaxis/rangeselector/_font.py +++ b/plotly/graph_objects/layout/xaxis/rangeselector/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/xaxis/title/_font.py b/plotly/graph_objects/layout/xaxis/title/_font.py index a102a65e53..fd46f22b59 100644 --- a/plotly/graph_objects/layout/xaxis/title/_font.py +++ b/plotly/graph_objects/layout/xaxis/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/yaxis/_tickfont.py b/plotly/graph_objects/layout/yaxis/_tickfont.py index 8a8b5e3d08..e14e33ca55 100644 --- a/plotly/graph_objects/layout/yaxis/_tickfont.py +++ b/plotly/graph_objects/layout/yaxis/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/layout/yaxis/title/_font.py b/plotly/graph_objects/layout/yaxis/title/_font.py index 5a72016ed7..93edb186e6 100644 --- a/plotly/graph_objects/layout/yaxis/title/_font.py +++ b/plotly/graph_objects/layout/yaxis/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/mesh3d/_colorbar.py b/plotly/graph_objects/mesh3d/_colorbar.py index 1546f028bc..dddaee9f96 100644 --- a/plotly/graph_objects/mesh3d/_colorbar.py +++ b/plotly/graph_objects/mesh3d/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.mesh3d.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.mesh3d.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/mesh3d/colorbar/_tickfont.py b/plotly/graph_objects/mesh3d/colorbar/_tickfont.py index ebefa4837c..40b23e352b 100644 --- a/plotly/graph_objects/mesh3d/colorbar/_tickfont.py +++ b/plotly/graph_objects/mesh3d/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/mesh3d/colorbar/title/_font.py b/plotly/graph_objects/mesh3d/colorbar/title/_font.py index b0c9b55638..5c1be97c23 100644 --- a/plotly/graph_objects/mesh3d/colorbar/title/_font.py +++ b/plotly/graph_objects/mesh3d/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/mesh3d/hoverlabel/_font.py b/plotly/graph_objects/mesh3d/hoverlabel/_font.py index 96b149e4ba..6755767821 100644 --- a/plotly/graph_objects/mesh3d/hoverlabel/_font.py +++ b/plotly/graph_objects/mesh3d/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py b/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py index 59e1be8db6..01fddd0e3a 100644 --- a/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/mesh3d/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/ohlc/hoverlabel/_font.py b/plotly/graph_objects/ohlc/hoverlabel/_font.py index dfb15c8d1a..b45f8344a1 100644 --- a/plotly/graph_objects/ohlc/hoverlabel/_font.py +++ b/plotly/graph_objects/ohlc/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/ohlc/legendgrouptitle/_font.py b/plotly/graph_objects/ohlc/legendgrouptitle/_font.py index 5a62e7cbaa..f76a0840a7 100644 --- a/plotly/graph_objects/ohlc/legendgrouptitle/_font.py +++ b/plotly/graph_objects/ohlc/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/parcats/_labelfont.py b/plotly/graph_objects/parcats/_labelfont.py index 5ff2a67722..f8823db60c 100644 --- a/plotly/graph_objects/parcats/_labelfont.py +++ b/plotly/graph_objects/parcats/_labelfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/parcats/_line.py b/plotly/graph_objects/parcats/_line.py index 8f966a2b58..9367d1d0be 100644 --- a/plotly/graph_objects/parcats/_line.py +++ b/plotly/graph_objects/parcats/_line.py @@ -227,30 +227,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/parcats/_tickfont.py b/plotly/graph_objects/parcats/_tickfont.py index 60993fe10a..a6a651db75 100644 --- a/plotly/graph_objects/parcats/_tickfont.py +++ b/plotly/graph_objects/parcats/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/parcats/legendgrouptitle/_font.py b/plotly/graph_objects/parcats/legendgrouptitle/_font.py index 0a0afe4619..90c9adf9c4 100644 --- a/plotly/graph_objects/parcats/legendgrouptitle/_font.py +++ b/plotly/graph_objects/parcats/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/parcats/line/_colorbar.py b/plotly/graph_objects/parcats/line/_colorbar.py index 1205a9d7b4..cd56b3fc72 100644 --- a/plotly/graph_objects/parcats/line/_colorbar.py +++ b/plotly/graph_objects/parcats/line/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.parcats.line.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.parcats.line.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/parcats/line/colorbar/_tickfont.py b/plotly/graph_objects/parcats/line/colorbar/_tickfont.py index 0143d452e2..dcc48a285b 100644 --- a/plotly/graph_objects/parcats/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/parcats/line/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/parcats/line/colorbar/title/_font.py b/plotly/graph_objects/parcats/line/colorbar/title/_font.py index c30ebc008a..b9ec5b93bb 100644 --- a/plotly/graph_objects/parcats/line/colorbar/title/_font.py +++ b/plotly/graph_objects/parcats/line/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/parcoords/_labelfont.py b/plotly/graph_objects/parcoords/_labelfont.py index f87b3de937..8f9e996254 100644 --- a/plotly/graph_objects/parcoords/_labelfont.py +++ b/plotly/graph_objects/parcoords/_labelfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/parcoords/_line.py b/plotly/graph_objects/parcoords/_line.py index 02712376fa..a4139e523f 100644 --- a/plotly/graph_objects/parcoords/_line.py +++ b/plotly/graph_objects/parcoords/_line.py @@ -225,30 +225,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/parcoords/_rangefont.py b/plotly/graph_objects/parcoords/_rangefont.py index c588bfcd10..ecdb69ebdd 100644 --- a/plotly/graph_objects/parcoords/_rangefont.py +++ b/plotly/graph_objects/parcoords/_rangefont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/parcoords/_tickfont.py b/plotly/graph_objects/parcoords/_tickfont.py index 31d171c2c9..d3e1b3b37b 100644 --- a/plotly/graph_objects/parcoords/_tickfont.py +++ b/plotly/graph_objects/parcoords/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/parcoords/legendgrouptitle/_font.py b/plotly/graph_objects/parcoords/legendgrouptitle/_font.py index b8243f0422..74740ef931 100644 --- a/plotly/graph_objects/parcoords/legendgrouptitle/_font.py +++ b/plotly/graph_objects/parcoords/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/parcoords/line/_colorbar.py b/plotly/graph_objects/parcoords/line/_colorbar.py index 013fd60a00..caddba62c1 100644 --- a/plotly/graph_objects/parcoords/line/_colorbar.py +++ b/plotly/graph_objects/parcoords/line/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.parcoords.line.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.parcoords.line.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py b/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py index cc079a71f9..97fea540c8 100644 --- a/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/parcoords/line/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/parcoords/line/colorbar/title/_font.py b/plotly/graph_objects/parcoords/line/colorbar/title/_font.py index cc12d4e5e7..6a49be6c2d 100644 --- a/plotly/graph_objects/parcoords/line/colorbar/title/_font.py +++ b/plotly/graph_objects/parcoords/line/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/pie/_insidetextfont.py b/plotly/graph_objects/pie/_insidetextfont.py index bced401c04..556de9a764 100644 --- a/plotly/graph_objects/pie/_insidetextfont.py +++ b/plotly/graph_objects/pie/_insidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/pie/_outsidetextfont.py b/plotly/graph_objects/pie/_outsidetextfont.py index 3273198c68..48fd991737 100644 --- a/plotly/graph_objects/pie/_outsidetextfont.py +++ b/plotly/graph_objects/pie/_outsidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/pie/_textfont.py b/plotly/graph_objects/pie/_textfont.py index 6be008684c..e1d32446ff 100644 --- a/plotly/graph_objects/pie/_textfont.py +++ b/plotly/graph_objects/pie/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/pie/hoverlabel/_font.py b/plotly/graph_objects/pie/hoverlabel/_font.py index c124a2dfc4..9c86d93ddb 100644 --- a/plotly/graph_objects/pie/hoverlabel/_font.py +++ b/plotly/graph_objects/pie/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/pie/legendgrouptitle/_font.py b/plotly/graph_objects/pie/legendgrouptitle/_font.py index 5ace82c2d7..868b420c7e 100644 --- a/plotly/graph_objects/pie/legendgrouptitle/_font.py +++ b/plotly/graph_objects/pie/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/pie/title/_font.py b/plotly/graph_objects/pie/title/_font.py index 80b50af819..f47d1c5299 100644 --- a/plotly/graph_objects/pie/title/_font.py +++ b/plotly/graph_objects/pie/title/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/_link.py b/plotly/graph_objects/sankey/_link.py index ccb07f0181..0c8358fd07 100644 --- a/plotly/graph_objects/sankey/_link.py +++ b/plotly/graph_objects/sankey/_link.py @@ -84,8 +84,9 @@ def colorscales(self): """ The 'colorscales' property is a tuple of instances of Colorscale that may be specified as: - - A list or tuple of instances of plotly.graph_objects.sankey.link.Colorscale - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.sankey.link.Colorscale + - A list or tuple of dicts of string/value properties that will be passed to the Colorscale constructor Returns diff --git a/plotly/graph_objects/sankey/_textfont.py b/plotly/graph_objects/sankey/_textfont.py index 3d3ca43a41..01abf38b21 100644 --- a/plotly/graph_objects/sankey/_textfont.py +++ b/plotly/graph_objects/sankey/_textfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/sankey/hoverlabel/_font.py b/plotly/graph_objects/sankey/hoverlabel/_font.py index 054c0861fa..e8b269de56 100644 --- a/plotly/graph_objects/sankey/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/legendgrouptitle/_font.py b/plotly/graph_objects/sankey/legendgrouptitle/_font.py index d593c0b7ba..a8a9dd3825 100644 --- a/plotly/graph_objects/sankey/legendgrouptitle/_font.py +++ b/plotly/graph_objects/sankey/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/sankey/link/_colorscale.py b/plotly/graph_objects/sankey/link/_colorscale.py index 1c1f36a5ea..ee12520c3d 100644 --- a/plotly/graph_objects/sankey/link/_colorscale.py +++ b/plotly/graph_objects/sankey/link/_colorscale.py @@ -64,30 +64,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/sankey/link/hoverlabel/_font.py b/plotly/graph_objects/sankey/link/hoverlabel/_font.py index 0dc26f667e..75458b2300 100644 --- a/plotly/graph_objects/sankey/link/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/link/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/sankey/node/hoverlabel/_font.py b/plotly/graph_objects/sankey/node/hoverlabel/_font.py index 9e3ce8873c..929cb104ae 100644 --- a/plotly/graph_objects/sankey/node/hoverlabel/_font.py +++ b/plotly/graph_objects/sankey/node/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/_fillgradient.py b/plotly/graph_objects/scatter/_fillgradient.py index 28e31c0439..3f1d203dfd 100644 --- a/plotly/graph_objects/scatter/_fillgradient.py +++ b/plotly/graph_objects/scatter/_fillgradient.py @@ -21,30 +21,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scatter/_marker.py b/plotly/graph_objects/scatter/_marker.py index d024adbe1e..098377dfdd 100644 --- a/plotly/graph_objects/scatter/_marker.py +++ b/plotly/graph_objects/scatter/_marker.py @@ -304,30 +304,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scatter/_textfont.py b/plotly/graph_objects/scatter/_textfont.py index 46701a52ef..d27e097913 100644 --- a/plotly/graph_objects/scatter/_textfont.py +++ b/plotly/graph_objects/scatter/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/hoverlabel/_font.py b/plotly/graph_objects/scatter/hoverlabel/_font.py index 0d7dc0dabd..9d6638a4f2 100644 --- a/plotly/graph_objects/scatter/hoverlabel/_font.py +++ b/plotly/graph_objects/scatter/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scatter/legendgrouptitle/_font.py b/plotly/graph_objects/scatter/legendgrouptitle/_font.py index 5effd01b70..7c322c4224 100644 --- a/plotly/graph_objects/scatter/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatter/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatter/marker/_colorbar.py b/plotly/graph_objects/scatter/marker/_colorbar.py index ee8a7c6256..07d4e361be 100644 --- a/plotly/graph_objects/scatter/marker/_colorbar.py +++ b/plotly/graph_objects/scatter/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.scatter.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.scatter.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/scatter/marker/_line.py b/plotly/graph_objects/scatter/marker/_line.py index fe7aba6c4d..3f7514dfc4 100644 --- a/plotly/graph_objects/scatter/marker/_line.py +++ b/plotly/graph_objects/scatter/marker/_line.py @@ -209,30 +209,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py index b438811705..8a2d3073a7 100644 --- a/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatter/marker/colorbar/title/_font.py b/plotly/graph_objects/scatter/marker/colorbar/title/_font.py index 61c87bf668..3f21e27350 100644 --- a/plotly/graph_objects/scatter/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatter3d/_line.py b/plotly/graph_objects/scatter3d/_line.py index 7e5d07db8a..c3920d69ee 100644 --- a/plotly/graph_objects/scatter3d/_line.py +++ b/plotly/graph_objects/scatter3d/_line.py @@ -227,30 +227,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scatter3d/_marker.py b/plotly/graph_objects/scatter3d/_marker.py index ad434a1eaf..b621477f36 100644 --- a/plotly/graph_objects/scatter3d/_marker.py +++ b/plotly/graph_objects/scatter3d/_marker.py @@ -235,30 +235,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scatter3d/hoverlabel/_font.py b/plotly/graph_objects/scatter3d/hoverlabel/_font.py index 563695038e..cf24a63795 100644 --- a/plotly/graph_objects/scatter3d/hoverlabel/_font.py +++ b/plotly/graph_objects/scatter3d/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py b/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py index a0895677e9..200a4db17d 100644 --- a/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatter3d/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatter3d/line/_colorbar.py b/plotly/graph_objects/scatter3d/line/_colorbar.py index de22d71a82..4bcca42bd3 100644 --- a/plotly/graph_objects/scatter3d/line/_colorbar.py +++ b/plotly/graph_objects/scatter3d/line/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.scatter3d.line.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.scatter3d.line.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py b/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py index 698b86005f..9d70bbb820 100644 --- a/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter3d/line/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py b/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py index 7337632067..dc9240f4ba 100644 --- a/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter3d/line/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatter3d/marker/_colorbar.py b/plotly/graph_objects/scatter3d/marker/_colorbar.py index 585310e192..6c5a04d5af 100644 --- a/plotly/graph_objects/scatter3d/marker/_colorbar.py +++ b/plotly/graph_objects/scatter3d/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.scatter3d.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.scatter3d.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/scatter3d/marker/_line.py b/plotly/graph_objects/scatter3d/marker/_line.py index a6a7a203fe..819323a02e 100644 --- a/plotly/graph_objects/scatter3d/marker/_line.py +++ b/plotly/graph_objects/scatter3d/marker/_line.py @@ -208,30 +208,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py index 2257bbd8c8..75838d9b00 100644 --- a/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatter3d/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py b/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py index 06b95425cb..4d16ae80e9 100644 --- a/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatter3d/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattercarpet/_marker.py b/plotly/graph_objects/scattercarpet/_marker.py index e4d4c97b6f..a18a5ccd29 100644 --- a/plotly/graph_objects/scattercarpet/_marker.py +++ b/plotly/graph_objects/scattercarpet/_marker.py @@ -304,30 +304,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scattercarpet/_textfont.py b/plotly/graph_objects/scattercarpet/_textfont.py index 6d79eb8321..93ad90f3e0 100644 --- a/plotly/graph_objects/scattercarpet/_textfont.py +++ b/plotly/graph_objects/scattercarpet/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scattercarpet/hoverlabel/_font.py b/plotly/graph_objects/scattercarpet/hoverlabel/_font.py index 1912d6bdb1..4bbc03c520 100644 --- a/plotly/graph_objects/scattercarpet/hoverlabel/_font.py +++ b/plotly/graph_objects/scattercarpet/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py b/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py index 929de6f81f..e8f9b312f9 100644 --- a/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattercarpet/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattercarpet/marker/_colorbar.py b/plotly/graph_objects/scattercarpet/marker/_colorbar.py index 81b2e5bbbc..a2015cca14 100644 --- a/plotly/graph_objects/scattercarpet/marker/_colorbar.py +++ b/plotly/graph_objects/scattercarpet/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.scattercarpet.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.scattercarpet.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/scattercarpet/marker/_line.py b/plotly/graph_objects/scattercarpet/marker/_line.py index b5371841d0..b3cb3a5701 100644 --- a/plotly/graph_objects/scattercarpet/marker/_line.py +++ b/plotly/graph_objects/scattercarpet/marker/_line.py @@ -209,30 +209,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py index 24b54515ea..dfa6151d26 100644 --- a/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattercarpet/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py b/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py index c7739560d6..584986e68e 100644 --- a/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattercarpet/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattergeo/_marker.py b/plotly/graph_objects/scattergeo/_marker.py index e014cbff12..af4396e713 100644 --- a/plotly/graph_objects/scattergeo/_marker.py +++ b/plotly/graph_objects/scattergeo/_marker.py @@ -305,30 +305,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scattergeo/_textfont.py b/plotly/graph_objects/scattergeo/_textfont.py index afda75ab61..6d2afd96ac 100644 --- a/plotly/graph_objects/scattergeo/_textfont.py +++ b/plotly/graph_objects/scattergeo/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scattergeo/hoverlabel/_font.py b/plotly/graph_objects/scattergeo/hoverlabel/_font.py index ba0da9dc10..a90ca37b4d 100644 --- a/plotly/graph_objects/scattergeo/hoverlabel/_font.py +++ b/plotly/graph_objects/scattergeo/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py b/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py index 6c0ffaef75..a55a8a5879 100644 --- a/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattergeo/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattergeo/marker/_colorbar.py b/plotly/graph_objects/scattergeo/marker/_colorbar.py index 9bf5ce7e79..a12ab5cb6e 100644 --- a/plotly/graph_objects/scattergeo/marker/_colorbar.py +++ b/plotly/graph_objects/scattergeo/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.scattergeo.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.scattergeo.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/scattergeo/marker/_line.py b/plotly/graph_objects/scattergeo/marker/_line.py index 162fb156e3..0a547e8c08 100644 --- a/plotly/graph_objects/scattergeo/marker/_line.py +++ b/plotly/graph_objects/scattergeo/marker/_line.py @@ -209,30 +209,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py index 146e095af6..d9b16ac7b2 100644 --- a/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattergeo/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py b/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py index e933200bbb..8e510897de 100644 --- a/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattergeo/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattergl/_marker.py b/plotly/graph_objects/scattergl/_marker.py index e8ea55c424..81bd856aaa 100644 --- a/plotly/graph_objects/scattergl/_marker.py +++ b/plotly/graph_objects/scattergl/_marker.py @@ -276,30 +276,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scattergl/hoverlabel/_font.py b/plotly/graph_objects/scattergl/hoverlabel/_font.py index b43c45e771..51dc463a12 100644 --- a/plotly/graph_objects/scattergl/hoverlabel/_font.py +++ b/plotly/graph_objects/scattergl/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scattergl/legendgrouptitle/_font.py b/plotly/graph_objects/scattergl/legendgrouptitle/_font.py index a65bcda72a..fcdf13a16e 100644 --- a/plotly/graph_objects/scattergl/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattergl/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattergl/marker/_colorbar.py b/plotly/graph_objects/scattergl/marker/_colorbar.py index 4f4adb2739..94b2e2fdbf 100644 --- a/plotly/graph_objects/scattergl/marker/_colorbar.py +++ b/plotly/graph_objects/scattergl/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.scattergl.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.scattergl.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/scattergl/marker/_line.py b/plotly/graph_objects/scattergl/marker/_line.py index a6b7c120b4..35cb6f4b0d 100644 --- a/plotly/graph_objects/scattergl/marker/_line.py +++ b/plotly/graph_objects/scattergl/marker/_line.py @@ -209,30 +209,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py index 5059a0d9cc..b005b38bd6 100644 --- a/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattergl/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py b/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py index f2c621098d..e79d9c077f 100644 --- a/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattergl/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattermap/_marker.py b/plotly/graph_objects/scattermap/_marker.py index 96066e70d0..7a0d81a62d 100644 --- a/plotly/graph_objects/scattermap/_marker.py +++ b/plotly/graph_objects/scattermap/_marker.py @@ -298,30 +298,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scattermap/hoverlabel/_font.py b/plotly/graph_objects/scattermap/hoverlabel/_font.py index 432aa10064..dda5fb7326 100644 --- a/plotly/graph_objects/scattermap/hoverlabel/_font.py +++ b/plotly/graph_objects/scattermap/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scattermap/legendgrouptitle/_font.py b/plotly/graph_objects/scattermap/legendgrouptitle/_font.py index bc7bf76cb7..062f69edcd 100644 --- a/plotly/graph_objects/scattermap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattermap/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattermap/marker/_colorbar.py b/plotly/graph_objects/scattermap/marker/_colorbar.py index 32beabb919..c711f7c334 100644 --- a/plotly/graph_objects/scattermap/marker/_colorbar.py +++ b/plotly/graph_objects/scattermap/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.scattermap.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.scattermap.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py index 31bf2b0b0d..012292374b 100644 --- a/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattermap/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py b/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py index cee3e234a3..65b9add0fe 100644 --- a/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattermap/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattermapbox/_marker.py b/plotly/graph_objects/scattermapbox/_marker.py index b04903c85b..e8c388cafd 100644 --- a/plotly/graph_objects/scattermapbox/_marker.py +++ b/plotly/graph_objects/scattermapbox/_marker.py @@ -298,30 +298,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scattermapbox/hoverlabel/_font.py b/plotly/graph_objects/scattermapbox/hoverlabel/_font.py index 5ccb5c862d..394599c1de 100644 --- a/plotly/graph_objects/scattermapbox/hoverlabel/_font.py +++ b/plotly/graph_objects/scattermapbox/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py b/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py index 7ffdb40371..55e9074f1b 100644 --- a/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattermapbox/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattermapbox/marker/_colorbar.py b/plotly/graph_objects/scattermapbox/marker/_colorbar.py index 913d1aedc3..89172aaeab 100644 --- a/plotly/graph_objects/scattermapbox/marker/_colorbar.py +++ b/plotly/graph_objects/scattermapbox/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.scattermapbox.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.scattermapbox.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py index 2e965c384c..d717fe5281 100644 --- a/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattermapbox/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py b/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py index b7b13e2955..74e63c61ed 100644 --- a/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattermapbox/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatterpolar/_marker.py b/plotly/graph_objects/scatterpolar/_marker.py index b21da28229..46e5ed43ac 100644 --- a/plotly/graph_objects/scatterpolar/_marker.py +++ b/plotly/graph_objects/scatterpolar/_marker.py @@ -304,30 +304,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scatterpolar/_textfont.py b/plotly/graph_objects/scatterpolar/_textfont.py index 35f20322ba..0dba5ca48e 100644 --- a/plotly/graph_objects/scatterpolar/_textfont.py +++ b/plotly/graph_objects/scatterpolar/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolar/hoverlabel/_font.py b/plotly/graph_objects/scatterpolar/hoverlabel/_font.py index 4d69d0b66c..ee4c886915 100644 --- a/plotly/graph_objects/scatterpolar/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterpolar/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py b/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py index ba7a6e8524..8530fba888 100644 --- a/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterpolar/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatterpolar/marker/_colorbar.py b/plotly/graph_objects/scatterpolar/marker/_colorbar.py index ebfa6fa887..7cc4869316 100644 --- a/plotly/graph_objects/scatterpolar/marker/_colorbar.py +++ b/plotly/graph_objects/scatterpolar/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.scatterpolar.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.scatterpolar.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/scatterpolar/marker/_line.py b/plotly/graph_objects/scatterpolar/marker/_line.py index 574d185fef..43d4f55fba 100644 --- a/plotly/graph_objects/scatterpolar/marker/_line.py +++ b/plotly/graph_objects/scatterpolar/marker/_line.py @@ -209,30 +209,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py index d51a4e71f8..919a0643d0 100644 --- a/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterpolar/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py index ae63555ddd..52e6ad7a6a 100644 --- a/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterpolar/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatterpolargl/_marker.py b/plotly/graph_objects/scatterpolargl/_marker.py index d90f39da0b..a7e0257ff3 100644 --- a/plotly/graph_objects/scatterpolargl/_marker.py +++ b/plotly/graph_objects/scatterpolargl/_marker.py @@ -276,30 +276,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py b/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py index 2a8a084df5..b0ff0137fd 100644 --- a/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterpolargl/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py b/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py index 51ae1363f3..d8e0791be1 100644 --- a/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterpolargl/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatterpolargl/marker/_colorbar.py b/plotly/graph_objects/scatterpolargl/marker/_colorbar.py index aa81ca5730..df19268c8d 100644 --- a/plotly/graph_objects/scatterpolargl/marker/_colorbar.py +++ b/plotly/graph_objects/scatterpolargl/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.scatterpolargl.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.scatterpolargl.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/scatterpolargl/marker/_line.py b/plotly/graph_objects/scatterpolargl/marker/_line.py index 01c565433d..2032bb0017 100644 --- a/plotly/graph_objects/scatterpolargl/marker/_line.py +++ b/plotly/graph_objects/scatterpolargl/marker/_line.py @@ -209,30 +209,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py index bdc8d5e4d9..3af628c1f1 100644 --- a/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterpolargl/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py index c848011406..61061e8ce2 100644 --- a/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterpolargl/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattersmith/_marker.py b/plotly/graph_objects/scattersmith/_marker.py index e0810e3e54..2f2056b5a0 100644 --- a/plotly/graph_objects/scattersmith/_marker.py +++ b/plotly/graph_objects/scattersmith/_marker.py @@ -304,30 +304,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scattersmith/_textfont.py b/plotly/graph_objects/scattersmith/_textfont.py index ef340dc2e5..fa30ad5948 100644 --- a/plotly/graph_objects/scattersmith/_textfont.py +++ b/plotly/graph_objects/scattersmith/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scattersmith/hoverlabel/_font.py b/plotly/graph_objects/scattersmith/hoverlabel/_font.py index 032017fb54..5ec7f40782 100644 --- a/plotly/graph_objects/scattersmith/hoverlabel/_font.py +++ b/plotly/graph_objects/scattersmith/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py b/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py index 6c7fe357b2..a7456e3e9b 100644 --- a/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scattersmith/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattersmith/marker/_colorbar.py b/plotly/graph_objects/scattersmith/marker/_colorbar.py index 0dcfa7a73d..999339523d 100644 --- a/plotly/graph_objects/scattersmith/marker/_colorbar.py +++ b/plotly/graph_objects/scattersmith/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.scattersmith.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.scattersmith.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/scattersmith/marker/_line.py b/plotly/graph_objects/scattersmith/marker/_line.py index 751d6ba7e9..8aaf3ad3e6 100644 --- a/plotly/graph_objects/scattersmith/marker/_line.py +++ b/plotly/graph_objects/scattersmith/marker/_line.py @@ -209,30 +209,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py b/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py index 5dae93b09b..5f95ea3abd 100644 --- a/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scattersmith/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py b/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py index e339602bd2..ad56c77928 100644 --- a/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scattersmith/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatterternary/_marker.py b/plotly/graph_objects/scatterternary/_marker.py index ff134db8e8..a766e298fb 100644 --- a/plotly/graph_objects/scatterternary/_marker.py +++ b/plotly/graph_objects/scatterternary/_marker.py @@ -304,30 +304,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scatterternary/_textfont.py b/plotly/graph_objects/scatterternary/_textfont.py index f332873c43..54492a14c5 100644 --- a/plotly/graph_objects/scatterternary/_textfont.py +++ b/plotly/graph_objects/scatterternary/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scatterternary/hoverlabel/_font.py b/plotly/graph_objects/scatterternary/hoverlabel/_font.py index 8cec13912c..5dd4e15402 100644 --- a/plotly/graph_objects/scatterternary/hoverlabel/_font.py +++ b/plotly/graph_objects/scatterternary/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py b/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py index 678377e12b..f43a152e2b 100644 --- a/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py +++ b/plotly/graph_objects/scatterternary/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatterternary/marker/_colorbar.py b/plotly/graph_objects/scatterternary/marker/_colorbar.py index c05b49ccc8..21e18194bb 100644 --- a/plotly/graph_objects/scatterternary/marker/_colorbar.py +++ b/plotly/graph_objects/scatterternary/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.scatterternary.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.scatterternary.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/scatterternary/marker/_line.py b/plotly/graph_objects/scatterternary/marker/_line.py index de054c7ed4..ec569f9bb8 100644 --- a/plotly/graph_objects/scatterternary/marker/_line.py +++ b/plotly/graph_objects/scatterternary/marker/_line.py @@ -209,30 +209,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py b/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py index 254542026e..2584246f6f 100644 --- a/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/scatterternary/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py b/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py index 0c474cd921..f41eced3c8 100644 --- a/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/scatterternary/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/splom/_marker.py b/plotly/graph_objects/splom/_marker.py index 698b8ee7ee..9a1e115da4 100644 --- a/plotly/graph_objects/splom/_marker.py +++ b/plotly/graph_objects/splom/_marker.py @@ -276,30 +276,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/splom/hoverlabel/_font.py b/plotly/graph_objects/splom/hoverlabel/_font.py index 89ab5d9e74..fba77bf842 100644 --- a/plotly/graph_objects/splom/hoverlabel/_font.py +++ b/plotly/graph_objects/splom/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/splom/legendgrouptitle/_font.py b/plotly/graph_objects/splom/legendgrouptitle/_font.py index 2ae18181f7..07976f4755 100644 --- a/plotly/graph_objects/splom/legendgrouptitle/_font.py +++ b/plotly/graph_objects/splom/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/splom/marker/_colorbar.py b/plotly/graph_objects/splom/marker/_colorbar.py index 2e5175cfd7..5e82255947 100644 --- a/plotly/graph_objects/splom/marker/_colorbar.py +++ b/plotly/graph_objects/splom/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.splom.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.splom.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/splom/marker/_line.py b/plotly/graph_objects/splom/marker/_line.py index 66a8c5d18c..a93fc6c76b 100644 --- a/plotly/graph_objects/splom/marker/_line.py +++ b/plotly/graph_objects/splom/marker/_line.py @@ -209,30 +209,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/splom/marker/colorbar/_tickfont.py b/plotly/graph_objects/splom/marker/colorbar/_tickfont.py index 58c7500a59..46d27a5442 100644 --- a/plotly/graph_objects/splom/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/splom/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/splom/marker/colorbar/title/_font.py b/plotly/graph_objects/splom/marker/colorbar/title/_font.py index 6cbe447d8f..fd57d9cb14 100644 --- a/plotly/graph_objects/splom/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/splom/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/streamtube/_colorbar.py b/plotly/graph_objects/streamtube/_colorbar.py index 764b6743c1..3800e8aa35 100644 --- a/plotly/graph_objects/streamtube/_colorbar.py +++ b/plotly/graph_objects/streamtube/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.streamtube.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.streamtube.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/streamtube/colorbar/_tickfont.py b/plotly/graph_objects/streamtube/colorbar/_tickfont.py index b4b90f6bdd..471bbf8e45 100644 --- a/plotly/graph_objects/streamtube/colorbar/_tickfont.py +++ b/plotly/graph_objects/streamtube/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/streamtube/colorbar/title/_font.py b/plotly/graph_objects/streamtube/colorbar/title/_font.py index 589753c650..707710916a 100644 --- a/plotly/graph_objects/streamtube/colorbar/title/_font.py +++ b/plotly/graph_objects/streamtube/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/streamtube/hoverlabel/_font.py b/plotly/graph_objects/streamtube/hoverlabel/_font.py index 54da3fb9cc..cd993205fc 100644 --- a/plotly/graph_objects/streamtube/hoverlabel/_font.py +++ b/plotly/graph_objects/streamtube/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/streamtube/legendgrouptitle/_font.py b/plotly/graph_objects/streamtube/legendgrouptitle/_font.py index 96246284c3..4cb1b592f8 100644 --- a/plotly/graph_objects/streamtube/legendgrouptitle/_font.py +++ b/plotly/graph_objects/streamtube/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/sunburst/_insidetextfont.py b/plotly/graph_objects/sunburst/_insidetextfont.py index b0c91cbfef..22e704fb9c 100644 --- a/plotly/graph_objects/sunburst/_insidetextfont.py +++ b/plotly/graph_objects/sunburst/_insidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/_marker.py b/plotly/graph_objects/sunburst/_marker.py index eb89b6172b..0704c1a32b 100644 --- a/plotly/graph_objects/sunburst/_marker.py +++ b/plotly/graph_objects/sunburst/_marker.py @@ -216,30 +216,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/sunburst/_outsidetextfont.py b/plotly/graph_objects/sunburst/_outsidetextfont.py index e834f0676f..68ae15379a 100644 --- a/plotly/graph_objects/sunburst/_outsidetextfont.py +++ b/plotly/graph_objects/sunburst/_outsidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/_textfont.py b/plotly/graph_objects/sunburst/_textfont.py index fdfcba593e..12d6295f82 100644 --- a/plotly/graph_objects/sunburst/_textfont.py +++ b/plotly/graph_objects/sunburst/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/hoverlabel/_font.py b/plotly/graph_objects/sunburst/hoverlabel/_font.py index b57a0dd4c8..9f8306cd39 100644 --- a/plotly/graph_objects/sunburst/hoverlabel/_font.py +++ b/plotly/graph_objects/sunburst/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/sunburst/legendgrouptitle/_font.py b/plotly/graph_objects/sunburst/legendgrouptitle/_font.py index 1829633b26..113907c58a 100644 --- a/plotly/graph_objects/sunburst/legendgrouptitle/_font.py +++ b/plotly/graph_objects/sunburst/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/sunburst/marker/_colorbar.py b/plotly/graph_objects/sunburst/marker/_colorbar.py index 5dd5fc8547..d340c80826 100644 --- a/plotly/graph_objects/sunburst/marker/_colorbar.py +++ b/plotly/graph_objects/sunburst/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.sunburst.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.sunburst.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py b/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py index b0ce15a8f8..cc6013debc 100644 --- a/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/sunburst/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py b/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py index d20354eacc..9ee492fe03 100644 --- a/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/sunburst/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/surface/_colorbar.py b/plotly/graph_objects/surface/_colorbar.py index 87b217f3e5..5d825eb640 100644 --- a/plotly/graph_objects/surface/_colorbar.py +++ b/plotly/graph_objects/surface/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.surface.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.surface.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/surface/colorbar/_tickfont.py b/plotly/graph_objects/surface/colorbar/_tickfont.py index f326e64ee4..46a7f159c5 100644 --- a/plotly/graph_objects/surface/colorbar/_tickfont.py +++ b/plotly/graph_objects/surface/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/surface/colorbar/title/_font.py b/plotly/graph_objects/surface/colorbar/title/_font.py index 758dcc831d..b8e27dc512 100644 --- a/plotly/graph_objects/surface/colorbar/title/_font.py +++ b/plotly/graph_objects/surface/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/surface/hoverlabel/_font.py b/plotly/graph_objects/surface/hoverlabel/_font.py index 05716a7fce..764c3fcac9 100644 --- a/plotly/graph_objects/surface/hoverlabel/_font.py +++ b/plotly/graph_objects/surface/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/surface/legendgrouptitle/_font.py b/plotly/graph_objects/surface/legendgrouptitle/_font.py index 5874d4e422..ab8e265a92 100644 --- a/plotly/graph_objects/surface/legendgrouptitle/_font.py +++ b/plotly/graph_objects/surface/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/table/cells/_font.py b/plotly/graph_objects/table/cells/_font.py index 52cad09fe6..e189e9634d 100644 --- a/plotly/graph_objects/table/cells/_font.py +++ b/plotly/graph_objects/table/cells/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/table/header/_font.py b/plotly/graph_objects/table/header/_font.py index fe225fbe07..dc6fcf9213 100644 --- a/plotly/graph_objects/table/header/_font.py +++ b/plotly/graph_objects/table/header/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/table/hoverlabel/_font.py b/plotly/graph_objects/table/hoverlabel/_font.py index 6fbf9b8261..3611070b17 100644 --- a/plotly/graph_objects/table/hoverlabel/_font.py +++ b/plotly/graph_objects/table/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/table/legendgrouptitle/_font.py b/plotly/graph_objects/table/legendgrouptitle/_font.py index 7a76708036..74831ac429 100644 --- a/plotly/graph_objects/table/legendgrouptitle/_font.py +++ b/plotly/graph_objects/table/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/treemap/_insidetextfont.py b/plotly/graph_objects/treemap/_insidetextfont.py index 8d610270fb..fceb33bb7e 100644 --- a/plotly/graph_objects/treemap/_insidetextfont.py +++ b/plotly/graph_objects/treemap/_insidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/_marker.py b/plotly/graph_objects/treemap/_marker.py index 3c9499a2d2..dc8232b64a 100644 --- a/plotly/graph_objects/treemap/_marker.py +++ b/plotly/graph_objects/treemap/_marker.py @@ -219,30 +219,31 @@ def colorscale(self): The 'colorscale' property is a colorscale and may be specified as: - - A list of colors that will be spaced evenly to create the colorscale. + + - A list of colors that will be spaced evenly to create the colorscale. Many predefined colorscale lists are included in the sequential, diverging, and cyclical modules in the plotly.colors package. - - A list of 2-element lists where the first element is the + - A list of 2-element lists where the first element is the normalized color level value (starting at 0 and ending at 1), and the second item is a valid color string. (e.g. [[0, 'green'], [0.5, 'red'], [1.0, 'rgb(0, 0, 255)']]) - - One of the following named colorscales: - ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', - 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', - 'brwnyl', 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', - 'darkmint', 'deep', 'delta', 'dense', 'earth', 'edge', 'electric', - 'emrld', 'fall', 'geyser', 'gnbu', 'gray', 'greens', 'greys', - 'haline', 'hot', 'hsv', 'ice', 'icefire', 'inferno', 'jet', - 'magenta', 'magma', 'matter', 'mint', 'mrybm', 'mygbm', 'oranges', - 'orrd', 'oryel', 'oxy', 'peach', 'phase', 'picnic', 'pinkyl', - 'piyg', 'plasma', 'plotly3', 'portland', 'prgn', 'pubu', 'pubugn', - 'puor', 'purd', 'purp', 'purples', 'purpor', 'rainbow', 'rdbu', - 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', 'solar', - 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', - 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', - 'turbo', 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', - 'ylorrd']. - Appending '_r' to a named colorscale reverses it. + - One of the following named colorscales: + + ['aggrnyl', 'agsunset', 'algae', 'amp', 'armyrose', 'balance', + 'blackbody', 'bluered', 'blues', 'blugrn', 'bluyl', 'brbg', 'brwnyl', + 'bugn', 'bupu', 'burg', 'burgyl', 'cividis', 'curl', 'darkmint', 'deep', + 'delta', 'dense', 'earth', 'edge', 'electric', 'emrld', 'fall', + 'geyser', 'gnbu', 'gray', 'greens', 'greys', 'haline', 'hot', 'hsv', + 'ice', 'icefire', 'inferno', 'jet', 'magenta', 'magma', 'matter', + 'mint', 'mrybm', 'mygbm', 'oranges', 'orrd', 'oryel', 'oxy', 'peach', + 'phase', 'picnic', 'pinkyl', 'piyg', 'plasma', 'plotly3', 'portland', + 'prgn', 'pubu', 'pubugn', 'puor', 'purd', 'purp', 'purples', 'purpor', + 'rainbow', 'rdbu', 'rdgy', 'rdpu', 'rdylbu', 'rdylgn', 'redor', 'reds', + 'solar', 'spectral', 'speed', 'sunset', 'sunsetdark', 'teal', 'tealgrn', + 'tealrose', 'tempo', 'temps', 'thermal', 'tropic', 'turbid', 'turbo', + 'twilight', 'viridis', 'ylgn', 'ylgnbu', 'ylorbr', 'ylorrd']. + + Appending '_r' to a named colorscale reverses it. Returns ------- diff --git a/plotly/graph_objects/treemap/_outsidetextfont.py b/plotly/graph_objects/treemap/_outsidetextfont.py index 58f9caf3f4..10aa990f43 100644 --- a/plotly/graph_objects/treemap/_outsidetextfont.py +++ b/plotly/graph_objects/treemap/_outsidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/_textfont.py b/plotly/graph_objects/treemap/_textfont.py index 8921148219..36ce6ed86c 100644 --- a/plotly/graph_objects/treemap/_textfont.py +++ b/plotly/graph_objects/treemap/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/_tiling.py b/plotly/graph_objects/treemap/_tiling.py index 5ef9c48598..04180f0eee 100644 --- a/plotly/graph_objects/treemap/_tiling.py +++ b/plotly/graph_objects/treemap/_tiling.py @@ -18,7 +18,8 @@ def flip(self): The 'flip' property is a flaglist and may be specified as a string containing: - - Any combination of ['x', 'y'] joined with '+' characters + + - Any combination of ['x', 'y'] joined with '+' characters (e.g. 'x+y') Returns diff --git a/plotly/graph_objects/treemap/hoverlabel/_font.py b/plotly/graph_objects/treemap/hoverlabel/_font.py index 5bcb9b3634..7d0a232519 100644 --- a/plotly/graph_objects/treemap/hoverlabel/_font.py +++ b/plotly/graph_objects/treemap/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/treemap/legendgrouptitle/_font.py b/plotly/graph_objects/treemap/legendgrouptitle/_font.py index 91e400ffa2..d949639456 100644 --- a/plotly/graph_objects/treemap/legendgrouptitle/_font.py +++ b/plotly/graph_objects/treemap/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/treemap/marker/_colorbar.py b/plotly/graph_objects/treemap/marker/_colorbar.py index dcf970cce7..8951c5c93b 100644 --- a/plotly/graph_objects/treemap/marker/_colorbar.py +++ b/plotly/graph_objects/treemap/marker/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.treemap.marker.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.treemap.marker.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py b/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py index 99324f5571..f04fbed57b 100644 --- a/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py +++ b/plotly/graph_objects/treemap/marker/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/treemap/marker/colorbar/title/_font.py b/plotly/graph_objects/treemap/marker/colorbar/title/_font.py index ed2bf91b0d..7e230bae38 100644 --- a/plotly/graph_objects/treemap/marker/colorbar/title/_font.py +++ b/plotly/graph_objects/treemap/marker/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/treemap/pathbar/_textfont.py b/plotly/graph_objects/treemap/pathbar/_textfont.py index c4bca22004..c873a56d46 100644 --- a/plotly/graph_objects/treemap/pathbar/_textfont.py +++ b/plotly/graph_objects/treemap/pathbar/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/violin/hoverlabel/_font.py b/plotly/graph_objects/violin/hoverlabel/_font.py index 6906c53b0d..d3516583ec 100644 --- a/plotly/graph_objects/violin/hoverlabel/_font.py +++ b/plotly/graph_objects/violin/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/violin/legendgrouptitle/_font.py b/plotly/graph_objects/violin/legendgrouptitle/_font.py index b7bf9815b3..3d9269f4b0 100644 --- a/plotly/graph_objects/violin/legendgrouptitle/_font.py +++ b/plotly/graph_objects/violin/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/volume/_colorbar.py b/plotly/graph_objects/volume/_colorbar.py index 0169a8794a..75abf6a7f7 100644 --- a/plotly/graph_objects/volume/_colorbar.py +++ b/plotly/graph_objects/volume/_colorbar.py @@ -635,8 +635,9 @@ def tickformatstops(self): """ The 'tickformatstops' property is a tuple of instances of Tickformatstop that may be specified as: - - A list or tuple of instances of plotly.graph_objects.volume.colorbar.Tickformatstop - - A list or tuple of dicts of string/value properties that + + - A list or tuple of instances of plotly.graph_objects.volume.colorbar.Tickformatstop + - A list or tuple of dicts of string/value properties that will be passed to the Tickformatstop constructor Returns diff --git a/plotly/graph_objects/volume/_surface.py b/plotly/graph_objects/volume/_surface.py index 70f8b59fd3..1d71e23510 100644 --- a/plotly/graph_objects/volume/_surface.py +++ b/plotly/graph_objects/volume/_surface.py @@ -67,7 +67,8 @@ def pattern(self): The 'pattern' property is a flaglist and may be specified as a string containing: - - Any combination of ['A', 'B', 'C', 'D', 'E'] joined with '+' characters + + - Any combination of ['A', 'B', 'C', 'D', 'E'] joined with '+' characters (e.g. 'A+B') OR exactly one of ['all', 'odd', 'even'] (e.g. 'even') diff --git a/plotly/graph_objects/volume/colorbar/_tickfont.py b/plotly/graph_objects/volume/colorbar/_tickfont.py index f2111732a4..63556883d3 100644 --- a/plotly/graph_objects/volume/colorbar/_tickfont.py +++ b/plotly/graph_objects/volume/colorbar/_tickfont.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/volume/colorbar/title/_font.py b/plotly/graph_objects/volume/colorbar/title/_font.py index 44ba7cb8a9..2efd91f00f 100644 --- a/plotly/graph_objects/volume/colorbar/title/_font.py +++ b/plotly/graph_objects/volume/colorbar/title/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/volume/hoverlabel/_font.py b/plotly/graph_objects/volume/hoverlabel/_font.py index 1232c768b4..b0391cbf8f 100644 --- a/plotly/graph_objects/volume/hoverlabel/_font.py +++ b/plotly/graph_objects/volume/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/volume/legendgrouptitle/_font.py b/plotly/graph_objects/volume/legendgrouptitle/_font.py index c126c8dd4e..fcc633955a 100644 --- a/plotly/graph_objects/volume/legendgrouptitle/_font.py +++ b/plotly/graph_objects/volume/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') diff --git a/plotly/graph_objects/waterfall/_insidetextfont.py b/plotly/graph_objects/waterfall/_insidetextfont.py index 236761d956..26aa6f5775 100644 --- a/plotly/graph_objects/waterfall/_insidetextfont.py +++ b/plotly/graph_objects/waterfall/_insidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/_outsidetextfont.py b/plotly/graph_objects/waterfall/_outsidetextfont.py index 71033205a1..5bcd57790b 100644 --- a/plotly/graph_objects/waterfall/_outsidetextfont.py +++ b/plotly/graph_objects/waterfall/_outsidetextfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/_textfont.py b/plotly/graph_objects/waterfall/_textfont.py index 001d2feb09..f73369e952 100644 --- a/plotly/graph_objects/waterfall/_textfont.py +++ b/plotly/graph_objects/waterfall/_textfont.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/hoverlabel/_font.py b/plotly/graph_objects/waterfall/hoverlabel/_font.py index 04ff60314d..52bc519917 100644 --- a/plotly/graph_objects/waterfall/hoverlabel/_font.py +++ b/plotly/graph_objects/waterfall/hoverlabel/_font.py @@ -121,10 +121,11 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') - - A list or array of the above + - A list or array of the above Returns ------- diff --git a/plotly/graph_objects/waterfall/legendgrouptitle/_font.py b/plotly/graph_objects/waterfall/legendgrouptitle/_font.py index c61e64c711..b0e627bf7b 100644 --- a/plotly/graph_objects/waterfall/legendgrouptitle/_font.py +++ b/plotly/graph_objects/waterfall/legendgrouptitle/_font.py @@ -73,7 +73,8 @@ def lineposition(self): The 'lineposition' property is a flaglist and may be specified as a string containing: - - Any combination of ['under', 'over', 'through'] joined with '+' characters + + - Any combination of ['under', 'over', 'through'] joined with '+' characters (e.g. 'under+over') OR exactly one of ['none'] (e.g. 'none') From 6690116786476f8a16494c893850984200a9114f Mon Sep 17 00:00:00 2001 From: daexs Date: Tue, 19 Aug 2025 11:20:17 -0400 Subject: [PATCH 13/18] Fixed confusing indentation & some formatting --- plotly/express/_imshow.py | 6 ++--- plotly/io/_json.py | 55 +++++++++++++++++++++------------------ 2 files changed, 32 insertions(+), 29 deletions(-) diff --git a/plotly/express/_imshow.py b/plotly/express/_imshow.py index 83dee3e3dc..0f5e88fc4f 100644 --- a/plotly/express/_imshow.py +++ b/plotly/express/_imshow.py @@ -168,11 +168,11 @@ def imshow( The figure height in pixels. aspect : 'equal', 'auto', or None - - 'equal': Ensures an aspect ratio of 1 or pixels (square pixels) - - 'auto': The axes is kept fixed and the aspect ratio of pixels is + - 'equal': Ensures an aspect ratio of 1 or pixels (square pixels) + - 'auto': The axes is kept fixed and the aspect ratio of pixels is adjusted so that the data fit in the axes. In general, this will result in non-square pixels. - - if None, 'equal' is used for numpy arrays and 'auto' for xarrays + - if None, 'equal' is used for numpy arrays and 'auto' for xarrays (which have typically heterogeneous coordinates) contrast_rescaling : 'minmax', 'infer', or None diff --git a/plotly/io/_json.py b/plotly/io/_json.py index 157240a748..ea84393822 100644 --- a/plotly/io/_json.py +++ b/plotly/io/_json.py @@ -90,10 +90,11 @@ def to_json_plotly(plotly_object, pretty=False, engine=None): representation should be as compact as possible. engine: str (default None) - The JSON encoding engine to use. One of: - - "json" for an engine based on the built-in Python json module - - "orjson" for a faster engine that requires the orjson package - - "auto" for the "orjson" engine if available, otherwise "json" + The JSON encoding engine to use. One of:\n + - "json" for an engine based on the built-in Python json module + - "orjson" for a faster engine that requires the orjson package + - "auto" for the "orjson" engine if available, otherwise "json" + If not specified, the default engine is set to the current value of plotly.io.json.config.default_engine. @@ -193,10 +194,11 @@ def to_json(fig, validate=True, pretty=False, remove_uids=True, engine=None): True if trace UIDs should be omitted from the JSON representation engine: str (default None) - The JSON encoding engine to use. One of: - - "json" for an engine based on the built-in Python json module - - "orjson" for a faster engine that requires the orjson package - - "auto" for the "orjson" engine if available, otherwise "json" + The JSON encoding engine to use. One of:\n + - "json" for an engine based on the built-in Python json module + - "orjson" for a faster engine that requires the orjson package + - "auto" for the "orjson" engine if available, otherwise "json" + If not specified, the default engine is set to the current value of plotly.io.json.config.default_engine. @@ -244,10 +246,11 @@ def write_json(fig, file, validate=True, pretty=False, remove_uids=True, engine= True if trace UIDs should be omitted from the JSON representation engine: str (default None) - The JSON encoding engine to use. One of: - - "json" for an engine based on the built-in Python json module - - "orjson" for a faster engine that requires the orjson package - - "auto" for the "orjson" engine if available, otherwise "json" + The JSON encoding engine to use. One of:\n + - "json" for an engine based on the built-in Python json module + - "orjson" for a faster engine that requires the orjson package + - "auto" for the "orjson" engine if available, otherwise "json" + If not specified, the default engine is set to the current value of plotly.io.json.config.default_engine. Returns @@ -306,11 +309,11 @@ def from_json_plotly(value, engine=None): A JSON string or bytes object engine: str (default None) - The JSON decoding engine to use. One of: - - if "json", parse JSON using built in json module - - if "orjson", parse using the faster orjson module, requires the orjson + The JSON decoding engine to use. One of:\n + - if "json", parse JSON using built in json module + - if "orjson", parse using the faster orjson module, requires the orjson package - - if "auto" use orjson module if available, otherwise use the json module + - if "auto" use orjson module if available, otherwise use the json module If not specified, the default engine is set to the current value of plotly.io.json.config.default_engine. @@ -377,11 +380,11 @@ def from_json(value, output_type="Figure", skip_invalid=False, engine=None): True if invalid figure properties should be silently ignored. engine: str (default None) - The JSON decoding engine to use. One of: - - if "json", parse JSON using built in json module - - if "orjson", parse using the faster orjson module, requires the orjson + The JSON decoding engine to use. One of:\n + - if "json", parse JSON using built in json module + - if "orjson", parse using the faster orjson module, requires the orjson package - - if "auto" use orjson module if available, otherwise use the json module + - if "auto" use orjson module if available, otherwise use the json module If not specified, the default engine is set to the current value of plotly.io.json.config.default_engine. @@ -419,8 +422,8 @@ def read_json(file, output_type="Figure", skip_invalid=False, engine=None): Parameters ---------- file: str or readable - A string containing the path to a local file or a read-able Python - object (e.g. a pathlib.Path object or an open file descriptor) + A string containing the path to a local file or a read-able Python + object (e.g. a pathlib.Path object or an open file descriptor) output_type: type or str (default 'Figure') The output figure type or type name. @@ -431,11 +434,11 @@ def read_json(file, output_type="Figure", skip_invalid=False, engine=None): True if invalid figure properties should be silently ignored. engine: str (default None) - The JSON decoding engine to use. One of: - - if "json", parse JSON using built in json module - - if "orjson", parse using the faster orjson module, requires the orjson + The JSON decoding engine to use. One of:\n + - if "json", parse JSON using built in json module + - if "orjson", parse using the faster orjson module, requires the orjson package - - if "auto" use orjson module if available, otherwise use the json module + - if "auto" use orjson module if available, otherwise use the json module If not specified, the default engine is set to the current value of plotly.io.json.config.default_engine. From 4154910cebc2e7f90b4db9b1c1602ec05dd0c8bc Mon Sep 17 00:00:00 2001 From: daexs Date: Tue, 19 Aug 2025 16:32:49 -0400 Subject: [PATCH 14/18] Fixed formatting issues and consistency --- plotly/basedatatypes.py | 348 ++++++++++++++++++++-------------------- 1 file changed, 173 insertions(+), 175 deletions(-) diff --git a/plotly/basedatatypes.py b/plotly/basedatatypes.py index c5b3752f86..e67f7a0c05 100644 --- a/plotly/basedatatypes.py +++ b/plotly/basedatatypes.py @@ -871,7 +871,7 @@ def update(self, dict1=None, overwrite=False, **kwargs): ---------- dict1 : dict Dictionary of properties to be updated - overwrite: bool + overwrite : bool If True, overwrite existing properties. If False, apply updates to existing properties recursively, preserving existing properties that are not specified in the update operation. @@ -938,9 +938,9 @@ def pop(self, key, *args): Parameters ---------- - key: str + key : str Property name - dflt + dflt: The default value to return if key was not found in figure Returns @@ -1119,7 +1119,7 @@ def select_traces(self, selector=None, row=None, col=None, secondary_y=None): Parameters ---------- - selector: dict, function, int, str or None (default None) + selector : dict, function, int, str or None (default None) Dict to use as selection criteria. Traces will be selected if they contain properties corresponding to all of the dictionary's keys, with values that exactly match @@ -1130,12 +1130,12 @@ def select_traces(self, selector=None, row=None, col=None, secondary_y=None): will be in the selection. If an int N, the Nth trace matching row and col will be selected (N can be negative). If a string S, the selector is equivalent to dict(type=S). - row, col: int or None (default None) + row, col : int or None (default None) Subplot row and column index of traces to select. To select traces by row and column, the Figure must have been created using plotly.subplots.make_subplots. If None (the default), all traces are selected. - secondary_y: boolean or None (default None) + secondary_y : boolean or None (default None) * If True, only select traces associated with the secondary y-axis of the subplot. * If False, only select traces associated with the primary @@ -1281,7 +1281,7 @@ def for_each_trace(self, fn, selector=None, row=None, col=None, secondary_y=None ---------- fn: Function that inputs a single trace object. - selector: dict, function, int, str or None (default None) + selector : dict, function, int, str or None (default None) Dict to use as selection criteria. Traces will be selected if they contain properties corresponding to all of the dictionary's keys, with values that exactly match @@ -1292,12 +1292,12 @@ def for_each_trace(self, fn, selector=None, row=None, col=None, secondary_y=None will be in the selection. If an int N, the Nth trace matching row and col will be selected (N can be negative). If a string S, the selector is equivalent to dict(type=S). - row, col: int or None (default None) + row, col : int or None (default None) Subplot row and column index of traces to select. To select traces by row and column, the Figure must have been created using plotly.subplots.make_subplots. If None (the default), all traces are selected. - secondary_y: boolean or None (default None) + secondary_y : boolean or None (default None) * If True, only select traces associated with the secondary y-axis of the subplot. * If False, only select traces associated with the primary @@ -1337,10 +1337,10 @@ def update_traces( Parameters ---------- - patch: dict or None (default None) + patch : dict or None (default None) Dictionary of property updates to be applied to all traces that satisfy the selection criteria. - selector: dict, function, int, str or None (default None) + selector : dict, function, int, str or None (default None) Dict to use as selection criteria. Traces will be selected if they contain properties corresponding to all of the dictionary's keys, with values that exactly match @@ -1351,12 +1351,12 @@ def update_traces( will be in the selection. If an int N, the Nth trace matching row and col will be selected (N can be negative). If a string S, the selector is equivalent to dict(type=S). - row, col: int or None (default None) + row, col : int or None (default None) Subplot row and column index of traces to select. To select traces by row and column, the Figure must have been created using plotly.subplots.make_subplots. If None (the default), all traces are selected. - secondary_y: boolean or None (default None) + secondary_y : boolean or None (default None) * If True, only select traces associated with the secondary y-axis of the subplot. * If False, only select traces associated with the primary @@ -1368,14 +1368,14 @@ def update_traces( created using plotly.subplots.make_subplots. See the docstring for the specs argument to make_subplots for more info on creating subplots with secondary y-axes. - overwrite: bool + overwrite : bool If True, overwrite existing properties. If False, apply updates to existing properties recursively, preserving existing properties that are not specified in the update operation. **kwargs Additional property updates to apply to each selected trace. If - a property is specified in both patch and in **kwargs then the - one in **kwargs takes precedence. + a property is specified in both patch and in \*\*kwargs then the + one in \*\*kwargs takes precedence. Returns ------- @@ -1400,7 +1400,7 @@ def update_layout(self, dict1=None, overwrite=False, **kwargs): ---------- dict1 : dict Dictionary of properties to be updated - overwrite: bool + overwrite : bool If True, overwrite existing properties. If False, apply updates to existing properties recursively, preserving existing properties that are not specified in the update operation. @@ -1664,9 +1664,11 @@ def plotly_restyle(self, restyle_data, trace_indexes=None, **kwargs): example, the following command would be used to update the 'x' property of the first trace to the list [1, 2, 3] + ```python >>> import plotly.graph_objs as go >>> fig = go.Figure(go.Scatter(x=[2, 4, 6])) >>> fig.plotly_restyle({'x': [[1, 2, 3]]}, 0) + ``` trace_indexes : int or list of int Trace index, or list of trace indexes, that the restyle operation @@ -2030,7 +2032,7 @@ def add_trace( Parameters ---------- trace : BaseTraceType or dict - Either: + Either:\n - An instances of a trace classe from the plotly.graph_objects package (e.g plotly.graph_objects.Scatter, plotly.graph_objects.Bar) - or a dicts where: @@ -2051,10 +2053,10 @@ def add_trace( added. Only valid if figure was created using `plotly.tools.make_subplots`. If 'all', addresses all columns in the specified row(s). - secondary_y: boolean or None (default None) + secondary_y : boolean or None (default None) If True, associate this trace with the secondary y-axis of the subplot at the specified row and col. Only valid if all of the - following conditions are satisfied: + following conditions are satisfied:\n * The figure was created using `plotly.subplots.make_subplots`. * The row and col arguments are not None * The subplot at the specified row and col has type xy @@ -2168,11 +2170,11 @@ def add_traces( If a single integer is passed, all traces will be added to column number - secondary_ys: None or list[boolean] (default None) + secondary_ys : None or list[boolean] (default None) List of secondary_y booleans for traces to be added. See the docstring for `add_trace` for more info. - exclude_empty_subplots: boolean + exclude_empty_subplots : boolean If True, the trace will not be added to subplots that don't already have traces. @@ -2306,9 +2308,9 @@ def append_trace(self, trace, row, col): ---------- trace The data trace to be bound - row: int + row : int Subplot row index (see Figure.print_grid) - col: int + col : int Subplot column index (see Figure.print_grid) Examples @@ -2409,11 +2411,11 @@ def get_subplot(self, row, col, secondary_y=False): Parameters ---------- - row: int + row : int 1-based index of subplot row - col: int + col : int 1-based index of subplot column - secondary_y: bool + secondary_y : bool If True, select the subplot that consists of the x-axis and the secondary y-axis at the specified row/col. Only valid if the subplot at row/col is an 2D cartesian subplot that was created @@ -3134,43 +3136,43 @@ def batch_animate(self, duration=500, easing="cubic-in-out"): If equal to zero, updates are synchronous. easing : string The easing function used for the transition. - One of: - - linear - - quad - - cubic - - sin - - exp - - circle - - elastic - - back - - bounce - - linear-in - - quad-in - - cubic-in - - sin-in - - exp-in - - circle-in - - elastic-in - - back-in - - bounce-in - - linear-out - - quad-out - - cubic-out - - sin-out - - exp-out - - circle-out - - elastic-out - - back-out - - bounce-out - - linear-in-out - - quad-in-out - - cubic-in-out - - sin-in-out - - exp-in-out - - circle-in-out - - elastic-in-out - - back-in-out - - bounce-in-out + One of:\n + - linear + - quad + - cubic + - sin + - exp + - circle + - elastic + - back + - bounce + - linear-in + - quad-in + - cubic-in + - sin-in + - exp-in + - circle-in + - elastic-in + - back-in + - bounce-in + - linear-out + - quad-out + - cubic-out + - sin-out + - exp-out + - circle-out + - elastic-out + - back-out + - bounce-out + - linear-in-out + - quad-in-out + - cubic-in-out + - sin-in-out + - exp-in-out + - circle-in-out + - elastic-in-out + - back-in-out + - bounce-in-out Examples -------- @@ -3390,24 +3392,24 @@ def show(self, *args, **kwargs): Parameters ---------- - renderer: str or None (default None) + renderer : str or None (default None) A string containing the names of one or more registered renderers (separated by '+' characters) or None. If None, then the default renderers specified in plotly.io.renderers.default are used. - validate: bool (default True) + validate : bool (default True) True if the figure should be validated before being shown, False otherwise. - width: int or float + width : int or float An integer or float that determines the number of pixels wide the plot is. The default is set in plotly.js. - height: int or float + height : int or float An integer or float specifying the height of the plot in pixels. The default is set in plotly.js. - config: dict + config : dict A dict of parameters to configure the figure. The defaults are set in plotly.js. @@ -3425,19 +3427,19 @@ def to_json(self, *args, **kwargs): Parameters ---------- - validate: bool (default True) + validate : bool (default True) True if the figure should be validated before being converted to JSON, False otherwise. - pretty: bool (default False) + pretty : bool (default False) True if JSON representation should be pretty-printed, False if representation should be as compact as possible. - remove_uids: bool (default True) + remove_uids : bool (default True) True if trace UIDs should be omitted from the JSON representation - engine: str (default None) - The JSON encoding engine to use. One of: + engine : str (default None) + The JSON encoding engine to use. One of:\n - "json" for an encoder based on the built-in Python json module - "orjson" for a fast encoder the requires the orjson package If not specified, the default encoder is set to the current value of @@ -3462,13 +3464,10 @@ def full_figure_for_development(self, warn=True, as_dict=False): Parameters ---------- - fig: - Figure object or dict representing a figure - - warn: bool + warn : bool If False, suppress warnings about not using this in production. - as_dict: bool + as_dict : bool If True, output is a dict with some keys that go.Figure can't parse. If False, output is a go.Figure with unparseable keys skipped. @@ -3488,19 +3487,19 @@ def write_json(self, *args, **kwargs): Parameters ---------- - file: str or writeable + file : str or writeable A string representing a local file path or a writeable object (e.g. an open file descriptor) - pretty: bool (default False) + pretty : bool (default False) True if JSON representation should be pretty-printed, False if representation should be as compact as possible. - remove_uids: bool (default True) + remove_uids : bool (default True) True if trace UIDs should be omitted from the JSON representation - engine: str (default None) - The JSON encoding engine to use. One of: + engine : str (default None) + The JSON encoding engine to use. One of:\n - "json" for an encoder based on the built-in Python json module - "orjson" for a fast encoder the requires the orjson package If not specified, the default encoder is set to the current value of @@ -3520,13 +3519,13 @@ def to_html(self, *args, **kwargs): Parameters ---------- - config: dict or None (default None) + config : dict or None (default None) Plotly.js figure config options - auto_play: bool (default=True) + auto_play : bool (default=True) Whether to automatically start the animation sequence on page load if the figure contains frames. Has no effect if the figure does not contain frames. - include_plotlyjs: bool or string (default True) + include_plotlyjs : bool or string (default True) Specifies how the plotly.js library is included/loaded in the output div string. @@ -3552,7 +3551,7 @@ def to_html(self, *args, **kwargs): useful when the resulting div string will be placed inside an HTML document that already loads plotly.js. This option is not advised when full_html=True as it will result in a non-functional html file. - include_mathjax: bool or string (default False) + include_mathjax : bool or string (default False) Specifies how the MathJax.js library is included in the output html div string. MathJax is required in order to display labels with LaTeX typesetting. @@ -3568,31 +3567,31 @@ def to_html(self, *args, **kwargs): If a string that ends in '.js', a script tag is included that references the specified path. This approach can be used to point the resulting HTML div string to an alternative CDN. - post_script: str or list or None (default None) + post_script : str or list or None (default None) JavaScript snippet(s) to be included in the resulting div just after plot creation. The string(s) may include '{plot_id}' placeholders that will then be replaced by the `id` of the div element that the plotly.js figure is associated with. One application for this script is to install custom plotly.js event handlers. - full_html: bool (default True) + full_html : bool (default True) If True, produce a string containing a complete HTML document starting with an tag. If False, produce a string containing a single
element. - animation_opts: dict or None (default None) + animation_opts : dict or None (default None) dict of custom animation parameters to be passed to the function Plotly.animate in Plotly.js. See https://github.com/plotly/plotly.js/blob/master/src/plots/animation_attributes.js for available options. Has no effect if the figure does not contain frames, or auto_play is False. - default_width, default_height: number or str (default '100%') + default_width, default_height : number or str (default '100%') The default figure width/height to use if the provided figure does not specify its own layout.width/layout.height property. May be specified in pixels as an integer (e.g. 500), or as a css width style string (e.g. '500px', '100%'). - validate: bool (default True) + validate : bool (default True) True if the figure should be validated before being converted to JSON, False otherwise. - div_id: str (default None) + div_id : str (default None) If provided, this is the value of the id attribute of the div tag. If None, the id attribute is a UUID. @@ -3611,16 +3610,16 @@ def write_html(self, *args, **kwargs): Parameters ---------- - file: str or writeable + file : str or writeable A string representing a local file path or a writeable object (e.g. a pathlib.Path object or an open file descriptor) - config: dict or None (default None) + config : dict or None (default None) Plotly.js figure config options - auto_play: bool (default=True) + auto_play : bool (default=True) Whether to automatically start the animation sequence on page load if the figure contains frames. Has no effect if the figure does not contain frames. - include_plotlyjs: bool or string (default True) + include_plotlyjs : bool or string (default True) Specifies how the plotly.js library is included/loaded in the output div string. @@ -3656,7 +3655,7 @@ def write_html(self, *args, **kwargs): document that already loads plotly.js. This option is not advised when full_html=True as it will result in a non-functional html file. - include_mathjax: bool or string (default False) + include_mathjax : bool or string (default False) Specifies how the MathJax.js library is included in the output html div string. MathJax is required in order to display labels with LaTeX typesetting. @@ -3672,34 +3671,34 @@ def write_html(self, *args, **kwargs): If a string that ends in '.js', a script tag is included that references the specified path. This approach can be used to point the resulting HTML div string to an alternative CDN. - post_script: str or list or None (default None) + post_script : str or list or None (default None) JavaScript snippet(s) to be included in the resulting div just after plot creation. The string(s) may include '{plot_id}' placeholders that will then be replaced by the `id` of the div element that the plotly.js figure is associated with. One application for this script is to install custom plotly.js event handlers. - full_html: bool (default True) + full_html : bool (default True) If True, produce a string containing a complete HTML document starting with an tag. If False, produce a string containing a single
element. - animation_opts: dict or None (default None) + animation_opts : dict or None (default None) dict of custom animation parameters to be passed to the function Plotly.animate in Plotly.js. See https://github.com/plotly/plotly.js/blob/master/src/plots/animation_attributes.js for available options. Has no effect if the figure does not contain frames, or auto_play is False. - default_width, default_height: number or str (default '100%') + default_width, default_height : number or str (default '100%') The default figure width/height to use if the provided figure does not specify its own layout.width/layout.height property. May be specified in pixels as an integer (e.g. 500), or as a css width style string (e.g. '500px', '100%'). - validate: bool (default True) + validate : bool (default True) True if the figure should be validated before being converted to JSON, False otherwise. - auto_open: bool (default True) + auto_open : bool (default True) If True, open the saved file in a web browser after saving. This argument only applies if `full_html` is True. - div_id: str (default None) + div_id : str (default None) If provided, this is the value of the id attribute of the div tag. If None, the id attribute is a UUID. @@ -3717,54 +3716,54 @@ def to_image(self, *args, **kwargs): Parameters ---------- - format: str or None - The desired image format. One of - - 'png' - - 'jpg' or 'jpeg' - - 'webp' - - 'svg' - - 'pdf' - - 'eps' (deprecated) (Requires the poppler library to be installed) - - If not specified, will default to: - - `plotly.io.defaults.default_format` if engine is "kaleido" - - `plotly.io.orca.config.default_format` if engine is "orca" (deprecated) - - width: int or None + format : str or None + The desired image format. One of:\n + - 'png' + - 'jpg' or 'jpeg' + - 'webp' + - 'svg' + - 'pdf' + - 'eps' (deprecated) (Requires the poppler library to be installed) + + If not specified, will default to:\n + - `plotly.io.defaults.default_format` if engine is "kaleido" + - `plotly.io.orca.config.default_format` if engine is "orca" (deprecated) + + width : int or None The width of the exported image in layout pixels. If the `scale` property is 1.0, this will also be the width of the exported image in physical pixels. - If not specified, will default to: - - `plotly.io.defaults.default_width` if engine is "kaleido" - - `plotly.io.orca.config.default_width` if engine is "orca" (deprecated) + If not specified, will default to:\n + - `plotly.io.defaults.default_width` if engine is "kaleido" + - `plotly.io.orca.config.default_width` if engine is "orca" (deprecated) - height: int or None + height : int or None The height of the exported image in layout pixels. If the `scale` property is 1.0, this will also be the height of the exported image in physical pixels. - If not specified, will default to: - - `plotly.io.defaults.default_height` if engine is "kaleido" - - `plotly.io.orca.config.default_height` if engine is "orca" (deprecated) + If not specified, will default to:\n + - `plotly.io.defaults.default_height` if engine is "kaleido" + - `plotly.io.orca.config.default_height` if engine is "orca" (deprecated) - scale: int or float or None + scale : int or float or None The scale factor to use when exporting the figure. A scale factor larger than 1.0 will increase the image resolution with respect to the figure's layout pixel dimensions. Whereas as scale factor of less than 1.0 will decrease the image resolution. - If not specified, will default to: - - `plotly.io.defaults.default_scale` if engine is "kaliedo" - - `plotly.io.orca.config.default_scale` if engine is "orca" (deprecated) + If not specified, will default to:\n + - `plotly.io.defaults.default_scale` if engine is "kaliedo" + - `plotly.io.orca.config.default_scale` if engine is "orca" (deprecated) - validate: bool + validate : bool True if the figure should be validated before being converted to an image, False otherwise. - engine (deprecated): str + engine (deprecated) : str Image export engine to use. This parameter is deprecated and Orca engine support will be - dropped in the next major Plotly version. Until then, the following values are supported: + dropped in the next major Plotly version. Until then, the following values are supported:\n - "kaleido": Use Kaleido for image export - "orca": Use Orca for image export - "auto" (default): Use Kaleido if installed, otherwise use Orca @@ -3807,60 +3806,60 @@ def write_image(self, *args, **kwargs): Parameters ---------- - file: str or writeable + file : str or writeable A string representing a local file path or a writeable object (e.g. a pathlib.Path object or an open file descriptor) - format: str or None - The desired image format. One of - - 'png' - - 'jpg' or 'jpeg' - - 'webp' - - 'svg' - - 'pdf' - - 'eps' (deprecated) (Requires the poppler library to be installed) + format : str or None + The desired image format. One of:\n + - 'png' + - 'jpg' or 'jpeg' + - 'webp' + - 'svg' + - 'pdf' + - 'eps' (deprecated) (Requires the poppler library to be installed) If not specified and `file` is a string then this will default to the file extension. If not specified and `file` is not a string then this - will default to: - - `plotly.io.defaults.default_format` if engine is "kaleido" - - `plotly.io.orca.config.default_format` if engine is "orca" (deprecated) + will default to:\n + - `plotly.io.defaults.default_format` if engine is "kaleido" + - `plotly.io.orca.config.default_format` if engine is "orca" (deprecated) - width: int or None + width : int or None The width of the exported image in layout pixels. If the `scale` property is 1.0, this will also be the width of the exported image in physical pixels. - If not specified, will default to: - - `plotly.io.defaults.default_width` if engine is "kaleido" - - `plotly.io.orca.config.default_width` if engine is "orca" (deprecated) + If not specified, will default to:\n + - `plotly.io.defaults.default_width` if engine is "kaleido" + - `plotly.io.orca.config.default_width` if engine is "orca" (deprecated) - height: int or None + height : int or None The height of the exported image in layout pixels. If the `scale` property is 1.0, this will also be the height of the exported image in physical pixels. - If not specified, will default to: - - `plotly.io.defaults.default_height` if engine is "kaleido" - - `plotly.io.orca.config.default_height` if engine is "orca" (deprecated) + If not specified, will default to:\n + - `plotly.io.defaults.default_height` if engine is "kaleido" + - `plotly.io.orca.config.default_height` if engine is "orca" (deprecated) - scale: int or float or None + scale : int or float or None The scale factor to use when exporting the figure. A scale factor larger than 1.0 will increase the image resolution with respect to the figure's layout pixel dimensions. Whereas as scale factor of less than 1.0 will decrease the image resolution. - If not specified, will default to: - - `plotly.io.defaults.default_scale` if engine is "kaleido" - - `plotly.io.orca.config.default_scale` if engine is "orca" (deprecated) + If not specified, will default to:\n + - `plotly.io.defaults.default_scale` if engine is "kaleido" + - `plotly.io.orca.config.default_scale` if engine is "orca" (deprecated) - validate: bool + validate : bool True if the figure should be validated before being converted to an image, False otherwise. - engine (deprecated): str + engine (deprecated) : str Image export engine to use. This parameter is deprecated and Orca engine support will be - dropped in the next major Plotly version. Until then, the following values are supported: + dropped in the next major Plotly version. Until then, the following values are supported:\n - "kaleido": Use Kaleido for image export - "orca": Use Orca for image export - "auto" (default): Use Kaleido if installed, otherwise use Orca @@ -4735,7 +4734,7 @@ def __getitem__(self, prop): Parameters ---------- - prop : str|tuple + prop : str or tuple If prop is the name of a property of this object, then the property is returned. @@ -4830,7 +4829,7 @@ def __contains__(self, prop): Parameters ---------- - prop : str|tuple + prop : str or tuple If prop is a simple string (e.g. 'foo'), then return true of the object contains an element named 'foo' @@ -5177,7 +5176,7 @@ def update(self, dict1=None, overwrite=False, **kwargs): ---------- dict1 : dict Dictionary of properties to be updated - overwrite: bool + overwrite : bool If True, overwrite existing properties. If False, apply updates to existing properties recursively, preserving existing properties that are not specified in the update operation. @@ -5205,7 +5204,7 @@ def pop(self, key, *args): Parameters ---------- - key: str + key : str Property name dflt The default value to return if key was not found in object @@ -5577,12 +5576,11 @@ def on_change(self, callback, *args, **kwargs): is this object. Second through last parameters are the property / subpropery values referenced by args. args : list[str|tuple[int|str]] - List of property references where each reference may be one of: - - 1) A property name string (e.g. 'foo') for direct properties - 2) A property path string (e.g. 'foo[0].bar') for + List of property references where each reference may be one of:\n + - A property name string (e.g. 'foo') for direct properties + - A property path string (e.g. 'foo[0].bar') for subproperties - 3) A property path tuple (e.g. ('foo', 0, 'bar')) for + - A property path tuple (e.g. ('foo', 0, 'bar')) for subproperties append : bool @@ -5668,19 +5666,19 @@ def to_json(self, *args, **kwargs): Parameters ---------- - validate: bool (default True) + validate : bool (default True) True if the object should be validated before being converted to JSON, False otherwise. - pretty: bool (default False) + pretty : bool (default False) True if JSON representation should be pretty-printed, False if representation should be as compact as possible. - remove_uids: bool (default True) + remove_uids : bool (default True) True if trace UIDs should be omitted from the JSON representation - engine: str (default None) - The JSON encoding engine to use. One of: + engine : str (default None) + The JSON encoding engine to use. One of:\n - "json" for an encoder based on the built-in Python json module - "orjson" for a fast encoder the requires the orjson package If not specified, the default encoder is set to the current value of From df9cc3a8aa4c0e668f617c04fbb6809cd2a564bd Mon Sep 17 00:00:00 2001 From: Greg Wilson Date: Wed, 20 Aug 2025 13:56:20 -0400 Subject: [PATCH 15/18] feat: allow `--schema path` option to code generation Example usage: `uv run bin/generate_code.py --codedir /tmp/gen --schema /tmp/plot-schema.json` --- bin/codegen/__init__.py | 17 ++++++++++++----- bin/generate_code.py | 10 ++++++++-- bin/utils.py | 10 +++++----- 3 files changed, 25 insertions(+), 12 deletions(-) diff --git a/bin/codegen/__init__.py b/bin/codegen/__init__.py index 6e2368fa09..8d1e187ab5 100644 --- a/bin/codegen/__init__.py +++ b/bin/codegen/__init__.py @@ -1,5 +1,6 @@ import json import os +from pathlib import Path import shutil import sys @@ -27,6 +28,11 @@ ) +PROJECT_ROOT = Path(__file__).parent.parent.parent +PLOT_SCHEMA_RELATIVE = Path("resources") / "plot-schema.json" +PLOT_SCHEMA = PROJECT_ROOT / PLOT_SCHEMA_RELATIVE + + # Import notes # ------------ # Nothing from the plotly/ package should be imported during code @@ -94,7 +100,7 @@ def make_paths(codedir): return validators_dir, graph_objects_dir, graph_objs_path -def perform_codegen(codedir, noformat=False): +def perform_codegen(codedir, noformat=False, schema=PLOT_SCHEMA): """Generate code.""" # Get paths @@ -108,8 +114,7 @@ def perform_codegen(codedir, noformat=False): # Load plotly schema project_root = codedir.parent - plot_schema_path = project_root / "resources" / "plot-schema.json" - with open(plot_schema_path, "r") as f: + with open(schema, "r") as f: plotly_schema = json.load(f) # Preprocess Schema @@ -284,7 +289,9 @@ def __getattr__(import_name): init_extra = optional_figure_widget_import else: init_extra = "" - write_init_py(graph_objects_pkg, path_parts, rel_modules, rel_classes, init_extra) + write_init_py( + graph_objects_pkg, path_parts, rel_modules, rel_classes, init_extra + ) # Output graph_objs.py alias graph_objs_rel_classes = [ @@ -303,7 +310,7 @@ def __getattr__(import_name): ) graph_objs_path = codedir / "graph_objs" graph_objs_path.mkdir(parents=True, exist_ok=True) - graph_objs_path /= "__init__.py" + graph_objs_path /= "__init__.py" with open(graph_objs_path, "wt") as f: f.write("# ruff: noqa: F401\n") f.write(graph_objs_init_source) diff --git a/bin/generate_code.py b/bin/generate_code.py index 94fef3991c..0a5ccc3a2a 100644 --- a/bin/generate_code.py +++ b/bin/generate_code.py @@ -11,15 +11,21 @@ def main(): args = parse_args() codedir = utils.select_code_directory(args) - utils.perform_codegen(codedir, noformat=args.noformat) + utils.perform_codegen(codedir, noformat=args.noformat, schema=args.schema) def parse_args(): """Parse command-line arguments.""" parser = argparse.ArgumentParser() - parser.add_argument("--noformat", action="store_true", help="prevent reformatting") parser.add_argument("--codedir", type=Path, help="code directory") + parser.add_argument("--noformat", action="store_true", help="prevent reformatting") + parser.add_argument( + "--schema", + type=Path, + default=utils.PLOT_SCHEMA, + help=f"schema file (default {utils.PLOT_SCHEMA})", + ) return parser.parse_args() diff --git a/bin/utils.py b/bin/utils.py index 0dd39a4ddf..ae92449ab5 100644 --- a/bin/utils.py +++ b/bin/utils.py @@ -3,7 +3,6 @@ import logging import json import os -from pathlib import Path import platform import requests import shutil @@ -11,14 +10,15 @@ import sys import time -from codegen import perform_codegen - +from codegen import ( + perform_codegen, + PROJECT_ROOT, + PLOT_SCHEMA, +) LOGGER = logging.getLogger(__name__) -PROJECT_ROOT = Path(__file__).parent.parent NODE_ROOT = PROJECT_ROOT / "js" NODE_MODULES = NODE_ROOT / "node_modules" -PLOT_SCHEMA = PROJECT_ROOT / "resources" / "plot-schema.json" WIDGET_TARGETS = [PROJECT_ROOT / "plotly" / "package_data" / "widgetbundle.js"] NPM_PATH = os.pathsep.join( [ From bdd049bc28cc954494d08a5b0609fe8c533cf5c1 Mon Sep 17 00:00:00 2001 From: daexs Date: Thu, 21 Aug 2025 17:27:19 -0400 Subject: [PATCH 16/18] Fixed code block and type annotation formatting. --- plotly/io/_renderers.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/plotly/io/_renderers.py b/plotly/io/_renderers.py index 9ddd1db5dd..cb855df936 100644 --- a/plotly/io/_renderers.py +++ b/plotly/io/_renderers.py @@ -147,13 +147,17 @@ def default(self): '+' characters. For example, to specify rendering compatible with the classic Jupyter Notebook, JupyterLab, and PDF export: + ```python >>> import plotly.io as pio >>> pio.renderers.default = 'notebook+jupyterlab+pdf' + ``` The names of available renderers may be retrieved with: + ```python >>> import plotly.io as pio >>> list(pio.renderers) + ``` Returns ------- @@ -373,27 +377,27 @@ def show(fig, renderer=None, validate=True, **kwargs): Parameters ---------- - fig: dict of Figure + fig : dict of Figure The Figure object or figure dict to display - renderer: str or None (default None) + renderer : str or None (default None) A string containing the names of one or more registered renderers (separated by '+' characters) or None. If None, then the default renderers specified in plotly.io.renderers.default are used. - validate: bool (default True) + validate : bool (default True) True if the figure should be validated before being shown, False otherwise. - width: int or float + width : int or float An integer or float that determines the number of pixels wide the plot is. The default is set in plotly.js. - height: int or float + height : int or float An integer or float specifying the height of the plot in pixels. The default is set in plotly.js. - config: dict + config : dict A dict of parameters to configure the figure. The defaults are set in plotly.js. From cbd983ded43a5157ede145473b2ba1efe062f39c Mon Sep 17 00:00:00 2001 From: daexs Date: Thu, 21 Aug 2025 17:34:21 -0400 Subject: [PATCH 17/18] Minor code cleanup --- plotly/io/_renderers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plotly/io/_renderers.py b/plotly/io/_renderers.py index cb855df936..dd103f047b 100644 --- a/plotly/io/_renderers.py +++ b/plotly/io/_renderers.py @@ -147,14 +147,14 @@ def default(self): '+' characters. For example, to specify rendering compatible with the classic Jupyter Notebook, JupyterLab, and PDF export: - ```python + ``` >>> import plotly.io as pio >>> pio.renderers.default = 'notebook+jupyterlab+pdf' ``` The names of available renderers may be retrieved with: - ```python + ``` >>> import plotly.io as pio >>> list(pio.renderers) ``` From 95ea818e7cb4fe514806fc14be3db03fb544c80e Mon Sep 17 00:00:00 2001 From: daexs Date: Fri, 22 Aug 2025 10:55:46 -0400 Subject: [PATCH 18/18] Fixed example parsing error --- plotly/figure_factory/_ternary_contour.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plotly/figure_factory/_ternary_contour.py b/plotly/figure_factory/_ternary_contour.py index 0475c5a96a..85f33ba01e 100644 --- a/plotly/figure_factory/_ternary_contour.py +++ b/plotly/figure_factory/_ternary_contour.py @@ -563,8 +563,7 @@ def create_ternary_contour( superimposed on contours, using the same colorscale. Examples - ======== - + -------- Example 1: ternary contour plot with filled contours >>> import plotly.figure_factory as ff